blob: 6be16ca86ce0497aec58a2fcd9b9f3a2c5121bc3 [file] [log] [blame]
Darren Tucker293ee3c2014-01-19 15:28:01 +11001/* $OpenBSD: session.c,v 1.269 2014/01/18 09:36:26 dtucker 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
Darren Tucker293ee3c2014-01-19 15:28:01 +1100444#define USE_PIPES 1
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
Tim Rice9464ba62014-01-20 17:59:28 -08001555# ifdef USE_LIBIAF
1556 if (set_id(pw->pw_name) != 0) {
1557 exit(1);
1558 }
1559# endif /* USE_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001560 /* Permanently switch to the desired uid. */
1561 permanently_set_uid(pw);
1562#endif
Damien Millera56086b2013-04-23 15:24:18 +10001563 } else if (options.chroot_directory != NULL &&
1564 strcasecmp(options.chroot_directory, "none") != 0) {
1565 fatal("server lacks privileges to chroot to ChrootDirectory");
Damien Millerf1a02ae2013-04-23 15:22:13 +10001566 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001567
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001568 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1569 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1570}
1571
Ben Lindstrom08105192002-03-22 02:50:06 +00001572static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001573do_pwchange(Session *s)
1574{
Darren Tucker09991742004-07-17 17:05:14 +10001575 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001576 fprintf(stderr, "WARNING: Your password has expired.\n");
1577 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001578 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001579 "You must change your password now and login again!\n");
Damien Miller14684a12011-05-20 11:23:07 +10001580#ifdef WITH_SELINUX
1581 setexeccon(NULL);
1582#endif
Darren Tucker33370e02005-02-09 22:17:28 +11001583#ifdef PASSWD_NEEDS_USERNAME
1584 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1585 (char *)NULL);
1586#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001587 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001588#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001589 perror("passwd");
1590 } else {
1591 fprintf(stderr,
1592 "Password change required but no TTY available.\n");
1593 }
1594 exit(1);
1595}
1596
1597static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001598launch_login(struct passwd *pw, const char *hostname)
1599{
1600 /* Launch login(1). */
1601
Ben Lindstrom378a4172002-06-07 14:49:56 +00001602 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001603#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001604 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001605#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001606#ifdef LOGIN_NO_ENDOPT
1607 "-p", "-f", pw->pw_name, (char *)NULL);
1608#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001609 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001610#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001611
1612 /* Login couldn't be executed, die. */
1613
1614 perror("login");
1615 exit(1);
1616}
1617
Darren Tucker23bc8d02004-02-06 16:24:31 +11001618static void
1619child_close_fds(void)
1620{
Damien Miller85b45e02013-07-20 13:21:52 +10001621 extern AuthenticationConnection *auth_conn;
1622
1623 if (auth_conn) {
1624 ssh_close_authentication_connection(auth_conn);
1625 auth_conn = NULL;
1626 }
1627
Darren Tucker23bc8d02004-02-06 16:24:31 +11001628 if (packet_get_connection_in() == packet_get_connection_out())
1629 close(packet_get_connection_in());
1630 else {
1631 close(packet_get_connection_in());
1632 close(packet_get_connection_out());
1633 }
1634 /*
1635 * Close all descriptors related to channels. They will still remain
1636 * open in the parent.
1637 */
1638 /* XXX better use close-on-exec? -markus */
1639 channel_close_all();
1640
1641 /*
1642 * Close any extra file descriptors. Note that there may still be
1643 * descriptors left by system functions. They will be closed later.
1644 */
1645 endpwent();
1646
1647 /*
Damien Miller788f2122005-11-05 15:14:59 +11001648 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001649 * hanging around in clients. Note that we want to do this after
1650 * initgroups, because at least on Solaris 2.3 it leaves file
1651 * descriptors open.
1652 */
Damien Millerf80c3de2010-12-01 12:02:59 +11001653 closefrom(STDERR_FILENO + 1);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001654}
1655
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001656/*
1657 * Performs common processing for the child, such as setting up the
1658 * environment, closing extra file descriptors, setting the user and group
1659 * ids, and executing the command or shell.
1660 */
Damien Millerdfc24252008-02-10 22:29:40 +11001661#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001662void
1663do_child(Session *s, const char *command)
1664{
1665 extern char **environ;
1666 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001667 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001668 const char *shell, *shell0, *hostname = NULL;
1669 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001670 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001671
1672 /* remove hostkey from the child's memory */
1673 destroy_sensitive_data();
1674
Darren Tucker23bc8d02004-02-06 16:24:31 +11001675 /* Force a password change */
1676 if (s->authctxt->force_pwchange) {
1677 do_setusercontext(pw);
1678 child_close_fds();
1679 do_pwchange(s);
1680 exit(1);
1681 }
1682
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001683 /* login(1) is only called if we execute the login shell */
1684 if (options.use_login && command != NULL)
1685 options.use_login = 0;
1686
Tim Rice81ed5182002-09-25 17:38:46 -07001687#ifdef _UNICOS
1688 cray_setup(pw->pw_uid, pw->pw_name, command);
1689#endif /* _UNICOS */
1690
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001691 /*
1692 * Login(1) does this as well, and it needs uid 0 for the "-h"
1693 * switch, so we let login(1) to this for us.
1694 */
1695 if (!options.use_login) {
1696#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001697 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001698 if (!check_quietlogin(s, command))
1699 do_motd();
1700#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001701 /* When PAM is enabled we rely on it to do the nologin check */
1702 if (!options.use_pam)
1703 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001704 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001705 /*
1706 * PAM session modules in do_setusercontext may have
1707 * generated messages, so if this in an interactive
1708 * login then display them too.
1709 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001710 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001711 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001712#endif /* HAVE_OSF_SIA */
1713 }
1714
Darren Tucker69687f42004-09-11 22:17:26 +10001715#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001716 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1717 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001718 display_loginmsg();
1719 exit(254);
1720 }
1721#endif
1722
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001723 /*
1724 * Get the shell from the password data. An empty shell field is
1725 * legal, and means /bin/sh.
1726 */
1727 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001728
1729 /*
1730 * Make sure $SHELL points to the shell from the password file,
1731 * even if shell is overridden from login.conf
1732 */
1733 env = do_setup_env(s, shell);
1734
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001735#ifdef HAVE_LOGIN_CAP
1736 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1737#endif
1738
Damien Millerad833b32000-08-23 10:46:23 +10001739 /* we have to stash the hostname before we close our socket. */
1740 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001741 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001742 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001743 /*
1744 * Close the connection descriptors; note that this is the child, and
1745 * the server will still have the socket open, and it is important
1746 * that we do not shutdown it. Note that the descriptors cannot be
1747 * closed before building the environment, as we call
1748 * get_remote_ipaddr there.
1749 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001750 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001751
Damien Millerb38eff82000-04-01 11:09:21 +10001752 /*
Damien Miller05eda432002-02-10 18:32:28 +11001753 * Must take new environment into use so that .ssh/rc,
1754 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001755 */
1756 environ = env;
1757
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001758#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001759 /*
1760 * At this point, we check to see if AFS is active and if we have
1761 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1762 * if we can (and need to) extend the ticket into an AFS token. If
1763 * we don't do this, we run into potential problems if the user's
1764 * home directory is in AFS and it's not world-readable.
1765 */
1766
1767 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001768 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001769 char cell[64];
1770
1771 debug("Getting AFS token");
1772
1773 k_setpag();
1774
1775 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1776 krb5_afslog(s->authctxt->krb5_ctx,
1777 s->authctxt->krb5_fwd_ccache, cell, NULL);
1778
1779 krb5_afslog_home(s->authctxt->krb5_ctx,
1780 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1781 }
1782#endif
1783
Damien Miller788f2122005-11-05 15:14:59 +11001784 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001785 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001786 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001787#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001788 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001789#endif
Damien Miller7aa46ec2010-06-26 09:37:57 +10001790 if (r || options.chroot_directory == NULL ||
1791 strcasecmp(options.chroot_directory, "none") == 0)
Damien Miller6051c942008-06-16 07:53:16 +10001792 fprintf(stderr, "Could not chdir to home "
1793 "directory %s: %s\n", pw->pw_dir,
1794 strerror(errno));
1795 if (r)
1796 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001797 }
1798
Damien Millera1939002008-03-15 17:27:58 +11001799 closefrom(STDERR_FILENO + 1);
1800
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001801 if (!options.use_login)
1802 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001803
1804 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001805 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001806
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001807 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1808 printf("This service allows sftp connections only.\n");
1809 fflush(NULL);
1810 exit(1);
1811 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001812 extern int optind, optreset;
1813 int i;
1814 char *p, *args;
1815
Darren Tuckerac46a912009-06-21 17:55:23 +10001816 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001817 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001818 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1819 if (i < ARGV_MAX - 1)
1820 argv[i++] = p;
1821 argv[i] = NULL;
1822 optind = optreset = 1;
1823 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001824#ifdef WITH_SELINUX
1825 ssh_selinux_change_context("sftpd_t");
1826#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001827 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001828 }
1829
Darren Tucker695ed392009-10-07 09:02:18 +11001830 fflush(NULL);
1831
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001832 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001833 launch_login(pw, hostname);
1834 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001835 }
1836
1837 /* Get the last component of the shell name. */
1838 if ((shell0 = strrchr(shell, '/')) != NULL)
1839 shell0++;
1840 else
1841 shell0 = shell;
1842
Damien Millerb38eff82000-04-01 11:09:21 +10001843 /*
1844 * If we have no command, execute the shell. In this case, the shell
1845 * name to be passed in argv[0] is preceded by '-' to indicate that
1846 * this is a login shell.
1847 */
1848 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001849 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001850
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001851 /* Start the shell. Set initial character to '-'. */
1852 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001853
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001854 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1855 >= sizeof(argv0) - 1) {
1856 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001857 perror(shell);
1858 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001859 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001860
1861 /* Execute the shell. */
1862 argv[0] = argv0;
1863 argv[1] = NULL;
1864 execve(shell, argv, env);
1865
1866 /* Executing the shell failed. */
1867 perror(shell);
1868 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001869 }
1870 /*
1871 * Execute the command using the user's shell. This uses the -c
1872 * option to execute the command.
1873 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001874 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001875 argv[1] = "-c";
1876 argv[2] = (char *) command;
1877 argv[3] = NULL;
1878 execve(shell, argv, env);
1879 perror(shell);
1880 exit(1);
1881}
1882
Damien Miller7207f642008-05-19 15:34:50 +10001883void
1884session_unused(int id)
1885{
1886 debug3("%s: session id %d unused", __func__, id);
1887 if (id >= options.max_sessions ||
1888 id >= sessions_nalloc) {
1889 fatal("%s: insane session id %d (max %d nalloc %d)",
1890 __func__, id, options.max_sessions, sessions_nalloc);
1891 }
1892 bzero(&sessions[id], sizeof(*sessions));
1893 sessions[id].self = id;
1894 sessions[id].used = 0;
1895 sessions[id].chanid = -1;
1896 sessions[id].ptyfd = -1;
1897 sessions[id].ttyfd = -1;
1898 sessions[id].ptymaster = -1;
1899 sessions[id].x11_chanids = NULL;
1900 sessions[id].next_unused = sessions_first_unused;
1901 sessions_first_unused = id;
1902}
1903
Damien Millerb38eff82000-04-01 11:09:21 +10001904Session *
1905session_new(void)
1906{
Damien Miller7207f642008-05-19 15:34:50 +10001907 Session *s, *tmp;
1908
1909 if (sessions_first_unused == -1) {
1910 if (sessions_nalloc >= options.max_sessions)
1911 return NULL;
1912 debug2("%s: allocate (allocated %d max %d)",
1913 __func__, sessions_nalloc, options.max_sessions);
1914 tmp = xrealloc(sessions, sessions_nalloc + 1,
1915 sizeof(*sessions));
1916 if (tmp == NULL) {
1917 error("%s: cannot allocate %d sessions",
1918 __func__, sessions_nalloc + 1);
1919 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001920 }
Damien Miller7207f642008-05-19 15:34:50 +10001921 sessions = tmp;
1922 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001923 }
Damien Miller7207f642008-05-19 15:34:50 +10001924
1925 if (sessions_first_unused >= sessions_nalloc ||
1926 sessions_first_unused < 0) {
1927 fatal("%s: insane first_unused %d max %d nalloc %d",
1928 __func__, sessions_first_unused, options.max_sessions,
1929 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001930 }
Damien Miller7207f642008-05-19 15:34:50 +10001931
1932 s = &sessions[sessions_first_unused];
1933 if (s->used) {
1934 fatal("%s: session %d already used",
1935 __func__, sessions_first_unused);
1936 }
1937 sessions_first_unused = s->next_unused;
1938 s->used = 1;
1939 s->next_unused = -1;
1940 debug("session_new: session %d", s->self);
1941
1942 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001943}
1944
Ben Lindstrombba81212001-06-25 05:01:22 +00001945static void
Damien Millerb38eff82000-04-01 11:09:21 +10001946session_dump(void)
1947{
1948 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001949 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001950 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001951
1952 debug("dump: used %d next_unused %d session %d %p "
1953 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001954 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001955 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001956 s->self,
1957 s,
1958 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001959 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001960 }
1961}
1962
Damien Millerefb4afe2000-04-12 18:45:05 +10001963int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001964session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001965{
1966 Session *s = session_new();
1967 debug("session_open: channel %d", chanid);
1968 if (s == NULL) {
1969 error("no more sessions");
1970 return 0;
1971 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001972 s->authctxt = authctxt;
1973 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001974 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001975 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001976 debug("session_open: session %d: link with channel %d", s->self, chanid);
1977 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001978 return 1;
1979}
1980
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001981Session *
1982session_by_tty(char *tty)
1983{
1984 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001985 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001986 Session *s = &sessions[i];
1987 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1988 debug("session_by_tty: session %d tty %s", i, tty);
1989 return s;
1990 }
1991 }
1992 debug("session_by_tty: unknown tty %.100s", tty);
1993 session_dump();
1994 return NULL;
1995}
1996
Ben Lindstrombba81212001-06-25 05:01:22 +00001997static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001998session_by_channel(int id)
1999{
2000 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002001 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002002 Session *s = &sessions[i];
2003 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10002004 debug("session_by_channel: session %d channel %d",
2005 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002006 return s;
2007 }
2008 }
2009 debug("session_by_channel: unknown channel %d", id);
2010 session_dump();
2011 return NULL;
2012}
2013
Ben Lindstrombba81212001-06-25 05:01:22 +00002014static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10002015session_by_x11_channel(int id)
2016{
2017 int i, j;
2018
Damien Miller7207f642008-05-19 15:34:50 +10002019 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002020 Session *s = &sessions[i];
2021
2022 if (s->x11_chanids == NULL || !s->used)
2023 continue;
2024 for (j = 0; s->x11_chanids[j] != -1; j++) {
2025 if (s->x11_chanids[j] == id) {
2026 debug("session_by_x11_channel: session %d "
2027 "channel %d", s->self, id);
2028 return s;
2029 }
2030 }
2031 }
2032 debug("session_by_x11_channel: unknown channel %d", id);
2033 session_dump();
2034 return NULL;
2035}
2036
2037static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002038session_by_pid(pid_t pid)
2039{
2040 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002041 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002042 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002043 Session *s = &sessions[i];
2044 if (s->used && s->pid == pid)
2045 return s;
2046 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002047 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002048 session_dump();
2049 return NULL;
2050}
2051
Ben Lindstrombba81212001-06-25 05:01:22 +00002052static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002053session_window_change_req(Session *s)
2054{
2055 s->col = packet_get_int();
2056 s->row = packet_get_int();
2057 s->xpixel = packet_get_int();
2058 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002059 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002060 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2061 return 1;
2062}
2063
Ben Lindstrombba81212001-06-25 05:01:22 +00002064static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002065session_pty_req(Session *s)
2066{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002067 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002068 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002069
Damien Miller5ff30c62013-10-30 22:21:50 +11002070 if (no_pty_flag || !options.permit_tty) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002071 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002072 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002073 }
2074 if (s->ttyfd != -1) {
2075 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002076 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002077 }
2078
Damien Millerefb4afe2000-04-12 18:45:05 +10002079 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002080
2081 if (compat20) {
2082 s->col = packet_get_int();
2083 s->row = packet_get_int();
2084 } else {
2085 s->row = packet_get_int();
2086 s->col = packet_get_int();
2087 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002088 s->xpixel = packet_get_int();
2089 s->ypixel = packet_get_int();
2090
2091 if (strcmp(s->term, "") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002092 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002093 s->term = NULL;
2094 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002095
Damien Millerefb4afe2000-04-12 18:45:05 +10002096 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002097 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002098 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2099 sizeof(s->tty)))) {
Darren Tuckera627d422013-06-02 07:31:17 +10002100 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002101 s->term = NULL;
2102 s->ptyfd = -1;
2103 s->ttyfd = -1;
2104 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002105 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002106 }
2107 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002108
2109 /* for SSH1 the tty modes length is not given */
2110 if (!compat20)
2111 n_bytes = packet_remaining();
2112 tty_parse_modes(s->ttyfd, &n_bytes);
2113
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002114 if (!use_privsep)
2115 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002116
2117 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002118 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2119
Damien Miller48b03fc2002-01-22 23:11:40 +11002120 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002121 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002122 return 1;
2123}
2124
Ben Lindstrombba81212001-06-25 05:01:22 +00002125static int
Damien Millerbd483e72000-04-30 10:00:53 +10002126session_subsystem_req(Session *s)
2127{
Damien Millerae452462001-10-10 15:08:06 +10002128 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002129 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002130 int success = 0;
Damien Miller71df7522013-10-15 12:12:02 +11002131 char *prog, *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +10002132 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002133
Damien Miller71df7522013-10-15 12:12:02 +11002134 s->subsys = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002135 packet_check_eom();
Damien Miller71df7522013-10-15 12:12:02 +11002136 debug2("subsystem request for %.100s by user %s", s->subsys,
Damien Miller1b2b61e2010-06-26 09:47:43 +10002137 s->pw->pw_name);
Damien Millerbd483e72000-04-30 10:00:53 +10002138
Damien Millerf6d9e222000-06-18 14:50:44 +10002139 for (i = 0; i < options.num_subsystems; i++) {
Damien Miller71df7522013-10-15 12:12:02 +11002140 if (strcmp(s->subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002141 prog = options.subsystem_command[i];
2142 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002143 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11002144 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002145 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11002146 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002147 if (stat(prog, &st) < 0)
2148 debug("subsystem: cannot stat %s: %s",
2149 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11002150 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002151 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10002152 }
Damien Miller7207f642008-05-19 15:34:50 +10002153 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002154 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002155 }
2156 }
2157
2158 if (!success)
Damien Miller71df7522013-10-15 12:12:02 +11002159 logit("subsystem request for %.100s by user %s failed, "
2160 "subsystem not found", s->subsys, s->pw->pw_name);
Damien Millerf6d9e222000-06-18 14:50:44 +10002161
Damien Millerbd483e72000-04-30 10:00:53 +10002162 return success;
2163}
2164
Ben Lindstrombba81212001-06-25 05:01:22 +00002165static int
Damien Millerbd483e72000-04-30 10:00:53 +10002166session_x11_req(Session *s)
2167{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002168 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002169
Damien Miller2b9b0452005-07-17 17:19:24 +10002170 if (s->auth_proto != NULL || s->auth_data != NULL) {
2171 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002172 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002173 return 0;
2174 }
Damien Millerbd483e72000-04-30 10:00:53 +10002175 s->single_connection = packet_get_char();
2176 s->auth_proto = packet_get_string(NULL);
2177 s->auth_data = packet_get_string(NULL);
2178 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002179 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002180
Ben Lindstrom768176b2001-06-09 01:29:12 +00002181 success = session_setup_x11fwd(s);
2182 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +10002183 free(s->auth_proto);
2184 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002185 s->auth_proto = NULL;
2186 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002187 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002188 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002189}
2190
Ben Lindstrombba81212001-06-25 05:01:22 +00002191static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002192session_shell_req(Session *s)
2193{
Damien Miller48b03fc2002-01-22 23:11:40 +11002194 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002195 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002196}
2197
Ben Lindstrombba81212001-06-25 05:01:22 +00002198static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002199session_exec_req(Session *s)
2200{
Damien Miller7207f642008-05-19 15:34:50 +10002201 u_int len, success;
2202
Damien Millerf6d9e222000-06-18 14:50:44 +10002203 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002204 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002205 success = do_exec(s, command) == 0;
Darren Tuckera627d422013-06-02 07:31:17 +10002206 free(command);
Damien Miller7207f642008-05-19 15:34:50 +10002207 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002208}
2209
Ben Lindstrombba81212001-06-25 05:01:22 +00002210static int
Damien Miller54c45982003-05-15 10:20:13 +10002211session_break_req(Session *s)
2212{
Damien Miller54c45982003-05-15 10:20:13 +10002213
Darren Tucker1f8311c2004-05-13 16:39:33 +10002214 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002215 packet_check_eom();
2216
Darren Tucker9c5d5532011-11-04 10:55:24 +11002217 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002218 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002219 return 1;
2220}
2221
2222static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002223session_env_req(Session *s)
2224{
2225 char *name, *val;
2226 u_int name_len, val_len, i;
2227
2228 name = packet_get_string(&name_len);
2229 val = packet_get_string(&val_len);
2230 packet_check_eom();
2231
2232 /* Don't set too many environment variables */
2233 if (s->num_env > 128) {
2234 debug2("Ignoring env request %s: too many env vars", name);
2235 goto fail;
2236 }
2237
2238 for (i = 0; i < options.num_accept_env; i++) {
2239 if (match_pattern(name, options.accept_env[i])) {
2240 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002241 s->env = xrealloc(s->env, s->num_env + 1,
2242 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002243 s->env[s->num_env].name = name;
2244 s->env[s->num_env].val = val;
2245 s->num_env++;
2246 return (1);
2247 }
2248 }
2249 debug2("Ignoring env request %s: disallowed name", name);
2250
2251 fail:
Darren Tuckera627d422013-06-02 07:31:17 +10002252 free(name);
2253 free(val);
Darren Tucker46bc0752004-05-02 22:11:30 +10002254 return (0);
2255}
2256
2257static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002258session_auth_agent_req(Session *s)
2259{
2260 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002261 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002262 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002263 debug("session_auth_agent_req: no_agent_forwarding_flag");
2264 return 0;
2265 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002266 if (called) {
2267 return 0;
2268 } else {
2269 called = 1;
2270 return auth_input_request_forwarding(s->pw);
2271 }
2272}
2273
Damien Millerc7ef63d2002-02-05 12:21:42 +11002274int
2275session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002276{
Damien Millerefb4afe2000-04-12 18:45:05 +10002277 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002278 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002279
Damien Millerc7ef63d2002-02-05 12:21:42 +11002280 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002281 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002282 c->self, rtype);
2283 return 0;
2284 }
2285 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002286
2287 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002288 * a session is in LARVAL state until a shell, a command
2289 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002290 */
2291 if (c->type == SSH_CHANNEL_LARVAL) {
2292 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002293 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002294 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002295 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002296 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002297 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002298 } else if (strcmp(rtype, "x11-req") == 0) {
2299 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002300 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2301 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002302 } else if (strcmp(rtype, "subsystem") == 0) {
2303 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002304 } else if (strcmp(rtype, "env") == 0) {
2305 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002306 }
2307 }
2308 if (strcmp(rtype, "window-change") == 0) {
2309 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002310 } else if (strcmp(rtype, "break") == 0) {
2311 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002312 }
Damien Millera6b1d162004-06-30 22:41:07 +10002313
Damien Millerc7ef63d2002-02-05 12:21:42 +11002314 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002315}
2316
2317void
Damien Miller8853ca52010-06-26 10:00:14 +10002318session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr,
2319 int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002320{
2321 if (!compat20)
2322 fatal("session_set_fds: called for proto != 2.0");
2323 /*
2324 * now that have a child and a pipe to the child,
2325 * we can activate our channel and register the fd's
2326 */
2327 if (s->chanid == -1)
2328 fatal("no channel for session %d", s->self);
2329 channel_set_fds(s->chanid,
2330 fdout, fdin, fderr,
Damien Miller8853ca52010-06-26 10:00:14 +10002331 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002332 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002333}
2334
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002335/*
2336 * Function to perform pty cleanup. Also called if we get aborted abnormally
2337 * (e.g., due to a dropped connection).
2338 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002339void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002340session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002341{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002342 if (s == NULL) {
2343 error("session_pty_cleanup: no session");
2344 return;
2345 }
2346 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002347 return;
2348
Kevin Steves43cdef32001-02-11 14:12:08 +00002349 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002350
Damien Millerb38eff82000-04-01 11:09:21 +10002351 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002352 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002353 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002354
2355 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002356 if (getuid() == 0)
2357 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002358
2359 /*
2360 * Close the server side of the socket pairs. We must do this after
2361 * the pty cleanup, so that another process doesn't get this pty
2362 * while we're still cleaning up.
2363 */
Damien Miller7207f642008-05-19 15:34:50 +10002364 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2365 error("close(s->ptymaster/%d): %s",
2366 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002367
2368 /* unlink pty from session */
2369 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002370}
Damien Millerefb4afe2000-04-12 18:45:05 +10002371
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002372void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002373session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002374{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002375 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002376}
2377
Damien Miller5a80bba2002-09-04 16:39:02 +10002378static char *
2379sig2name(int sig)
2380{
2381#define SSH_SIG(x) if (sig == SIG ## x) return #x
2382 SSH_SIG(ABRT);
2383 SSH_SIG(ALRM);
2384 SSH_SIG(FPE);
2385 SSH_SIG(HUP);
2386 SSH_SIG(ILL);
2387 SSH_SIG(INT);
2388 SSH_SIG(KILL);
2389 SSH_SIG(PIPE);
2390 SSH_SIG(QUIT);
2391 SSH_SIG(SEGV);
2392 SSH_SIG(TERM);
2393 SSH_SIG(USR1);
2394 SSH_SIG(USR2);
2395#undef SSH_SIG
2396 return "SIG@openssh.com";
2397}
2398
Ben Lindstrombba81212001-06-25 05:01:22 +00002399static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002400session_close_x11(int id)
2401{
2402 Channel *c;
2403
Damien Millerd47c62a2005-12-13 19:33:57 +11002404 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002405 debug("session_close_x11: x11 channel %d missing", id);
2406 } else {
2407 /* Detach X11 listener */
2408 debug("session_close_x11: detach x11 channel %d", id);
2409 channel_cancel_cleanup(id);
2410 if (c->ostate != CHAN_OUTPUT_CLOSED)
2411 chan_mark_dead(c);
2412 }
2413}
2414
2415static void
2416session_close_single_x11(int id, void *arg)
2417{
2418 Session *s;
2419 u_int i;
2420
2421 debug3("session_close_single_x11: channel %d", id);
2422 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002423 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002424 fatal("session_close_single_x11: no x11 channel %d", id);
2425 for (i = 0; s->x11_chanids[i] != -1; i++) {
2426 debug("session_close_single_x11: session %d: "
2427 "closing channel %d", s->self, s->x11_chanids[i]);
2428 /*
2429 * The channel "id" is already closing, but make sure we
2430 * close all of its siblings.
2431 */
2432 if (s->x11_chanids[i] != id)
2433 session_close_x11(s->x11_chanids[i]);
2434 }
Darren Tuckera627d422013-06-02 07:31:17 +10002435 free(s->x11_chanids);
Damien Miller2b9b0452005-07-17 17:19:24 +10002436 s->x11_chanids = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002437 free(s->display);
2438 s->display = NULL;
2439 free(s->auth_proto);
2440 s->auth_proto = NULL;
2441 free(s->auth_data);
2442 s->auth_data = NULL;
2443 free(s->auth_display);
2444 s->auth_display = NULL;
Damien Miller2b9b0452005-07-17 17:19:24 +10002445}
2446
2447static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002448session_exit_message(Session *s, int status)
2449{
2450 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002451
2452 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002453 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002454 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002455 debug("session_exit_message: session %d channel %d pid %ld",
2456 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002457
2458 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002459 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002460 packet_put_int(WEXITSTATUS(status));
2461 packet_send();
2462 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002463 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002464 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002465#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002466 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002467#else /* WCOREDUMP */
2468 packet_put_char(0);
2469#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002470 packet_put_cstring("");
2471 packet_put_cstring("");
2472 packet_send();
2473 } else {
2474 /* Some weird exit cause. Just exit. */
2475 packet_disconnect("wait returned status %04x.", status);
2476 }
2477
2478 /* disconnect channel */
2479 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002480
2481 /*
2482 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002483 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002484 * by session_close_by_channel when the childs close their fds.
2485 */
2486 channel_register_cleanup(c->self, session_close_by_channel, 1);
2487
Damien Miller166fca82000-04-20 07:42:21 +10002488 /*
2489 * emulate a write failure with 'chan_write_failed', nobody will be
2490 * interested in data we write.
2491 * Note that we must not call 'chan_read_failed', since there could
2492 * be some more data waiting in the pipe.
2493 */
Damien Millerbd483e72000-04-30 10:00:53 +10002494 if (c->ostate != CHAN_OUTPUT_CLOSED)
2495 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002496}
2497
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002498void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002499session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002500{
Damien Millereccb9de2005-06-17 12:59:34 +10002501 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002502
Ben Lindstromce0f6342002-06-11 16:42:49 +00002503 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002504 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002505 session_pty_cleanup(s);
Darren Tuckera627d422013-06-02 07:31:17 +10002506 free(s->term);
2507 free(s->display);
2508 free(s->x11_chanids);
2509 free(s->auth_display);
2510 free(s->auth_data);
2511 free(s->auth_proto);
Damien Miller71df7522013-10-15 12:12:02 +11002512 free(s->subsys);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002513 if (s->env != NULL) {
2514 for (i = 0; i < s->num_env; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10002515 free(s->env[i].name);
2516 free(s->env[i].val);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002517 }
Darren Tuckera627d422013-06-02 07:31:17 +10002518 free(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002519 }
Damien Millere247cc42000-05-07 12:03:14 +10002520 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002521 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002522}
2523
2524void
2525session_close_by_pid(pid_t pid, int status)
2526{
2527 Session *s = session_by_pid(pid);
2528 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002529 debug("session_close_by_pid: no session for pid %ld",
2530 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002531 return;
2532 }
2533 if (s->chanid != -1)
2534 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002535 if (s->ttyfd != -1)
2536 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002537 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002538}
2539
2540/*
2541 * this is called when a channel dies before
2542 * the session 'child' itself dies
2543 */
2544void
2545session_close_by_channel(int id, void *arg)
2546{
2547 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002548 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002549
Damien Millerefb4afe2000-04-12 18:45:05 +10002550 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002551 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002552 return;
2553 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002554 debug("session_close_by_channel: channel %d child %ld",
2555 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002556 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002557 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002558 /*
2559 * delay detach of session, but release pty, since
2560 * the fd's to the child are already closed
2561 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002562 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002563 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002564 return;
2565 }
2566 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002567 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002568
2569 /* Close any X11 listeners associated with this session */
2570 if (s->x11_chanids != NULL) {
2571 for (i = 0; s->x11_chanids[i] != -1; i++) {
2572 session_close_x11(s->x11_chanids[i]);
2573 s->x11_chanids[i] = -1;
2574 }
2575 }
2576
Damien Millerefb4afe2000-04-12 18:45:05 +10002577 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002578 session_close(s);
2579}
2580
2581void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002582session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002583{
2584 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002585 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002586 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002587 if (s->used) {
2588 if (closefunc != NULL)
2589 closefunc(s);
2590 else
2591 session_close(s);
2592 }
Damien Miller52b77be2001-10-10 15:14:37 +10002593 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002594}
2595
Ben Lindstrombba81212001-06-25 05:01:22 +00002596static char *
Damien Millere247cc42000-05-07 12:03:14 +10002597session_tty_list(void)
2598{
2599 static char buf[1024];
2600 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002601 char *cp;
2602
Damien Millere247cc42000-05-07 12:03:14 +10002603 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002604 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002605 Session *s = &sessions[i];
2606 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002607
Damien Millera8ed44b2003-01-10 09:53:12 +11002608 if (strncmp(s->tty, "/dev/", 5) != 0) {
2609 cp = strrchr(s->tty, '/');
2610 cp = (cp == NULL) ? s->tty : cp + 1;
2611 } else
2612 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002613
Damien Millere247cc42000-05-07 12:03:14 +10002614 if (buf[0] != '\0')
2615 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002616 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002617 }
2618 }
2619 if (buf[0] == '\0')
2620 strlcpy(buf, "notty", sizeof buf);
2621 return buf;
2622}
2623
2624void
2625session_proctitle(Session *s)
2626{
2627 if (s->pw == NULL)
2628 error("no user for session %d", s->self);
2629 else
2630 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2631}
2632
Ben Lindstrom768176b2001-06-09 01:29:12 +00002633int
2634session_setup_x11fwd(Session *s)
2635{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002636 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002637 char display[512], auth_display[512];
2638 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002639 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002640
2641 if (no_x11_forwarding_flag) {
2642 packet_send_debug("X11 forwarding disabled in user configuration file.");
2643 return 0;
2644 }
2645 if (!options.x11_forwarding) {
2646 debug("X11 forwarding disabled in server configuration file.");
2647 return 0;
2648 }
2649 if (!options.xauth_location ||
2650 (stat(options.xauth_location, &st) == -1)) {
2651 packet_send_debug("No xauth program; cannot forward with spoofing.");
2652 return 0;
2653 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002654 if (options.use_login) {
2655 packet_send_debug("X11 forwarding disabled; "
2656 "not compatible with UseLogin=yes.");
2657 return 0;
2658 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002659 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002660 debug("X11 display already set.");
2661 return 0;
2662 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002663 if (x11_create_display_inet(options.x11_display_offset,
2664 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002665 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002666 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002667 return 0;
2668 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002669 for (i = 0; s->x11_chanids[i] != -1; i++) {
2670 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002671 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002672 }
Kevin Steves366298c2001-12-19 17:58:01 +00002673
2674 /* Set up a suitable value for the DISPLAY variable. */
2675 if (gethostname(hostname, sizeof(hostname)) < 0)
2676 fatal("gethostname: %.100s", strerror(errno));
2677 /*
2678 * auth_display must be used as the displayname when the
2679 * authorization entry is added with xauth(1). This will be
2680 * different than the DISPLAY string for localhost displays.
2681 */
Damien Miller95c249f2002-02-05 12:11:34 +11002682 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002683 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002684 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002685 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002686 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002687 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002688 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002689 } else {
2690#ifdef IPADDR_IN_DISPLAY
2691 struct hostent *he;
2692 struct in_addr my_addr;
2693
2694 he = gethostbyname(hostname);
2695 if (he == NULL) {
2696 error("Can't get IP address for X11 DISPLAY.");
2697 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2698 return 0;
2699 }
2700 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002701 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002702 s->display_number, s->screen);
2703#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002704 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002705 s->display_number, s->screen);
2706#endif
2707 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002708 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002709 }
2710
Ben Lindstrom768176b2001-06-09 01:29:12 +00002711 return 1;
2712}
2713
Ben Lindstrombba81212001-06-25 05:01:22 +00002714static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002715do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002716{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002717 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002718}
2719
2720void
2721do_cleanup(Authctxt *authctxt)
2722{
2723 static int called = 0;
2724
2725 debug("do_cleanup");
2726
2727 /* no cleanup if we're in the child for login shell */
2728 if (is_child)
2729 return;
2730
2731 /* avoid double cleanup */
2732 if (called)
2733 return;
2734 called = 1;
2735
Darren Tucker9142e1c2007-08-16 23:28:04 +10002736 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002737 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002738
2739#ifdef USE_PAM
2740 if (options.use_pam) {
2741 sshpam_cleanup();
2742 sshpam_thread_cleanup();
2743 }
2744#endif
2745
2746 if (!authctxt->authenticated)
2747 return;
2748
Darren Tucker3e33cec2003-10-02 16:12:36 +10002749#ifdef KRB5
2750 if (options.kerberos_ticket_cleanup &&
2751 authctxt->krb5_ctx)
2752 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002753#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002754
2755#ifdef GSSAPI
2756 if (compat20 && options.gss_cleanup_creds)
2757 ssh_gssapi_cleanup_creds();
2758#endif
2759
2760 /* remove agent socket */
2761 auth_sock_cleanup_proc(authctxt->pw);
2762
2763 /*
2764 * Cleanup ptys/utmp only if privsep is disabled,
2765 * or if running in monitor.
2766 */
2767 if (!use_privsep || mm_is_monitor())
2768 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002769}