blob: a0a0c2d9cb66e4fe6c5e99923e161864db6e9740 [file] [log] [blame]
Damien Miller5ff30c62013-10-30 22:21:50 +11001/* $OpenBSD: session.c,v 1.268 2013/10/29 09:48:02 djm 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 Miller22a29882010-05-10 11:53:54 +100050#include <fcntl.h>
Damien Miller427a1d52006-07-10 20:20:33 +100051#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110052#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110053#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110054#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100055#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110056#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100057#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100061#include <unistd.h>
Damien Millerb38eff82000-04-01 11:09:21 +100062
Damien Millerb84886b2008-05-19 15:05:07 +100063#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100064#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100065#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000066#include "ssh1.h"
67#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000068#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100069#include "packet.h"
70#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100071#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100072#include "uidswap.h"
73#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000074#include "channels.h"
Damien Millerd7834352006-08-05 12:39:39 +100075#include "key.h"
76#include "cipher.h"
77#ifdef GSSAPI
78#include "ssh-gss.h"
79#endif
80#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100081#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100082#include "auth-options.h"
Damien Miller85b45e02013-07-20 13:21:52 +100083#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "pathnames.h"
85#include "log.h"
86#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000087#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "serverloop.h"
89#include "canohost.h"
Damien Millerd8cb1f12008-02-10 22:40:12 +110090#include "misc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000091#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100092#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000093#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110094#include "sftp.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100095
Darren Tucker3c78c5e2004-01-23 22:03:10 +110096#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110097#include <kafs.h>
98#endif
99
Damien Miller14684a12011-05-20 11:23:07 +1000100#ifdef WITH_SELINUX
101#include <selinux/selinux.h>
102#endif
103
Damien Millerad793d52008-11-03 19:17:57 +1100104#define IS_INTERNAL_SFTP(c) \
105 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
106 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
107 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
108 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
109
Damien Millerb38eff82000-04-01 11:09:21 +1000110/* func */
111
112Session *session_new(void);
Damien Miller8853ca52010-06-26 10:00:14 +1000113void session_set_fds(Session *, int, int, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000114void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000115void session_proctitle(Session *);
116int session_setup_x11fwd(Session *);
Damien Miller7207f642008-05-19 15:34:50 +1000117int do_exec_pty(Session *, const char *);
118int do_exec_no_pty(Session *, const char *);
119int do_exec(Session *, const char *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000120void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000121#ifdef LOGIN_NEEDS_UTMPX
122static void do_pre_login(Session *s);
123#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000124void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000125void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000126int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000127
Ben Lindstrombba81212001-06-25 05:01:22 +0000128static void do_authenticated1(Authctxt *);
129static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000130
Ben Lindstrombba81212001-06-25 05:01:22 +0000131static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000132
Damien Millerb38eff82000-04-01 11:09:21 +1000133/* import */
134extern ServerOptions options;
135extern char *__progname;
136extern int log_stderr;
137extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000138extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000139extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000140extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000141extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000142
Damien Miller7b28dc52000-09-05 13:34:53 +1100143/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000144const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100145
Damien Millerb38eff82000-04-01 11:09:21 +1000146/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000147static int sessions_first_unused = -1;
148static int sessions_nalloc = 0;
149static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100150
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100151#define SUBSYSTEM_NONE 0
152#define SUBSYSTEM_EXT 1
153#define SUBSYSTEM_INT_SFTP 2
154#define SUBSYSTEM_INT_SFTP_ERROR 3
Damien Millerdfc24252008-02-10 22:29:40 +1100155
Damien Millerad833b32000-08-23 10:46:23 +1000156#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000157login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000158#endif
159
Darren Tucker3e33cec2003-10-02 16:12:36 +1000160static int is_child = 0;
161
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000162/* Name and directory of socket for authentication agent forwarding. */
163static char *auth_sock_name = NULL;
164static char *auth_sock_dir = NULL;
165
166/* removes the agent forwarding socket */
167
168static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000169auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000170{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000171 if (auth_sock_name != NULL) {
172 temporarily_use_uid(pw);
173 unlink(auth_sock_name);
174 rmdir(auth_sock_dir);
175 auth_sock_name = NULL;
176 restore_uid();
177 }
178}
179
180static int
181auth_input_request_forwarding(struct passwd * pw)
182{
183 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000184 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000185 struct sockaddr_un sunaddr;
186
187 if (auth_sock_name != NULL) {
188 error("authentication forwarding requested twice.");
189 return 0;
190 }
191
192 /* Temporarily drop privileged uid for mkdir/bind. */
193 temporarily_use_uid(pw);
194
195 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000196 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197
198 /* Create private directory for socket */
199 if (mkdtemp(auth_sock_dir) == NULL) {
200 packet_send_debug("Agent forwarding disabled: "
201 "mkdtemp() failed: %.100s", strerror(errno));
202 restore_uid();
Darren Tuckera627d422013-06-02 07:31:17 +1000203 free(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000205 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000206 }
Damien Miller7207f642008-05-19 15:34:50 +1000207
208 xasprintf(&auth_sock_name, "%s/agent.%ld",
209 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000210
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000211 /* Create the socket. */
212 sock = socket(AF_UNIX, SOCK_STREAM, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000213 if (sock < 0) {
214 error("socket: %.100s", strerror(errno));
215 restore_uid();
216 goto authsock_err;
217 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000218
219 /* Bind it to the name. */
220 memset(&sunaddr, 0, sizeof(sunaddr));
221 sunaddr.sun_family = AF_UNIX;
222 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
223
Damien Miller7207f642008-05-19 15:34:50 +1000224 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
225 error("bind: %.100s", strerror(errno));
226 restore_uid();
227 goto authsock_err;
228 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000229
230 /* Restore the privileged uid. */
231 restore_uid();
232
233 /* Start listening on the socket. */
Damien Miller7207f642008-05-19 15:34:50 +1000234 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
235 error("listen: %.100s", strerror(errno));
236 goto authsock_err;
237 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000238
239 /* Allocate a channel for the authentication agent socket. */
240 nc = channel_new("auth socket",
241 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
242 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000243 0, "auth socket", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100244 nc->path = xstrdup(auth_sock_name);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000245 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000246
247 authsock_err:
Darren Tuckera627d422013-06-02 07:31:17 +1000248 free(auth_sock_name);
Damien Miller7207f642008-05-19 15:34:50 +1000249 if (auth_sock_dir != NULL) {
250 rmdir(auth_sock_dir);
Darren Tuckera627d422013-06-02 07:31:17 +1000251 free(auth_sock_dir);
Damien Miller7207f642008-05-19 15:34:50 +1000252 }
253 if (sock != -1)
254 close(sock);
255 auth_sock_name = NULL;
256 auth_sock_dir = NULL;
257 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000258}
259
Darren Tucker1921ed92004-02-10 13:23:28 +1100260static void
261display_loginmsg(void)
262{
Damien Miller46d38de2005-07-17 17:02:09 +1000263 if (buffer_len(&loginmsg) > 0) {
264 buffer_append(&loginmsg, "\0", 1);
265 printf("%s", (char *)buffer_ptr(&loginmsg));
266 buffer_clear(&loginmsg);
267 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100268}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000269
Ben Lindstromb31783d2001-03-22 02:02:12 +0000270void
271do_authenticated(Authctxt *authctxt)
272{
Damien Miller97f39ae2003-02-24 11:57:01 +1100273 setproctitle("%s", authctxt->pw->pw_name);
274
Ben Lindstromb31783d2001-03-22 02:02:12 +0000275 /* setup the channel layer */
Damien Milleraa5b3f82012-12-03 09:50:54 +1100276 if (no_port_forwarding_flag ||
277 (options.allow_tcp_forwarding & FORWARD_LOCAL) == 0)
278 channel_disable_adm_local_opens();
279 else
Ben Lindstromb31783d2001-03-22 02:02:12 +0000280 channel_permit_all_opens();
281
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100282 auth_debug_send();
283
Ben Lindstromb31783d2001-03-22 02:02:12 +0000284 if (compat20)
285 do_authenticated2(authctxt);
286 else
287 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000288
Darren Tucker3e33cec2003-10-02 16:12:36 +1000289 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000290}
291
Damien Millerb38eff82000-04-01 11:09:21 +1000292/*
Damien Millerb38eff82000-04-01 11:09:21 +1000293 * Prepares for an interactive session. This is called after the user has
294 * been successfully authenticated. During this message exchange, pseudo
295 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
296 * are requested, etc.
297 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000299do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000300{
301 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000302 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100303 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000304 int enable_compression_after_reply = 0;
305 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000306
307 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100308 if (s == NULL) {
309 error("no more sessions");
310 return;
311 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000312 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000313 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000314
Damien Millerb38eff82000-04-01 11:09:21 +1000315 /*
316 * We stay in this loop until the client requests to execute a shell
317 * or a command.
318 */
319 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000320 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000321
322 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100323 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000324
325 /* Process the packet. */
326 switch (type) {
327 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000328 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100329 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000330 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000331 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100332 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000333 break;
334 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000335 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000336 debug2("compression disabled");
337 break;
338 }
Damien Millerb38eff82000-04-01 11:09:21 +1000339 /* Enable compression after we have responded with SUCCESS. */
340 enable_compression_after_reply = 1;
341 success = 1;
342 break;
343
344 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000345 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000346 break;
347
348 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000349 s->auth_proto = packet_get_string(&proto_len);
350 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000351
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000352 screen_flag = packet_get_protocol_flags() &
353 SSH_PROTOFLAG_SCREEN_NUMBER;
354 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
355
356 if (packet_remaining() == 4) {
357 if (!screen_flag)
358 debug2("Buggy client: "
359 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000360 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000361 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000362 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000363 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100364 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000365 success = session_setup_x11fwd(s);
366 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000367 free(s->auth_proto);
368 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000369 s->auth_proto = NULL;
370 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000371 }
Damien Millerb38eff82000-04-01 11:09:21 +1000372 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000373
374 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000375 if (!options.allow_agent_forwarding ||
376 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000377 debug("Authentication agent forwarding not permitted for this authentication.");
378 break;
379 }
380 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000381 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000382 break;
383
384 case SSH_CMSG_PORT_FORWARD_REQUEST:
385 if (no_port_forwarding_flag) {
386 debug("Port forwarding not permitted for this authentication.");
387 break;
388 }
Damien Milleraa5b3f82012-12-03 09:50:54 +1100389 if (!(options.allow_tcp_forwarding & FORWARD_REMOTE)) {
Damien Miller50a41ed2000-10-16 12:14:42 +1100390 debug("Port forwarding not permitted.");
391 break;
392 }
Damien Millerb38eff82000-04-01 11:09:21 +1000393 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000394 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
395 options.gateway_ports) < 0) {
396 debug("Port forwarding failed.");
397 break;
398 }
Damien Millerb38eff82000-04-01 11:09:21 +1000399 success = 1;
400 break;
401
402 case SSH_CMSG_MAX_PACKET_SIZE:
403 if (packet_set_maxsize(packet_get_int()) > 0)
404 success = 1;
405 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100406
Damien Millerb38eff82000-04-01 11:09:21 +1000407 case SSH_CMSG_EXEC_SHELL:
408 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000409 if (type == SSH_CMSG_EXEC_CMD) {
410 command = packet_get_string(&dlen);
411 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000412 if (do_exec(s, command) != 0)
413 packet_disconnect(
414 "command execution failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000415 free(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000416 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000417 if (do_exec(s, NULL) != 0)
418 packet_disconnect(
419 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000420 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100421 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000422 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000423 return;
424
425 default:
426 /*
427 * Any unknown messages in this phase are ignored,
428 * and a failure message is returned.
429 */
Damien Miller996acd22003-04-09 20:59:48 +1000430 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000431 }
432 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
433 packet_send();
434 packet_write_wait();
435
436 /* Enable compression now that we have replied if appropriate. */
437 if (enable_compression_after_reply) {
438 enable_compression_after_reply = 0;
439 packet_start_compression(compression_level);
440 }
441 }
442}
443
Damien Miller7207f642008-05-19 15:34:50 +1000444#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000445/*
446 * This is called to fork and execute a command when we have no tty. This
447 * will call do_child from the child, and server_loop from the parent after
448 * setting up file descriptors and such.
449 */
Damien Miller7207f642008-05-19 15:34:50 +1000450int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000451do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000452{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000453 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000454
455#ifdef USE_PIPES
456 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000457
Damien Miller22a29882010-05-10 11:53:54 +1000458 if (s == NULL)
459 fatal("do_exec_no_pty: no session");
460
Damien Millerb38eff82000-04-01 11:09:21 +1000461 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000462 if (pipe(pin) < 0) {
463 error("%s: pipe in: %.100s", __func__, strerror(errno));
464 return -1;
465 }
466 if (pipe(pout) < 0) {
467 error("%s: pipe out: %.100s", __func__, strerror(errno));
468 close(pin[0]);
469 close(pin[1]);
470 return -1;
471 }
Damien Miller8853ca52010-06-26 10:00:14 +1000472 if (pipe(perr) < 0) {
473 error("%s: pipe err: %.100s", __func__,
474 strerror(errno));
475 close(pin[0]);
476 close(pin[1]);
477 close(pout[0]);
478 close(pout[1]);
479 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000480 }
481#else
Damien Millerb38eff82000-04-01 11:09:21 +1000482 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000483
Damien Miller22a29882010-05-10 11:53:54 +1000484 if (s == NULL)
485 fatal("do_exec_no_pty: no session");
486
Damien Millerb38eff82000-04-01 11:09:21 +1000487 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000488 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
489 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
490 return -1;
491 }
Damien Miller8853ca52010-06-26 10:00:14 +1000492 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
493 error("%s: socketpair #2: %.100s", __func__,
494 strerror(errno));
495 close(inout[0]);
496 close(inout[1]);
497 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000498 }
499#endif
500
Damien Millere247cc42000-05-07 12:03:14 +1000501 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000502
Damien Millerb38eff82000-04-01 11:09:21 +1000503 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000504 switch ((pid = fork())) {
505 case -1:
506 error("%s: fork: %.100s", __func__, strerror(errno));
507#ifdef USE_PIPES
508 close(pin[0]);
509 close(pin[1]);
510 close(pout[0]);
511 close(pout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000512 close(perr[0]);
Damien Miller7207f642008-05-19 15:34:50 +1000513 close(perr[1]);
514#else
515 close(inout[0]);
516 close(inout[1]);
517 close(err[0]);
Damien Miller8853ca52010-06-26 10:00:14 +1000518 close(err[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000519#endif
520 return -1;
521 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000522 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000523
Damien Millerb38eff82000-04-01 11:09:21 +1000524 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000525 log_init(__progname, options.log_level,
526 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000527
528 /*
529 * Create a new session and process group since the 4.4BSD
530 * setlogin() affects the entire process group.
531 */
532 if (setsid() < 0)
533 error("setsid failed: %.100s", strerror(errno));
534
535#ifdef USE_PIPES
536 /*
537 * Redirect stdin. We close the parent side of the socket
538 * pair, and make the child side the standard input.
539 */
540 close(pin[1]);
541 if (dup2(pin[0], 0) < 0)
542 perror("dup2 stdin");
543 close(pin[0]);
544
545 /* Redirect stdout. */
546 close(pout[0]);
547 if (dup2(pout[1], 1) < 0)
548 perror("dup2 stdout");
549 close(pout[1]);
550
551 /* Redirect stderr. */
Damien Miller8853ca52010-06-26 10:00:14 +1000552 close(perr[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000553 if (dup2(perr[1], 2) < 0)
554 perror("dup2 stderr");
555 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000556#else
Damien Millerb38eff82000-04-01 11:09:21 +1000557 /*
558 * Redirect stdin, stdout, and stderr. Stdin and stdout will
559 * use the same socket, as some programs (particularly rdist)
560 * seem to depend on it.
561 */
562 close(inout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000563 close(err[1]);
Damien Millerb38eff82000-04-01 11:09:21 +1000564 if (dup2(inout[0], 0) < 0) /* stdin */
565 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000566 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000567 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000568 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000569 if (dup2(err[0], 2) < 0) /* stderr */
570 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000571 close(err[0]);
572#endif
573
Damien Millerb38eff82000-04-01 11:09:21 +1000574
Tim Rice81ed5182002-09-25 17:38:46 -0700575#ifdef _UNICOS
576 cray_init_job(s->pw); /* set up cray jid and tmpdir */
577#endif
578
Damien Millerb38eff82000-04-01 11:09:21 +1000579 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000580 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000581 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000582 default:
583 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000584 }
Damien Miller7207f642008-05-19 15:34:50 +1000585
Tim Rice81ed5182002-09-25 17:38:46 -0700586#ifdef _UNICOS
587 signal(WJSIGNAL, cray_job_termination_handler);
588#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100589#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100590 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100591#endif
Damien Miller7207f642008-05-19 15:34:50 +1000592
Damien Millerb38eff82000-04-01 11:09:21 +1000593 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000594 /* Set interactive/non-interactive mode. */
Damien Miller0dac6fb2010-11-20 15:19:38 +1100595 packet_set_interactive(s->display != NULL,
596 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller7207f642008-05-19 15:34:50 +1000597
598 /*
599 * Clear loginmsg, since it's the child's responsibility to display
600 * it to the user, otherwise multiple sessions may accumulate
601 * multiple copies of the login messages.
602 */
603 buffer_clear(&loginmsg);
604
Damien Millerb38eff82000-04-01 11:09:21 +1000605#ifdef USE_PIPES
606 /* We are the parent. Close the child sides of the pipes. */
607 close(pin[0]);
608 close(pout[1]);
609 close(perr[1]);
610
Damien Millerefb4afe2000-04-12 18:45:05 +1000611 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000612 session_set_fds(s, pin[1], pout[0], perr[0],
613 s->is_subsystem, 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000614 } else {
615 /* Enter the interactive session. */
616 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000617 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000618 }
Damien Miller7207f642008-05-19 15:34:50 +1000619#else
Damien Millerb38eff82000-04-01 11:09:21 +1000620 /* We are the parent. Close the child sides of the socket pairs. */
621 close(inout[0]);
622 close(err[0]);
623
624 /*
625 * Enter the interactive session. Note: server_loop must be able to
626 * handle the case that fdin and fdout are the same.
627 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000628 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000629 session_set_fds(s, inout[1], inout[1], err[1],
630 s->is_subsystem, 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000631 } else {
632 server_loop(pid, inout[1], inout[1], err[1]);
633 /* server_loop has closed inout[1] and err[1]. */
634 }
Damien Miller7207f642008-05-19 15:34:50 +1000635#endif
636 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000637}
638
639/*
640 * This is called to fork and execute a command when we have a tty. This
641 * will call do_child from the child, and server_loop from the parent after
642 * setting up file descriptors, controlling tty, updating wtmp, utmp,
643 * lastlog, and other such operations.
644 */
Damien Miller7207f642008-05-19 15:34:50 +1000645int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000646do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000647{
Damien Millerb38eff82000-04-01 11:09:21 +1000648 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000649 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000650
651 if (s == NULL)
652 fatal("do_exec_pty: no session");
653 ptyfd = s->ptyfd;
654 ttyfd = s->ttyfd;
655
Damien Miller7207f642008-05-19 15:34:50 +1000656 /*
657 * Create another descriptor of the pty master side for use as the
658 * standard input. We could use the original descriptor, but this
659 * simplifies code in server_loop. The descriptor is bidirectional.
660 * Do this before forking (and cleanup in the child) so as to
661 * detect and gracefully fail out-of-fd conditions.
662 */
663 if ((fdout = dup(ptyfd)) < 0) {
664 error("%s: dup #1: %s", __func__, strerror(errno));
665 close(ttyfd);
666 close(ptyfd);
667 return -1;
668 }
669 /* we keep a reference to the pty master */
670 if ((ptymaster = dup(ptyfd)) < 0) {
671 error("%s: dup #2: %s", __func__, strerror(errno));
672 close(ttyfd);
673 close(ptyfd);
674 close(fdout);
675 return -1;
676 }
677
Damien Millerb38eff82000-04-01 11:09:21 +1000678 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000679 switch ((pid = fork())) {
680 case -1:
681 error("%s: fork: %.100s", __func__, strerror(errno));
682 close(fdout);
683 close(ptymaster);
684 close(ttyfd);
685 close(ptyfd);
686 return -1;
687 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000688 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000689
Damien Miller7207f642008-05-19 15:34:50 +1000690 close(fdout);
691 close(ptymaster);
692
Damien Miller942da032000-08-18 13:59:06 +1000693 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000694 log_init(__progname, options.log_level,
695 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000696 /* Close the master side of the pseudo tty. */
697 close(ptyfd);
698
699 /* Make the pseudo tty our controlling tty. */
700 pty_make_controlling_tty(&ttyfd, s->tty);
701
Damien Miller9c751422001-10-10 15:02:46 +1000702 /* Redirect stdin/stdout/stderr from the pseudo tty. */
703 if (dup2(ttyfd, 0) < 0)
704 error("dup2 stdin: %s", strerror(errno));
705 if (dup2(ttyfd, 1) < 0)
706 error("dup2 stdout: %s", strerror(errno));
707 if (dup2(ttyfd, 2) < 0)
708 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000709
710 /* Close the extra descriptor for the pseudo tty. */
711 close(ttyfd);
712
Damien Miller942da032000-08-18 13:59:06 +1000713 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000714#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700715 if (!(options.use_login && command == NULL)) {
716#ifdef _UNICOS
717 cray_init_job(s->pw); /* set up cray jid and tmpdir */
718#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100719 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700720 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000721# ifdef LOGIN_NEEDS_UTMPX
722 else
723 do_pre_login(s);
724# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000725#endif
Damien Miller7207f642008-05-19 15:34:50 +1000726 /*
727 * Do common processing for the child, such as execing
728 * the command.
729 */
Darren Tucker43e7a352009-06-21 19:50:08 +1000730 do_child(s, command);
731 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000732 default:
733 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000734 }
Damien Miller7207f642008-05-19 15:34:50 +1000735
Tim Rice81ed5182002-09-25 17:38:46 -0700736#ifdef _UNICOS
737 signal(WJSIGNAL, cray_job_termination_handler);
738#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100739#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100740 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100741#endif
Damien Miller7207f642008-05-19 15:34:50 +1000742
Damien Millerb38eff82000-04-01 11:09:21 +1000743 s->pid = pid;
744
745 /* Parent. Close the slave side of the pseudo tty. */
746 close(ttyfd);
747
Damien Millerb38eff82000-04-01 11:09:21 +1000748 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000749 s->ptymaster = ptymaster;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100750 packet_set_interactive(1,
751 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Millerefb4afe2000-04-12 18:45:05 +1000752 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000753 session_set_fds(s, ptyfd, fdout, -1, 1, 1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000754 } else {
755 server_loop(pid, ptyfd, fdout, -1);
756 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000757 }
Damien Miller7207f642008-05-19 15:34:50 +1000758 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000759}
760
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000761#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000762static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000763do_pre_login(Session *s)
764{
765 socklen_t fromlen;
766 struct sockaddr_storage from;
767 pid_t pid = getpid();
768
769 /*
770 * Get IP address of client. If the connection is not a socket, let
771 * the address be 0.0.0.0.
772 */
773 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000774 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000775 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000776 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100777 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000778 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000779 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000780 }
781 }
782
783 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000784 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000785 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000786}
787#endif
788
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000789/*
790 * This is called to fork and execute a command. If another command is
791 * to be forced, execute that instead.
792 */
Damien Miller7207f642008-05-19 15:34:50 +1000793int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000794do_exec(Session *s, const char *command)
795{
Damien Miller7207f642008-05-19 15:34:50 +1000796 int ret;
Damien Miller71df7522013-10-15 12:12:02 +1100797 const char *forced = NULL;
798 char session_type[1024], *tty = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000799
Damien Millere2754432006-07-24 14:06:47 +1000800 if (options.adm_forced_command) {
801 original_command = command;
802 command = options.adm_forced_command;
Damien Miller71df7522013-10-15 12:12:02 +1100803 forced = "(config)";
Damien Millere2754432006-07-24 14:06:47 +1000804 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000805 original_command = command;
806 command = forced_command;
Damien Miller71df7522013-10-15 12:12:02 +1100807 forced = "(key-option)";
808 }
809 if (forced != NULL) {
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100810 if (IS_INTERNAL_SFTP(command)) {
811 s->is_subsystem = s->is_subsystem ?
812 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
813 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100814 s->is_subsystem = SUBSYSTEM_EXT;
Damien Miller71df7522013-10-15 12:12:02 +1100815 snprintf(session_type, sizeof(session_type),
816 "forced-command %s '%.900s'", forced, command);
817 } else if (s->is_subsystem) {
818 snprintf(session_type, sizeof(session_type),
819 "subsystem '%.900s'", s->subsys);
820 } else if (command == NULL) {
821 snprintf(session_type, sizeof(session_type), "shell");
822 } else {
823 /* NB. we don't log unforced commands to preserve privacy */
824 snprintf(session_type, sizeof(session_type), "command");
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000825 }
826
Damien Miller71df7522013-10-15 12:12:02 +1100827 if (s->ttyfd != -1) {
828 tty = s->tty;
829 if (strncmp(tty, "/dev/", 5) == 0)
830 tty += 5;
831 }
832
833 verbose("Starting session: %s%s%s for %s from %.200s port %d",
834 session_type,
835 tty == NULL ? "" : " on ",
836 tty == NULL ? "" : tty,
837 s->pw->pw_name,
838 get_remote_ipaddr(),
839 get_remote_port());
840
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100841#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100842 if (command != NULL)
843 PRIVSEP(audit_run_command(command));
844 else if (s->ttyfd == -1) {
845 char *shell = s->pw->pw_shell;
846
847 if (shell[0] == '\0') /* empty shell means /bin/sh */
848 shell =_PATH_BSHELL;
849 PRIVSEP(audit_run_command(shell));
850 }
851#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000852 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000853 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000854 else
Damien Miller7207f642008-05-19 15:34:50 +1000855 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000856
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000857 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000858
Darren Tucker09991742004-07-17 17:05:14 +1000859 /*
860 * Clear loginmsg: it's the child's responsibility to display
861 * it to the user, otherwise multiple sessions may accumulate
862 * multiple copies of the login messages.
863 */
864 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000865
866 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000867}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000868
Damien Miller942da032000-08-18 13:59:06 +1000869/* administrative, login(1)-like work */
870void
Damien Miller69b69aa2000-10-28 14:19:58 +1100871do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000872{
Damien Miller942da032000-08-18 13:59:06 +1000873 socklen_t fromlen;
874 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000875 struct passwd * pw = s->pw;
876 pid_t pid = getpid();
877
878 /*
879 * Get IP address of client. If the connection is not a socket, let
880 * the address be 0.0.0.0.
881 */
882 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000883 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000884 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000885 if (getpeername(packet_get_connection_in(),
Darren Tucker43e7a352009-06-21 19:50:08 +1000886 (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000887 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000888 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000889 }
890 }
891
892 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000893 if (!use_privsep)
894 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
895 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000896 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000897 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000898
Kevin Steves092f2ef2000-10-14 13:36:13 +0000899#ifdef USE_PAM
900 /*
901 * If password change is needed, do it now.
902 * This needs to occur before the ~/.hushlogin check.
903 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100904 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
905 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000906 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100907 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000908 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000909 }
910#endif
911
Damien Millercf205e82001-04-16 18:29:15 +1000912 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000913 return;
914
Darren Tucker1921ed92004-02-10 13:23:28 +1100915 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000916
Damien Millercf205e82001-04-16 18:29:15 +1000917 do_motd();
918}
919
920/*
921 * Display the message of the day.
922 */
923void
924do_motd(void)
925{
926 FILE *f;
927 char buf[256];
928
Damien Miller942da032000-08-18 13:59:06 +1000929 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000930#ifdef HAVE_LOGIN_CAP
931 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
932 "/etc/motd"), "r");
933#else
Damien Miller942da032000-08-18 13:59:06 +1000934 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000935#endif
Damien Miller942da032000-08-18 13:59:06 +1000936 if (f) {
937 while (fgets(buf, sizeof(buf), f))
938 fputs(buf, stdout);
939 fclose(f);
940 }
941 }
942}
943
Kevin Steves8f63caa2001-07-04 18:23:02 +0000944
945/*
946 * Check for quiet login, either .hushlogin or command given.
947 */
948int
949check_quietlogin(Session *s, const char *command)
950{
951 char buf[256];
952 struct passwd *pw = s->pw;
953 struct stat st;
954
955 /* Return 1 if .hushlogin exists or a command given. */
956 if (command != NULL)
957 return 1;
958 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
959#ifdef HAVE_LOGIN_CAP
960 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
961 return 1;
962#else
963 if (stat(buf, &st) >= 0)
964 return 1;
965#endif
966 return 0;
967}
968
Damien Millerb38eff82000-04-01 11:09:21 +1000969/*
970 * Sets the value of the given variable in the environment. If the variable
Darren Tucker63917bd2008-11-11 16:33:48 +1100971 * already exists, its value is overridden.
Damien Millerb38eff82000-04-01 11:09:21 +1000972 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000973void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000974child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100975 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000976{
Damien Millerb38eff82000-04-01 11:09:21 +1000977 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000978 u_int envsize;
979 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000980
981 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000982 * If we're passed an uninitialized list, allocate a single null
983 * entry before continuing.
984 */
985 if (*envp == NULL && *envsizep == 0) {
986 *envp = xmalloc(sizeof(char *));
987 *envp[0] = NULL;
988 *envsizep = 1;
989 }
990
991 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000992 * Find the slot where the value should be stored. If the variable
993 * already exists, we reuse the slot; otherwise we append a new slot
994 * at the end of the array, expanding if necessary.
995 */
996 env = *envp;
997 namelen = strlen(name);
998 for (i = 0; env[i]; i++)
999 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
1000 break;
1001 if (env[i]) {
1002 /* Reuse the slot. */
Darren Tuckera627d422013-06-02 07:31:17 +10001003 free(env[i]);
Damien Millerb38eff82000-04-01 11:09:21 +10001004 } else {
1005 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +10001006 envsize = *envsizep;
1007 if (i >= envsize - 1) {
1008 if (envsize >= 1000)
1009 fatal("child_set_env: too many env vars");
1010 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +11001011 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +10001012 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +10001013 }
1014 /* Need to set the NULL pointer at end of array beyond the new slot. */
1015 env[i + 1] = NULL;
1016 }
1017
1018 /* Allocate space and format the variable in the appropriate slot. */
1019 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
1020 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
1021}
1022
1023/*
1024 * Reads environment variables from the given file and adds/overrides them
1025 * into the environment. If the file does not exist, this does nothing.
1026 * Otherwise, it must consist of empty lines, comments (line starts with '#')
1027 * and assignments of the form name=value. No other forms are allowed.
1028 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001029static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001030read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001031 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +10001032{
1033 FILE *f;
1034 char buf[4096];
1035 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +10001036 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001037
1038 f = fopen(filename, "r");
1039 if (!f)
1040 return;
1041
1042 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001043 if (++lineno > 1000)
1044 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001045 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1046 ;
1047 if (!*cp || *cp == '#' || *cp == '\n')
1048 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001049
1050 cp[strcspn(cp, "\n")] = '\0';
1051
Damien Millerb38eff82000-04-01 11:09:21 +10001052 value = strchr(cp, '=');
1053 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001054 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1055 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001056 continue;
1057 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001058 /*
1059 * Replace the equals sign by nul, and advance value to
1060 * the value string.
1061 */
Damien Millerb38eff82000-04-01 11:09:21 +10001062 *value = '\0';
1063 value++;
1064 child_set_env(env, envsize, cp, value);
1065 }
1066 fclose(f);
1067}
1068
Darren Tuckere1a790d2003-09-16 11:52:19 +10001069#ifdef HAVE_ETC_DEFAULT_LOGIN
1070/*
1071 * Return named variable from specified environment, or NULL if not present.
1072 */
1073static char *
1074child_get_env(char **env, const char *name)
1075{
1076 int i;
1077 size_t len;
1078
1079 len = strlen(name);
1080 for (i=0; env[i] != NULL; i++)
1081 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1082 return(env[i] + len + 1);
1083 return NULL;
1084}
1085
1086/*
1087 * Read /etc/default/login.
1088 * We pick up the PATH (or SUPATH for root) and UMASK.
1089 */
1090static void
1091read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1092{
1093 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001094 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001095 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001096
1097 /*
1098 * We don't want to copy the whole file to the child's environment,
1099 * so we use a temporary environment and copy the variables we're
1100 * interested in.
1101 */
1102 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1103
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001104 if (tmpenv == NULL)
1105 return;
1106
Darren Tuckere1a790d2003-09-16 11:52:19 +10001107 if (uid == 0)
1108 var = child_get_env(tmpenv, "SUPATH");
1109 else
1110 var = child_get_env(tmpenv, "PATH");
1111 if (var != NULL)
1112 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001113
Darren Tuckere1a790d2003-09-16 11:52:19 +10001114 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1115 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001116 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001117
Darren Tuckere1a790d2003-09-16 11:52:19 +10001118 for (i = 0; tmpenv[i] != NULL; i++)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001119 free(tmpenv[i]);
1120 free(tmpenv);
Darren Tuckere1a790d2003-09-16 11:52:19 +10001121}
1122#endif /* HAVE_ETC_DEFAULT_LOGIN */
1123
Damien Miller7dff8692005-05-26 11:34:51 +10001124void
1125copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001126{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001127 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001128 int i;
1129
Damien Millerbb9ffc12002-01-08 10:59:32 +11001130 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001131 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001132
Damien Millerbb9ffc12002-01-08 10:59:32 +11001133 for(i = 0; source[i] != NULL; i++) {
1134 var_name = xstrdup(source[i]);
1135 if ((var_val = strstr(var_name, "=")) == NULL) {
Darren Tuckerf60845f2013-06-02 08:07:31 +10001136 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001137 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001138 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001139 *var_val++ = '\0';
1140
1141 debug3("Copy environment: %s=%s", var_name, var_val);
1142 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001143
Darren Tuckerf60845f2013-06-02 08:07:31 +10001144 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001145 }
1146}
Damien Millercb5e44a2000-09-29 12:12:36 +11001147
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001148static char **
1149do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001150{
Damien Millerb38eff82000-04-01 11:09:21 +10001151 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001152 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001153 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001154 struct passwd *pw = s->pw;
Darren Tucker9d86e5d2009-03-08 11:40:27 +11001155#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
Damien Millerad5ecbf2006-07-24 15:03:06 +10001156 char *path = NULL;
1157#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001158
Damien Millerb38eff82000-04-01 11:09:21 +10001159 /* Initialize the environment. */
1160 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001161 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001162 env[0] = NULL;
1163
Damien Millerbac2d8a2000-09-05 16:13:06 +11001164#ifdef HAVE_CYGWIN
1165 /*
1166 * The Windows environment contains some setting which are
1167 * important for a running system. They must not be dropped.
1168 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001169 {
1170 char **p;
1171
1172 p = fetch_windows_environment();
1173 copy_environment(p, &env, &envsize);
1174 free_windows_environment(p);
1175 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001176#endif
1177
Darren Tucker0efd1552003-08-26 11:49:55 +10001178#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001179 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001180 * the childs environment as they see fit
1181 */
1182 ssh_gssapi_do_child(&env, &envsize);
1183#endif
1184
Damien Millerb38eff82000-04-01 11:09:21 +10001185 if (!options.use_login) {
1186 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001187 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001188 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001189 s->env[i].val);
1190
Damien Millerb38eff82000-04-01 11:09:21 +10001191 child_set_env(&env, &envsize, "USER", pw->pw_name);
1192 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001193#ifdef _AIX
1194 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1195#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001196 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001197#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001198 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1199 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1200 else
1201 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001202#else /* HAVE_LOGIN_CAP */
1203# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001204 /*
1205 * There's no standard path on Windows. The path contains
1206 * important components pointing to the system directories,
1207 * needed for loading shared libraries. So the path better
1208 * remains intact here.
1209 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001210# ifdef HAVE_ETC_DEFAULT_LOGIN
1211 read_etc_default_login(&env, &envsize, pw->pw_uid);
1212 path = child_get_env(env, "PATH");
1213# endif /* HAVE_ETC_DEFAULT_LOGIN */
1214 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001215 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001216 s->pw->pw_uid == 0 ?
1217 SUPERUSER_PATH : _PATH_STDPATH);
1218 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001219# endif /* HAVE_CYGWIN */
1220#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001221
1222 snprintf(buf, sizeof buf, "%.200s/%.50s",
1223 _PATH_MAILDIR, pw->pw_name);
1224 child_set_env(&env, &envsize, "MAIL", buf);
1225
1226 /* Normal systems set SHELL by default. */
1227 child_set_env(&env, &envsize, "SHELL", shell);
1228 }
1229 if (getenv("TZ"))
1230 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1231
1232 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001233 if (!options.use_login) {
1234 while (custom_environment) {
1235 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001236 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001237
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001238 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001239 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001240 if (str[i] == '=') {
1241 str[i] = 0;
1242 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001243 }
1244 custom_environment = ce->next;
Darren Tuckera627d422013-06-02 07:31:17 +10001245 free(ce->s);
1246 free(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001247 }
Damien Millerb38eff82000-04-01 11:09:21 +10001248 }
1249
Damien Millerf37e2462002-09-19 11:47:55 +10001250 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001251 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001252 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001253 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1254
Damien Miller00111382003-03-10 11:21:17 +11001255 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001256 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001257 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
Darren Tuckera627d422013-06-02 07:31:17 +10001258 free(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001259 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1260
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001261 if (s->ttyfd != -1)
1262 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1263 if (s->term)
1264 child_set_env(&env, &envsize, "TERM", s->term);
1265 if (s->display)
1266 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001267 if (original_command)
1268 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1269 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001270
Tim Rice81ed5182002-09-25 17:38:46 -07001271#ifdef _UNICOS
1272 if (cray_tmpdir[0] != '\0')
1273 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1274#endif /* _UNICOS */
1275
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001276 /*
1277 * Since we clear KRB5CCNAME at startup, if it's set now then it
1278 * must have been set by a native authentication method (eg AIX or
1279 * SIA), so copy it to the child.
1280 */
1281 {
1282 char *cp;
1283
1284 if ((cp = getenv("KRB5CCNAME")) != NULL)
1285 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1286 }
1287
Damien Millerb38eff82000-04-01 11:09:21 +10001288#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001289 {
1290 char *cp;
1291
1292 if ((cp = getenv("AUTHSTATE")) != NULL)
1293 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001294 read_environment_file(&env, &envsize, "/etc/environment");
1295 }
Damien Millerb38eff82000-04-01 11:09:21 +10001296#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001297#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001298 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001299 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001300 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001301#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001302#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001303 /*
1304 * Pull in any environment variables that may have
1305 * been set by PAM.
1306 */
Damien Miller4e448a32003-05-14 15:11:48 +10001307 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001308 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001309
Damien Millerc756e9b2003-11-17 21:41:42 +11001310 p = fetch_pam_child_environment();
1311 copy_environment(p, &env, &envsize);
1312 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001313
Damien Millerc756e9b2003-11-17 21:41:42 +11001314 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001315 copy_environment(p, &env, &envsize);
1316 free_pam_environment(p);
1317 }
Damien Millerb38eff82000-04-01 11:09:21 +10001318#endif /* USE_PAM */
1319
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001320 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001321 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001322 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001323
1324 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001325 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001326 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001327 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001328 read_environment_file(&env, &envsize, buf);
1329 }
1330 if (debug_flag) {
1331 /* dump the environment */
1332 fprintf(stderr, "Environment:\n");
1333 for (i = 0; env[i]; i++)
1334 fprintf(stderr, " %.200s\n", env[i]);
1335 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001336 return env;
1337}
1338
1339/*
1340 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1341 * first in this order).
1342 */
1343static void
1344do_rc_files(Session *s, const char *shell)
1345{
1346 FILE *f = NULL;
1347 char cmd[1024];
1348 int do_xauth;
1349 struct stat st;
1350
1351 do_xauth =
1352 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1353
Damien Millera1b48cc2008-03-27 11:02:02 +11001354 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001355 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001356 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001357 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1358 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1359 if (debug_flag)
1360 fprintf(stderr, "Running %s\n", cmd);
1361 f = popen(cmd, "w");
1362 if (f) {
1363 if (do_xauth)
1364 fprintf(f, "%s %s\n", s->auth_proto,
1365 s->auth_data);
1366 pclose(f);
1367 } else
1368 fprintf(stderr, "Could not run %s\n",
1369 _PATH_SSH_USER_RC);
1370 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1371 if (debug_flag)
1372 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1373 _PATH_SSH_SYSTEM_RC);
1374 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1375 if (f) {
1376 if (do_xauth)
1377 fprintf(f, "%s %s\n", s->auth_proto,
1378 s->auth_data);
1379 pclose(f);
1380 } else
1381 fprintf(stderr, "Could not run %s\n",
1382 _PATH_SSH_SYSTEM_RC);
1383 } else if (do_xauth && options.xauth_location != NULL) {
1384 /* Add authority data to .Xauthority if appropriate. */
1385 if (debug_flag) {
1386 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001387 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001388 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001389 fprintf(stderr,
1390 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001391 options.xauth_location, s->auth_display,
1392 s->auth_proto, s->auth_data);
1393 }
1394 snprintf(cmd, sizeof cmd, "%s -q -",
1395 options.xauth_location);
1396 f = popen(cmd, "w");
1397 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001398 fprintf(f, "remove %s\n",
1399 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001400 fprintf(f, "add %s %s %s\n",
1401 s->auth_display, s->auth_proto,
1402 s->auth_data);
1403 pclose(f);
1404 } else {
1405 fprintf(stderr, "Could not run %s\n",
1406 cmd);
1407 }
1408 }
1409}
1410
1411static void
1412do_nologin(struct passwd *pw)
1413{
1414 FILE *f = NULL;
Darren Tucker09aa4c02010-01-12 19:51:48 +11001415 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1416 struct stat sb;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001417
1418#ifdef HAVE_LOGIN_CAP
Damien Miller29cd1882012-04-22 11:08:10 +10001419 if (login_getcapbool(lc, "ignorenologin", 0) || pw->pw_uid == 0)
Darren Tucker09aa4c02010-01-12 19:51:48 +11001420 return;
1421 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001422#else
Darren Tucker09aa4c02010-01-12 19:51:48 +11001423 if (pw->pw_uid == 0)
1424 return;
1425 nl = def_nl;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001426#endif
Darren Tucker09aa4c02010-01-12 19:51:48 +11001427 if (stat(nl, &sb) == -1) {
1428 if (nl != def_nl)
Darren Tuckera627d422013-06-02 07:31:17 +10001429 free(nl);
Darren Tucker09aa4c02010-01-12 19:51:48 +11001430 return;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001431 }
Darren Tucker09aa4c02010-01-12 19:51:48 +11001432
1433 /* /etc/nologin exists. Print its contents if we can and exit. */
1434 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1435 if ((f = fopen(nl, "r")) != NULL) {
1436 while (fgets(buf, sizeof(buf), f))
1437 fputs(buf, stderr);
1438 fclose(f);
1439 }
1440 exit(254);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001441}
1442
Damien Millerd8cb1f12008-02-10 22:40:12 +11001443/*
1444 * Chroot into a directory after checking it for safety: all path components
1445 * must be root-owned directories with strict permissions.
1446 */
1447static void
1448safely_chroot(const char *path, uid_t uid)
1449{
1450 const char *cp;
1451 char component[MAXPATHLEN];
1452 struct stat st;
1453
1454 if (*path != '/')
1455 fatal("chroot path does not begin at root");
1456 if (strlen(path) >= sizeof(component))
1457 fatal("chroot path too long");
1458
1459 /*
1460 * Descend the path, checking that each component is a
1461 * root-owned directory with strict permissions.
1462 */
1463 for (cp = path; cp != NULL;) {
1464 if ((cp = strchr(cp, '/')) == NULL)
1465 strlcpy(component, path, sizeof(component));
1466 else {
1467 cp++;
1468 memcpy(component, path, cp - path);
1469 component[cp - path] = '\0';
1470 }
1471
1472 debug3("%s: checking '%s'", __func__, component);
1473
1474 if (stat(component, &st) != 0)
1475 fatal("%s: stat(\"%s\"): %s", __func__,
1476 component, strerror(errno));
1477 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1478 fatal("bad ownership or modes for chroot "
1479 "directory %s\"%s\"",
1480 cp == NULL ? "" : "component ", component);
1481 if (!S_ISDIR(st.st_mode))
1482 fatal("chroot path %s\"%s\" is not a directory",
1483 cp == NULL ? "" : "component ", component);
1484
1485 }
1486
1487 if (chdir(path) == -1)
1488 fatal("Unable to chdir to chroot path \"%s\": "
1489 "%s", path, strerror(errno));
1490 if (chroot(path) == -1)
1491 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1492 if (chdir("/") == -1)
1493 fatal("%s: chdir(/) after chroot: %s",
1494 __func__, strerror(errno));
1495 verbose("Changed root directory to \"%s\"", path);
1496}
1497
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001498/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001499void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001500do_setusercontext(struct passwd *pw)
1501{
Damien Miller54e37732008-02-10 22:48:55 +11001502 char *chroot_path, *tmp;
1503
Darren Tucker97528352010-11-05 12:03:05 +11001504 platform_setusercontext(pw);
1505
Darren Tuckerb12fe272010-11-05 14:47:01 +11001506 if (platform_privileged_uidswap()) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001507#ifdef HAVE_LOGIN_CAP
1508 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001509 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001510 perror("unable to set user context");
1511 exit(1);
1512 }
1513#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001514 if (setlogin(pw->pw_name) < 0)
1515 error("setlogin failed: %s", strerror(errno));
1516 if (setgid(pw->pw_gid) < 0) {
1517 perror("setgid");
1518 exit(1);
1519 }
1520 /* Initialize the group list. */
1521 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1522 perror("initgroups");
1523 exit(1);
1524 }
1525 endgrent();
Damien Millerd8cb1f12008-02-10 22:40:12 +11001526#endif
1527
Darren Tucker920612e2010-11-05 12:36:15 +11001528 platform_setusercontext_post_groups(pw);
Damien Miller8b906422010-03-26 11:04:09 +11001529
Damien Millerd8cb1f12008-02-10 22:40:12 +11001530 if (options.chroot_directory != NULL &&
1531 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001532 tmp = tilde_expand_filename(options.chroot_directory,
1533 pw->pw_uid);
1534 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1535 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001536 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001537 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001538 free(chroot_path);
Damien Millera56086b2013-04-23 15:24:18 +10001539 /* Make sure we don't attempt to chroot again */
1540 free(options.chroot_directory);
1541 options.chroot_directory = NULL;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001542 }
1543
1544#ifdef HAVE_LOGIN_CAP
1545 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1546 perror("unable to set user context (setuser)");
1547 exit(1);
1548 }
Damien Miller58528402013-03-15 11:22:37 +11001549 /*
1550 * FreeBSD's setusercontext() will not apply the user's
1551 * own umask setting unless running with the user's UID.
1552 */
1553 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001554#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001555 /* Permanently switch to the desired uid. */
1556 permanently_set_uid(pw);
1557#endif
Damien Millera56086b2013-04-23 15:24:18 +10001558 } else if (options.chroot_directory != NULL &&
1559 strcasecmp(options.chroot_directory, "none") != 0) {
1560 fatal("server lacks privileges to chroot to ChrootDirectory");
Damien Millerf1a02ae2013-04-23 15:22:13 +10001561 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001562
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001563 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1564 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1565}
1566
Ben Lindstrom08105192002-03-22 02:50:06 +00001567static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001568do_pwchange(Session *s)
1569{
Darren Tucker09991742004-07-17 17:05:14 +10001570 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001571 fprintf(stderr, "WARNING: Your password has expired.\n");
1572 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001573 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001574 "You must change your password now and login again!\n");
Damien Miller14684a12011-05-20 11:23:07 +10001575#ifdef WITH_SELINUX
1576 setexeccon(NULL);
1577#endif
Darren Tucker33370e02005-02-09 22:17:28 +11001578#ifdef PASSWD_NEEDS_USERNAME
1579 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1580 (char *)NULL);
1581#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001582 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001583#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001584 perror("passwd");
1585 } else {
1586 fprintf(stderr,
1587 "Password change required but no TTY available.\n");
1588 }
1589 exit(1);
1590}
1591
1592static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001593launch_login(struct passwd *pw, const char *hostname)
1594{
1595 /* Launch login(1). */
1596
Ben Lindstrom378a4172002-06-07 14:49:56 +00001597 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001598#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001599 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001600#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001601#ifdef LOGIN_NO_ENDOPT
1602 "-p", "-f", pw->pw_name, (char *)NULL);
1603#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001604 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001605#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001606
1607 /* Login couldn't be executed, die. */
1608
1609 perror("login");
1610 exit(1);
1611}
1612
Darren Tucker23bc8d02004-02-06 16:24:31 +11001613static void
1614child_close_fds(void)
1615{
Damien Miller85b45e02013-07-20 13:21:52 +10001616 extern AuthenticationConnection *auth_conn;
1617
1618 if (auth_conn) {
1619 ssh_close_authentication_connection(auth_conn);
1620 auth_conn = NULL;
1621 }
1622
Darren Tucker23bc8d02004-02-06 16:24:31 +11001623 if (packet_get_connection_in() == packet_get_connection_out())
1624 close(packet_get_connection_in());
1625 else {
1626 close(packet_get_connection_in());
1627 close(packet_get_connection_out());
1628 }
1629 /*
1630 * Close all descriptors related to channels. They will still remain
1631 * open in the parent.
1632 */
1633 /* XXX better use close-on-exec? -markus */
1634 channel_close_all();
1635
1636 /*
1637 * Close any extra file descriptors. Note that there may still be
1638 * descriptors left by system functions. They will be closed later.
1639 */
1640 endpwent();
1641
1642 /*
Damien Miller788f2122005-11-05 15:14:59 +11001643 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001644 * hanging around in clients. Note that we want to do this after
1645 * initgroups, because at least on Solaris 2.3 it leaves file
1646 * descriptors open.
1647 */
Damien Millerf80c3de2010-12-01 12:02:59 +11001648 closefrom(STDERR_FILENO + 1);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001649}
1650
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001651/*
1652 * Performs common processing for the child, such as setting up the
1653 * environment, closing extra file descriptors, setting the user and group
1654 * ids, and executing the command or shell.
1655 */
Damien Millerdfc24252008-02-10 22:29:40 +11001656#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001657void
1658do_child(Session *s, const char *command)
1659{
1660 extern char **environ;
1661 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001662 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001663 const char *shell, *shell0, *hostname = NULL;
1664 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001665 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001666
1667 /* remove hostkey from the child's memory */
1668 destroy_sensitive_data();
1669
Darren Tucker23bc8d02004-02-06 16:24:31 +11001670 /* Force a password change */
1671 if (s->authctxt->force_pwchange) {
1672 do_setusercontext(pw);
1673 child_close_fds();
1674 do_pwchange(s);
1675 exit(1);
1676 }
1677
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001678 /* login(1) is only called if we execute the login shell */
1679 if (options.use_login && command != NULL)
1680 options.use_login = 0;
1681
Tim Rice81ed5182002-09-25 17:38:46 -07001682#ifdef _UNICOS
1683 cray_setup(pw->pw_uid, pw->pw_name, command);
1684#endif /* _UNICOS */
1685
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001686 /*
1687 * Login(1) does this as well, and it needs uid 0 for the "-h"
1688 * switch, so we let login(1) to this for us.
1689 */
1690 if (!options.use_login) {
1691#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001692 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001693 if (!check_quietlogin(s, command))
1694 do_motd();
1695#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001696 /* When PAM is enabled we rely on it to do the nologin check */
1697 if (!options.use_pam)
1698 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001699 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001700 /*
1701 * PAM session modules in do_setusercontext may have
1702 * generated messages, so if this in an interactive
1703 * login then display them too.
1704 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001705 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001706 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001707#endif /* HAVE_OSF_SIA */
1708 }
1709
Darren Tucker69687f42004-09-11 22:17:26 +10001710#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001711 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1712 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001713 display_loginmsg();
1714 exit(254);
1715 }
1716#endif
1717
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001718 /*
1719 * Get the shell from the password data. An empty shell field is
1720 * legal, and means /bin/sh.
1721 */
1722 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001723
1724 /*
1725 * Make sure $SHELL points to the shell from the password file,
1726 * even if shell is overridden from login.conf
1727 */
1728 env = do_setup_env(s, shell);
1729
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001730#ifdef HAVE_LOGIN_CAP
1731 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1732#endif
1733
Damien Millerad833b32000-08-23 10:46:23 +10001734 /* we have to stash the hostname before we close our socket. */
1735 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001736 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001737 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001738 /*
1739 * Close the connection descriptors; note that this is the child, and
1740 * the server will still have the socket open, and it is important
1741 * that we do not shutdown it. Note that the descriptors cannot be
1742 * closed before building the environment, as we call
1743 * get_remote_ipaddr there.
1744 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001745 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001746
Damien Millerb38eff82000-04-01 11:09:21 +10001747 /*
Damien Miller05eda432002-02-10 18:32:28 +11001748 * Must take new environment into use so that .ssh/rc,
1749 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001750 */
1751 environ = env;
1752
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001753#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001754 /*
1755 * At this point, we check to see if AFS is active and if we have
1756 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1757 * if we can (and need to) extend the ticket into an AFS token. If
1758 * we don't do this, we run into potential problems if the user's
1759 * home directory is in AFS and it's not world-readable.
1760 */
1761
1762 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001763 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001764 char cell[64];
1765
1766 debug("Getting AFS token");
1767
1768 k_setpag();
1769
1770 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1771 krb5_afslog(s->authctxt->krb5_ctx,
1772 s->authctxt->krb5_fwd_ccache, cell, NULL);
1773
1774 krb5_afslog_home(s->authctxt->krb5_ctx,
1775 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1776 }
1777#endif
1778
Damien Miller788f2122005-11-05 15:14:59 +11001779 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001780 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001781 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001782#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001783 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001784#endif
Damien Miller7aa46ec2010-06-26 09:37:57 +10001785 if (r || options.chroot_directory == NULL ||
1786 strcasecmp(options.chroot_directory, "none") == 0)
Damien Miller6051c942008-06-16 07:53:16 +10001787 fprintf(stderr, "Could not chdir to home "
1788 "directory %s: %s\n", pw->pw_dir,
1789 strerror(errno));
1790 if (r)
1791 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001792 }
1793
Damien Millera1939002008-03-15 17:27:58 +11001794 closefrom(STDERR_FILENO + 1);
1795
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001796 if (!options.use_login)
1797 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001798
1799 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001800 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001801
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001802 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1803 printf("This service allows sftp connections only.\n");
1804 fflush(NULL);
1805 exit(1);
1806 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001807 extern int optind, optreset;
1808 int i;
1809 char *p, *args;
1810
Darren Tuckerac46a912009-06-21 17:55:23 +10001811 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001812 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001813 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1814 if (i < ARGV_MAX - 1)
1815 argv[i++] = p;
1816 argv[i] = NULL;
1817 optind = optreset = 1;
1818 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001819#ifdef WITH_SELINUX
1820 ssh_selinux_change_context("sftpd_t");
1821#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001822 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001823 }
1824
Darren Tucker695ed392009-10-07 09:02:18 +11001825 fflush(NULL);
1826
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001827 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001828 launch_login(pw, hostname);
1829 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001830 }
1831
1832 /* Get the last component of the shell name. */
1833 if ((shell0 = strrchr(shell, '/')) != NULL)
1834 shell0++;
1835 else
1836 shell0 = shell;
1837
Damien Millerb38eff82000-04-01 11:09:21 +10001838 /*
1839 * If we have no command, execute the shell. In this case, the shell
1840 * name to be passed in argv[0] is preceded by '-' to indicate that
1841 * this is a login shell.
1842 */
1843 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001844 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001845
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001846 /* Start the shell. Set initial character to '-'. */
1847 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001848
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001849 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1850 >= sizeof(argv0) - 1) {
1851 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001852 perror(shell);
1853 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001854 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001855
1856 /* Execute the shell. */
1857 argv[0] = argv0;
1858 argv[1] = NULL;
1859 execve(shell, argv, env);
1860
1861 /* Executing the shell failed. */
1862 perror(shell);
1863 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001864 }
1865 /*
1866 * Execute the command using the user's shell. This uses the -c
1867 * option to execute the command.
1868 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001869 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001870 argv[1] = "-c";
1871 argv[2] = (char *) command;
1872 argv[3] = NULL;
1873 execve(shell, argv, env);
1874 perror(shell);
1875 exit(1);
1876}
1877
Damien Miller7207f642008-05-19 15:34:50 +10001878void
1879session_unused(int id)
1880{
1881 debug3("%s: session id %d unused", __func__, id);
1882 if (id >= options.max_sessions ||
1883 id >= sessions_nalloc) {
1884 fatal("%s: insane session id %d (max %d nalloc %d)",
1885 __func__, id, options.max_sessions, sessions_nalloc);
1886 }
1887 bzero(&sessions[id], sizeof(*sessions));
1888 sessions[id].self = id;
1889 sessions[id].used = 0;
1890 sessions[id].chanid = -1;
1891 sessions[id].ptyfd = -1;
1892 sessions[id].ttyfd = -1;
1893 sessions[id].ptymaster = -1;
1894 sessions[id].x11_chanids = NULL;
1895 sessions[id].next_unused = sessions_first_unused;
1896 sessions_first_unused = id;
1897}
1898
Damien Millerb38eff82000-04-01 11:09:21 +10001899Session *
1900session_new(void)
1901{
Damien Miller7207f642008-05-19 15:34:50 +10001902 Session *s, *tmp;
1903
1904 if (sessions_first_unused == -1) {
1905 if (sessions_nalloc >= options.max_sessions)
1906 return NULL;
1907 debug2("%s: allocate (allocated %d max %d)",
1908 __func__, sessions_nalloc, options.max_sessions);
1909 tmp = xrealloc(sessions, sessions_nalloc + 1,
1910 sizeof(*sessions));
1911 if (tmp == NULL) {
1912 error("%s: cannot allocate %d sessions",
1913 __func__, sessions_nalloc + 1);
1914 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001915 }
Damien Miller7207f642008-05-19 15:34:50 +10001916 sessions = tmp;
1917 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001918 }
Damien Miller7207f642008-05-19 15:34:50 +10001919
1920 if (sessions_first_unused >= sessions_nalloc ||
1921 sessions_first_unused < 0) {
1922 fatal("%s: insane first_unused %d max %d nalloc %d",
1923 __func__, sessions_first_unused, options.max_sessions,
1924 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001925 }
Damien Miller7207f642008-05-19 15:34:50 +10001926
1927 s = &sessions[sessions_first_unused];
1928 if (s->used) {
1929 fatal("%s: session %d already used",
1930 __func__, sessions_first_unused);
1931 }
1932 sessions_first_unused = s->next_unused;
1933 s->used = 1;
1934 s->next_unused = -1;
1935 debug("session_new: session %d", s->self);
1936
1937 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001938}
1939
Ben Lindstrombba81212001-06-25 05:01:22 +00001940static void
Damien Millerb38eff82000-04-01 11:09:21 +10001941session_dump(void)
1942{
1943 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001944 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001945 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001946
1947 debug("dump: used %d next_unused %d session %d %p "
1948 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001949 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001950 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001951 s->self,
1952 s,
1953 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001954 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001955 }
1956}
1957
Damien Millerefb4afe2000-04-12 18:45:05 +10001958int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001959session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001960{
1961 Session *s = session_new();
1962 debug("session_open: channel %d", chanid);
1963 if (s == NULL) {
1964 error("no more sessions");
1965 return 0;
1966 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001967 s->authctxt = authctxt;
1968 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001969 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001970 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001971 debug("session_open: session %d: link with channel %d", s->self, chanid);
1972 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001973 return 1;
1974}
1975
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001976Session *
1977session_by_tty(char *tty)
1978{
1979 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001980 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001981 Session *s = &sessions[i];
1982 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1983 debug("session_by_tty: session %d tty %s", i, tty);
1984 return s;
1985 }
1986 }
1987 debug("session_by_tty: unknown tty %.100s", tty);
1988 session_dump();
1989 return NULL;
1990}
1991
Ben Lindstrombba81212001-06-25 05:01:22 +00001992static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001993session_by_channel(int id)
1994{
1995 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001996 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001997 Session *s = &sessions[i];
1998 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001999 debug("session_by_channel: session %d channel %d",
2000 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002001 return s;
2002 }
2003 }
2004 debug("session_by_channel: unknown channel %d", id);
2005 session_dump();
2006 return NULL;
2007}
2008
Ben Lindstrombba81212001-06-25 05:01:22 +00002009static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10002010session_by_x11_channel(int id)
2011{
2012 int i, j;
2013
Damien Miller7207f642008-05-19 15:34:50 +10002014 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002015 Session *s = &sessions[i];
2016
2017 if (s->x11_chanids == NULL || !s->used)
2018 continue;
2019 for (j = 0; s->x11_chanids[j] != -1; j++) {
2020 if (s->x11_chanids[j] == id) {
2021 debug("session_by_x11_channel: session %d "
2022 "channel %d", s->self, id);
2023 return s;
2024 }
2025 }
2026 }
2027 debug("session_by_x11_channel: unknown channel %d", id);
2028 session_dump();
2029 return NULL;
2030}
2031
2032static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002033session_by_pid(pid_t pid)
2034{
2035 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002036 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002037 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002038 Session *s = &sessions[i];
2039 if (s->used && s->pid == pid)
2040 return s;
2041 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002042 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002043 session_dump();
2044 return NULL;
2045}
2046
Ben Lindstrombba81212001-06-25 05:01:22 +00002047static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002048session_window_change_req(Session *s)
2049{
2050 s->col = packet_get_int();
2051 s->row = packet_get_int();
2052 s->xpixel = packet_get_int();
2053 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002054 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002055 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2056 return 1;
2057}
2058
Ben Lindstrombba81212001-06-25 05:01:22 +00002059static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002060session_pty_req(Session *s)
2061{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002062 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002063 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002064
Damien Miller5ff30c62013-10-30 22:21:50 +11002065 if (no_pty_flag || !options.permit_tty) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002066 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002067 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002068 }
2069 if (s->ttyfd != -1) {
2070 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002071 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002072 }
2073
Damien Millerefb4afe2000-04-12 18:45:05 +10002074 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002075
2076 if (compat20) {
2077 s->col = packet_get_int();
2078 s->row = packet_get_int();
2079 } else {
2080 s->row = packet_get_int();
2081 s->col = packet_get_int();
2082 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002083 s->xpixel = packet_get_int();
2084 s->ypixel = packet_get_int();
2085
2086 if (strcmp(s->term, "") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002087 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002088 s->term = NULL;
2089 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002090
Damien Millerefb4afe2000-04-12 18:45:05 +10002091 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002092 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002093 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2094 sizeof(s->tty)))) {
Darren Tuckera627d422013-06-02 07:31:17 +10002095 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002096 s->term = NULL;
2097 s->ptyfd = -1;
2098 s->ttyfd = -1;
2099 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002100 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002101 }
2102 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002103
2104 /* for SSH1 the tty modes length is not given */
2105 if (!compat20)
2106 n_bytes = packet_remaining();
2107 tty_parse_modes(s->ttyfd, &n_bytes);
2108
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002109 if (!use_privsep)
2110 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002111
2112 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002113 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2114
Damien Miller48b03fc2002-01-22 23:11:40 +11002115 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002116 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002117 return 1;
2118}
2119
Ben Lindstrombba81212001-06-25 05:01:22 +00002120static int
Damien Millerbd483e72000-04-30 10:00:53 +10002121session_subsystem_req(Session *s)
2122{
Damien Millerae452462001-10-10 15:08:06 +10002123 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002124 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002125 int success = 0;
Damien Miller71df7522013-10-15 12:12:02 +11002126 char *prog, *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +10002127 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002128
Damien Miller71df7522013-10-15 12:12:02 +11002129 s->subsys = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002130 packet_check_eom();
Damien Miller71df7522013-10-15 12:12:02 +11002131 debug2("subsystem request for %.100s by user %s", s->subsys,
Damien Miller1b2b61e2010-06-26 09:47:43 +10002132 s->pw->pw_name);
Damien Millerbd483e72000-04-30 10:00:53 +10002133
Damien Millerf6d9e222000-06-18 14:50:44 +10002134 for (i = 0; i < options.num_subsystems; i++) {
Damien Miller71df7522013-10-15 12:12:02 +11002135 if (strcmp(s->subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002136 prog = options.subsystem_command[i];
2137 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002138 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11002139 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002140 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11002141 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002142 if (stat(prog, &st) < 0)
2143 debug("subsystem: cannot stat %s: %s",
2144 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11002145 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002146 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10002147 }
Damien Miller7207f642008-05-19 15:34:50 +10002148 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002149 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002150 }
2151 }
2152
2153 if (!success)
Damien Miller71df7522013-10-15 12:12:02 +11002154 logit("subsystem request for %.100s by user %s failed, "
2155 "subsystem not found", s->subsys, s->pw->pw_name);
Damien Millerf6d9e222000-06-18 14:50:44 +10002156
Damien Millerbd483e72000-04-30 10:00:53 +10002157 return success;
2158}
2159
Ben Lindstrombba81212001-06-25 05:01:22 +00002160static int
Damien Millerbd483e72000-04-30 10:00:53 +10002161session_x11_req(Session *s)
2162{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002163 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002164
Damien Miller2b9b0452005-07-17 17:19:24 +10002165 if (s->auth_proto != NULL || s->auth_data != NULL) {
2166 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002167 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002168 return 0;
2169 }
Damien Millerbd483e72000-04-30 10:00:53 +10002170 s->single_connection = packet_get_char();
2171 s->auth_proto = packet_get_string(NULL);
2172 s->auth_data = packet_get_string(NULL);
2173 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002174 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002175
Ben Lindstrom768176b2001-06-09 01:29:12 +00002176 success = session_setup_x11fwd(s);
2177 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +10002178 free(s->auth_proto);
2179 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002180 s->auth_proto = NULL;
2181 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002182 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002183 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002184}
2185
Ben Lindstrombba81212001-06-25 05:01:22 +00002186static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002187session_shell_req(Session *s)
2188{
Damien Miller48b03fc2002-01-22 23:11:40 +11002189 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002190 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002191}
2192
Ben Lindstrombba81212001-06-25 05:01:22 +00002193static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002194session_exec_req(Session *s)
2195{
Damien Miller7207f642008-05-19 15:34:50 +10002196 u_int len, success;
2197
Damien Millerf6d9e222000-06-18 14:50:44 +10002198 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002199 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002200 success = do_exec(s, command) == 0;
Darren Tuckera627d422013-06-02 07:31:17 +10002201 free(command);
Damien Miller7207f642008-05-19 15:34:50 +10002202 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002203}
2204
Ben Lindstrombba81212001-06-25 05:01:22 +00002205static int
Damien Miller54c45982003-05-15 10:20:13 +10002206session_break_req(Session *s)
2207{
Damien Miller54c45982003-05-15 10:20:13 +10002208
Darren Tucker1f8311c2004-05-13 16:39:33 +10002209 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002210 packet_check_eom();
2211
Darren Tucker9c5d5532011-11-04 10:55:24 +11002212 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002213 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002214 return 1;
2215}
2216
2217static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002218session_env_req(Session *s)
2219{
2220 char *name, *val;
2221 u_int name_len, val_len, i;
2222
2223 name = packet_get_string(&name_len);
2224 val = packet_get_string(&val_len);
2225 packet_check_eom();
2226
2227 /* Don't set too many environment variables */
2228 if (s->num_env > 128) {
2229 debug2("Ignoring env request %s: too many env vars", name);
2230 goto fail;
2231 }
2232
2233 for (i = 0; i < options.num_accept_env; i++) {
2234 if (match_pattern(name, options.accept_env[i])) {
2235 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002236 s->env = xrealloc(s->env, s->num_env + 1,
2237 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002238 s->env[s->num_env].name = name;
2239 s->env[s->num_env].val = val;
2240 s->num_env++;
2241 return (1);
2242 }
2243 }
2244 debug2("Ignoring env request %s: disallowed name", name);
2245
2246 fail:
Darren Tuckera627d422013-06-02 07:31:17 +10002247 free(name);
2248 free(val);
Darren Tucker46bc0752004-05-02 22:11:30 +10002249 return (0);
2250}
2251
2252static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002253session_auth_agent_req(Session *s)
2254{
2255 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002256 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002257 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002258 debug("session_auth_agent_req: no_agent_forwarding_flag");
2259 return 0;
2260 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002261 if (called) {
2262 return 0;
2263 } else {
2264 called = 1;
2265 return auth_input_request_forwarding(s->pw);
2266 }
2267}
2268
Damien Millerc7ef63d2002-02-05 12:21:42 +11002269int
2270session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002271{
Damien Millerefb4afe2000-04-12 18:45:05 +10002272 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002273 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002274
Damien Millerc7ef63d2002-02-05 12:21:42 +11002275 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002276 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002277 c->self, rtype);
2278 return 0;
2279 }
2280 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002281
2282 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002283 * a session is in LARVAL state until a shell, a command
2284 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002285 */
2286 if (c->type == SSH_CHANNEL_LARVAL) {
2287 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002288 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002289 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002290 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002291 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002292 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002293 } else if (strcmp(rtype, "x11-req") == 0) {
2294 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002295 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2296 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002297 } else if (strcmp(rtype, "subsystem") == 0) {
2298 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002299 } else if (strcmp(rtype, "env") == 0) {
2300 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002301 }
2302 }
2303 if (strcmp(rtype, "window-change") == 0) {
2304 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002305 } else if (strcmp(rtype, "break") == 0) {
2306 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002307 }
Damien Millera6b1d162004-06-30 22:41:07 +10002308
Damien Millerc7ef63d2002-02-05 12:21:42 +11002309 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002310}
2311
2312void
Damien Miller8853ca52010-06-26 10:00:14 +10002313session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr,
2314 int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002315{
2316 if (!compat20)
2317 fatal("session_set_fds: called for proto != 2.0");
2318 /*
2319 * now that have a child and a pipe to the child,
2320 * we can activate our channel and register the fd's
2321 */
2322 if (s->chanid == -1)
2323 fatal("no channel for session %d", s->self);
2324 channel_set_fds(s->chanid,
2325 fdout, fdin, fderr,
Damien Miller8853ca52010-06-26 10:00:14 +10002326 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002327 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002328}
2329
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002330/*
2331 * Function to perform pty cleanup. Also called if we get aborted abnormally
2332 * (e.g., due to a dropped connection).
2333 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002334void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002335session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002336{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002337 if (s == NULL) {
2338 error("session_pty_cleanup: no session");
2339 return;
2340 }
2341 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002342 return;
2343
Kevin Steves43cdef32001-02-11 14:12:08 +00002344 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002345
Damien Millerb38eff82000-04-01 11:09:21 +10002346 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002347 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002348 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002349
2350 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002351 if (getuid() == 0)
2352 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002353
2354 /*
2355 * Close the server side of the socket pairs. We must do this after
2356 * the pty cleanup, so that another process doesn't get this pty
2357 * while we're still cleaning up.
2358 */
Damien Miller7207f642008-05-19 15:34:50 +10002359 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2360 error("close(s->ptymaster/%d): %s",
2361 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002362
2363 /* unlink pty from session */
2364 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002365}
Damien Millerefb4afe2000-04-12 18:45:05 +10002366
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002367void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002368session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002369{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002370 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002371}
2372
Damien Miller5a80bba2002-09-04 16:39:02 +10002373static char *
2374sig2name(int sig)
2375{
2376#define SSH_SIG(x) if (sig == SIG ## x) return #x
2377 SSH_SIG(ABRT);
2378 SSH_SIG(ALRM);
2379 SSH_SIG(FPE);
2380 SSH_SIG(HUP);
2381 SSH_SIG(ILL);
2382 SSH_SIG(INT);
2383 SSH_SIG(KILL);
2384 SSH_SIG(PIPE);
2385 SSH_SIG(QUIT);
2386 SSH_SIG(SEGV);
2387 SSH_SIG(TERM);
2388 SSH_SIG(USR1);
2389 SSH_SIG(USR2);
2390#undef SSH_SIG
2391 return "SIG@openssh.com";
2392}
2393
Ben Lindstrombba81212001-06-25 05:01:22 +00002394static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002395session_close_x11(int id)
2396{
2397 Channel *c;
2398
Damien Millerd47c62a2005-12-13 19:33:57 +11002399 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002400 debug("session_close_x11: x11 channel %d missing", id);
2401 } else {
2402 /* Detach X11 listener */
2403 debug("session_close_x11: detach x11 channel %d", id);
2404 channel_cancel_cleanup(id);
2405 if (c->ostate != CHAN_OUTPUT_CLOSED)
2406 chan_mark_dead(c);
2407 }
2408}
2409
2410static void
2411session_close_single_x11(int id, void *arg)
2412{
2413 Session *s;
2414 u_int i;
2415
2416 debug3("session_close_single_x11: channel %d", id);
2417 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002418 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002419 fatal("session_close_single_x11: no x11 channel %d", id);
2420 for (i = 0; s->x11_chanids[i] != -1; i++) {
2421 debug("session_close_single_x11: session %d: "
2422 "closing channel %d", s->self, s->x11_chanids[i]);
2423 /*
2424 * The channel "id" is already closing, but make sure we
2425 * close all of its siblings.
2426 */
2427 if (s->x11_chanids[i] != id)
2428 session_close_x11(s->x11_chanids[i]);
2429 }
Darren Tuckera627d422013-06-02 07:31:17 +10002430 free(s->x11_chanids);
Damien Miller2b9b0452005-07-17 17:19:24 +10002431 s->x11_chanids = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002432 free(s->display);
2433 s->display = NULL;
2434 free(s->auth_proto);
2435 s->auth_proto = NULL;
2436 free(s->auth_data);
2437 s->auth_data = NULL;
2438 free(s->auth_display);
2439 s->auth_display = NULL;
Damien Miller2b9b0452005-07-17 17:19:24 +10002440}
2441
2442static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002443session_exit_message(Session *s, int status)
2444{
2445 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002446
2447 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002448 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002449 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002450 debug("session_exit_message: session %d channel %d pid %ld",
2451 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002452
2453 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002454 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002455 packet_put_int(WEXITSTATUS(status));
2456 packet_send();
2457 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002458 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002459 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002460#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002461 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002462#else /* WCOREDUMP */
2463 packet_put_char(0);
2464#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002465 packet_put_cstring("");
2466 packet_put_cstring("");
2467 packet_send();
2468 } else {
2469 /* Some weird exit cause. Just exit. */
2470 packet_disconnect("wait returned status %04x.", status);
2471 }
2472
2473 /* disconnect channel */
2474 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002475
2476 /*
2477 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002478 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002479 * by session_close_by_channel when the childs close their fds.
2480 */
2481 channel_register_cleanup(c->self, session_close_by_channel, 1);
2482
Damien Miller166fca82000-04-20 07:42:21 +10002483 /*
2484 * emulate a write failure with 'chan_write_failed', nobody will be
2485 * interested in data we write.
2486 * Note that we must not call 'chan_read_failed', since there could
2487 * be some more data waiting in the pipe.
2488 */
Damien Millerbd483e72000-04-30 10:00:53 +10002489 if (c->ostate != CHAN_OUTPUT_CLOSED)
2490 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002491}
2492
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002493void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002494session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002495{
Damien Millereccb9de2005-06-17 12:59:34 +10002496 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002497
Ben Lindstromce0f6342002-06-11 16:42:49 +00002498 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002499 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002500 session_pty_cleanup(s);
Darren Tuckera627d422013-06-02 07:31:17 +10002501 free(s->term);
2502 free(s->display);
2503 free(s->x11_chanids);
2504 free(s->auth_display);
2505 free(s->auth_data);
2506 free(s->auth_proto);
Damien Miller71df7522013-10-15 12:12:02 +11002507 free(s->subsys);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002508 if (s->env != NULL) {
2509 for (i = 0; i < s->num_env; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10002510 free(s->env[i].name);
2511 free(s->env[i].val);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002512 }
Darren Tuckera627d422013-06-02 07:31:17 +10002513 free(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002514 }
Damien Millere247cc42000-05-07 12:03:14 +10002515 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002516 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002517}
2518
2519void
2520session_close_by_pid(pid_t pid, int status)
2521{
2522 Session *s = session_by_pid(pid);
2523 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002524 debug("session_close_by_pid: no session for pid %ld",
2525 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002526 return;
2527 }
2528 if (s->chanid != -1)
2529 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002530 if (s->ttyfd != -1)
2531 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002532 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002533}
2534
2535/*
2536 * this is called when a channel dies before
2537 * the session 'child' itself dies
2538 */
2539void
2540session_close_by_channel(int id, void *arg)
2541{
2542 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002543 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002544
Damien Millerefb4afe2000-04-12 18:45:05 +10002545 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002546 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002547 return;
2548 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002549 debug("session_close_by_channel: channel %d child %ld",
2550 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002551 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002552 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002553 /*
2554 * delay detach of session, but release pty, since
2555 * the fd's to the child are already closed
2556 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002557 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002558 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002559 return;
2560 }
2561 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002562 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002563
2564 /* Close any X11 listeners associated with this session */
2565 if (s->x11_chanids != NULL) {
2566 for (i = 0; s->x11_chanids[i] != -1; i++) {
2567 session_close_x11(s->x11_chanids[i]);
2568 s->x11_chanids[i] = -1;
2569 }
2570 }
2571
Damien Millerefb4afe2000-04-12 18:45:05 +10002572 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002573 session_close(s);
2574}
2575
2576void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002577session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002578{
2579 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002580 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002581 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002582 if (s->used) {
2583 if (closefunc != NULL)
2584 closefunc(s);
2585 else
2586 session_close(s);
2587 }
Damien Miller52b77be2001-10-10 15:14:37 +10002588 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002589}
2590
Ben Lindstrombba81212001-06-25 05:01:22 +00002591static char *
Damien Millere247cc42000-05-07 12:03:14 +10002592session_tty_list(void)
2593{
2594 static char buf[1024];
2595 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002596 char *cp;
2597
Damien Millere247cc42000-05-07 12:03:14 +10002598 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002599 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002600 Session *s = &sessions[i];
2601 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002602
Damien Millera8ed44b2003-01-10 09:53:12 +11002603 if (strncmp(s->tty, "/dev/", 5) != 0) {
2604 cp = strrchr(s->tty, '/');
2605 cp = (cp == NULL) ? s->tty : cp + 1;
2606 } else
2607 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002608
Damien Millere247cc42000-05-07 12:03:14 +10002609 if (buf[0] != '\0')
2610 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002611 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002612 }
2613 }
2614 if (buf[0] == '\0')
2615 strlcpy(buf, "notty", sizeof buf);
2616 return buf;
2617}
2618
2619void
2620session_proctitle(Session *s)
2621{
2622 if (s->pw == NULL)
2623 error("no user for session %d", s->self);
2624 else
2625 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2626}
2627
Ben Lindstrom768176b2001-06-09 01:29:12 +00002628int
2629session_setup_x11fwd(Session *s)
2630{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002631 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002632 char display[512], auth_display[512];
2633 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002634 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002635
2636 if (no_x11_forwarding_flag) {
2637 packet_send_debug("X11 forwarding disabled in user configuration file.");
2638 return 0;
2639 }
2640 if (!options.x11_forwarding) {
2641 debug("X11 forwarding disabled in server configuration file.");
2642 return 0;
2643 }
2644 if (!options.xauth_location ||
2645 (stat(options.xauth_location, &st) == -1)) {
2646 packet_send_debug("No xauth program; cannot forward with spoofing.");
2647 return 0;
2648 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002649 if (options.use_login) {
2650 packet_send_debug("X11 forwarding disabled; "
2651 "not compatible with UseLogin=yes.");
2652 return 0;
2653 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002654 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002655 debug("X11 display already set.");
2656 return 0;
2657 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002658 if (x11_create_display_inet(options.x11_display_offset,
2659 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002660 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002661 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002662 return 0;
2663 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002664 for (i = 0; s->x11_chanids[i] != -1; i++) {
2665 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002666 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002667 }
Kevin Steves366298c2001-12-19 17:58:01 +00002668
2669 /* Set up a suitable value for the DISPLAY variable. */
2670 if (gethostname(hostname, sizeof(hostname)) < 0)
2671 fatal("gethostname: %.100s", strerror(errno));
2672 /*
2673 * auth_display must be used as the displayname when the
2674 * authorization entry is added with xauth(1). This will be
2675 * different than the DISPLAY string for localhost displays.
2676 */
Damien Miller95c249f2002-02-05 12:11:34 +11002677 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002678 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002679 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002680 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002681 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002682 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002683 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002684 } else {
2685#ifdef IPADDR_IN_DISPLAY
2686 struct hostent *he;
2687 struct in_addr my_addr;
2688
2689 he = gethostbyname(hostname);
2690 if (he == NULL) {
2691 error("Can't get IP address for X11 DISPLAY.");
2692 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2693 return 0;
2694 }
2695 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002696 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002697 s->display_number, s->screen);
2698#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002699 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002700 s->display_number, s->screen);
2701#endif
2702 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002703 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002704 }
2705
Ben Lindstrom768176b2001-06-09 01:29:12 +00002706 return 1;
2707}
2708
Ben Lindstrombba81212001-06-25 05:01:22 +00002709static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002710do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002711{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002712 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002713}
2714
2715void
2716do_cleanup(Authctxt *authctxt)
2717{
2718 static int called = 0;
2719
2720 debug("do_cleanup");
2721
2722 /* no cleanup if we're in the child for login shell */
2723 if (is_child)
2724 return;
2725
2726 /* avoid double cleanup */
2727 if (called)
2728 return;
2729 called = 1;
2730
Darren Tucker9142e1c2007-08-16 23:28:04 +10002731 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002732 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002733
2734#ifdef USE_PAM
2735 if (options.use_pam) {
2736 sshpam_cleanup();
2737 sshpam_thread_cleanup();
2738 }
2739#endif
2740
2741 if (!authctxt->authenticated)
2742 return;
2743
Darren Tucker3e33cec2003-10-02 16:12:36 +10002744#ifdef KRB5
2745 if (options.kerberos_ticket_cleanup &&
2746 authctxt->krb5_ctx)
2747 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002748#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002749
2750#ifdef GSSAPI
2751 if (compat20 && options.gss_cleanup_creds)
2752 ssh_gssapi_cleanup_creds();
2753#endif
2754
2755 /* remove agent socket */
2756 auth_sock_cleanup_proc(authctxt->pw);
2757
2758 /*
2759 * Cleanup ptys/utmp only if privsep is disabled,
2760 * or if running in monitor.
2761 */
2762 if (!use_privsep || mm_is_monitor())
2763 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002764}