blob: d4b57bdfbc08b8a975a2543a823506cccc843716 [file] [log] [blame]
Damien Miller85b45e02013-07-20 13:21:52 +10001/* $OpenBSD: session.c,v 1.266 2013/07/19 07:37:48 markus Exp $ */
Damien Millerb38eff82000-04-01 11:09:21 +10002/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 *
Damien Millerefb4afe2000-04-12 18:45:05 +100012 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100034 */
Damien Millerb38eff82000-04-01 11:09:21 +100035
36#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110037
38#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100039#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110040#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100045#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110046
Damien Miller1cdde6f2006-07-24 14:07:35 +100047#include <arpa/inet.h>
48
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien Miller22a29882010-05-10 11:53:54 +100050#include <fcntl.h>
Damien Miller427a1d52006-07-10 20:20:33 +100051#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110052#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110053#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110054#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100055#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110056#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100057#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100061#include <unistd.h>
Damien Millerb38eff82000-04-01 11:09:21 +100062
Damien Millerb84886b2008-05-19 15:05:07 +100063#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100064#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100065#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000066#include "ssh1.h"
67#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000068#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100069#include "packet.h"
70#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100071#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100072#include "uidswap.h"
73#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000074#include "channels.h"
Damien Millerd7834352006-08-05 12:39:39 +100075#include "key.h"
76#include "cipher.h"
77#ifdef GSSAPI
78#include "ssh-gss.h"
79#endif
80#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100081#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100082#include "auth-options.h"
Damien Miller85b45e02013-07-20 13:21:52 +100083#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "pathnames.h"
85#include "log.h"
86#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000087#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "serverloop.h"
89#include "canohost.h"
Damien Millerd8cb1f12008-02-10 22:40:12 +110090#include "misc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000091#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100092#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000093#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110094#include "sftp.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100095
Darren Tucker3c78c5e2004-01-23 22:03:10 +110096#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110097#include <kafs.h>
98#endif
99
Damien Miller14684a12011-05-20 11:23:07 +1000100#ifdef WITH_SELINUX
101#include <selinux/selinux.h>
102#endif
103
Damien Millerad793d52008-11-03 19:17:57 +1100104#define IS_INTERNAL_SFTP(c) \
105 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
106 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
107 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
108 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
109
Damien Millerb38eff82000-04-01 11:09:21 +1000110/* func */
111
112Session *session_new(void);
Damien Miller8853ca52010-06-26 10:00:14 +1000113void session_set_fds(Session *, int, int, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000114void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000115void session_proctitle(Session *);
116int session_setup_x11fwd(Session *);
Damien Miller7207f642008-05-19 15:34:50 +1000117int do_exec_pty(Session *, const char *);
118int do_exec_no_pty(Session *, const char *);
119int do_exec(Session *, const char *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000120void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000121#ifdef LOGIN_NEEDS_UTMPX
122static void do_pre_login(Session *s);
123#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000124void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000125void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000126int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000127
Ben Lindstrombba81212001-06-25 05:01:22 +0000128static void do_authenticated1(Authctxt *);
129static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000130
Ben Lindstrombba81212001-06-25 05:01:22 +0000131static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000132
Damien Millerb38eff82000-04-01 11:09:21 +1000133/* import */
134extern ServerOptions options;
135extern char *__progname;
136extern int log_stderr;
137extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000138extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000139extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000140extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000141extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000142
Damien Miller7b28dc52000-09-05 13:34:53 +1100143/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000144const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100145
Damien Millerb38eff82000-04-01 11:09:21 +1000146/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000147static int sessions_first_unused = -1;
148static int sessions_nalloc = 0;
149static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100150
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100151#define SUBSYSTEM_NONE 0
152#define SUBSYSTEM_EXT 1
153#define SUBSYSTEM_INT_SFTP 2
154#define SUBSYSTEM_INT_SFTP_ERROR 3
Damien Millerdfc24252008-02-10 22:29:40 +1100155
Damien Millerad833b32000-08-23 10:46:23 +1000156#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000157login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000158#endif
159
Darren Tucker3e33cec2003-10-02 16:12:36 +1000160static int is_child = 0;
161
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000162/* Name and directory of socket for authentication agent forwarding. */
163static char *auth_sock_name = NULL;
164static char *auth_sock_dir = NULL;
165
166/* removes the agent forwarding socket */
167
168static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000169auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000170{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000171 if (auth_sock_name != NULL) {
172 temporarily_use_uid(pw);
173 unlink(auth_sock_name);
174 rmdir(auth_sock_dir);
175 auth_sock_name = NULL;
176 restore_uid();
177 }
178}
179
180static int
181auth_input_request_forwarding(struct passwd * pw)
182{
183 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000184 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000185 struct sockaddr_un sunaddr;
186
187 if (auth_sock_name != NULL) {
188 error("authentication forwarding requested twice.");
189 return 0;
190 }
191
192 /* Temporarily drop privileged uid for mkdir/bind. */
193 temporarily_use_uid(pw);
194
195 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000196 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197
198 /* Create private directory for socket */
199 if (mkdtemp(auth_sock_dir) == NULL) {
200 packet_send_debug("Agent forwarding disabled: "
201 "mkdtemp() failed: %.100s", strerror(errno));
202 restore_uid();
Darren Tuckera627d422013-06-02 07:31:17 +1000203 free(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000205 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000206 }
Damien Miller7207f642008-05-19 15:34:50 +1000207
208 xasprintf(&auth_sock_name, "%s/agent.%ld",
209 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000210
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000211 /* Create the socket. */
212 sock = socket(AF_UNIX, SOCK_STREAM, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000213 if (sock < 0) {
214 error("socket: %.100s", strerror(errno));
215 restore_uid();
216 goto authsock_err;
217 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000218
219 /* Bind it to the name. */
220 memset(&sunaddr, 0, sizeof(sunaddr));
221 sunaddr.sun_family = AF_UNIX;
222 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
223
Damien Miller7207f642008-05-19 15:34:50 +1000224 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
225 error("bind: %.100s", strerror(errno));
226 restore_uid();
227 goto authsock_err;
228 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000229
230 /* Restore the privileged uid. */
231 restore_uid();
232
233 /* Start listening on the socket. */
Damien Miller7207f642008-05-19 15:34:50 +1000234 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
235 error("listen: %.100s", strerror(errno));
236 goto authsock_err;
237 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000238
239 /* Allocate a channel for the authentication agent socket. */
240 nc = channel_new("auth socket",
241 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
242 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000243 0, "auth socket", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100244 nc->path = xstrdup(auth_sock_name);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000245 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000246
247 authsock_err:
Darren Tuckera627d422013-06-02 07:31:17 +1000248 free(auth_sock_name);
Damien Miller7207f642008-05-19 15:34:50 +1000249 if (auth_sock_dir != NULL) {
250 rmdir(auth_sock_dir);
Darren Tuckera627d422013-06-02 07:31:17 +1000251 free(auth_sock_dir);
Damien Miller7207f642008-05-19 15:34:50 +1000252 }
253 if (sock != -1)
254 close(sock);
255 auth_sock_name = NULL;
256 auth_sock_dir = NULL;
257 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000258}
259
Darren Tucker1921ed92004-02-10 13:23:28 +1100260static void
261display_loginmsg(void)
262{
Damien Miller46d38de2005-07-17 17:02:09 +1000263 if (buffer_len(&loginmsg) > 0) {
264 buffer_append(&loginmsg, "\0", 1);
265 printf("%s", (char *)buffer_ptr(&loginmsg));
266 buffer_clear(&loginmsg);
267 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100268}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000269
Ben Lindstromb31783d2001-03-22 02:02:12 +0000270void
271do_authenticated(Authctxt *authctxt)
272{
Damien Miller97f39ae2003-02-24 11:57:01 +1100273 setproctitle("%s", authctxt->pw->pw_name);
274
Ben Lindstromb31783d2001-03-22 02:02:12 +0000275 /* setup the channel layer */
Damien Milleraa5b3f82012-12-03 09:50:54 +1100276 if (no_port_forwarding_flag ||
277 (options.allow_tcp_forwarding & FORWARD_LOCAL) == 0)
278 channel_disable_adm_local_opens();
279 else
Ben Lindstromb31783d2001-03-22 02:02:12 +0000280 channel_permit_all_opens();
281
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100282 auth_debug_send();
283
Ben Lindstromb31783d2001-03-22 02:02:12 +0000284 if (compat20)
285 do_authenticated2(authctxt);
286 else
287 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000288
Darren Tucker3e33cec2003-10-02 16:12:36 +1000289 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000290}
291
Damien Millerb38eff82000-04-01 11:09:21 +1000292/*
Damien Millerb38eff82000-04-01 11:09:21 +1000293 * Prepares for an interactive session. This is called after the user has
294 * been successfully authenticated. During this message exchange, pseudo
295 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
296 * are requested, etc.
297 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000299do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000300{
301 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000302 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100303 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000304 int enable_compression_after_reply = 0;
305 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000306
307 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100308 if (s == NULL) {
309 error("no more sessions");
310 return;
311 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000312 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000313 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000314
Damien Millerb38eff82000-04-01 11:09:21 +1000315 /*
316 * We stay in this loop until the client requests to execute a shell
317 * or a command.
318 */
319 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000320 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000321
322 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100323 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000324
325 /* Process the packet. */
326 switch (type) {
327 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000328 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100329 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000330 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000331 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100332 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000333 break;
334 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000335 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000336 debug2("compression disabled");
337 break;
338 }
Damien Millerb38eff82000-04-01 11:09:21 +1000339 /* Enable compression after we have responded with SUCCESS. */
340 enable_compression_after_reply = 1;
341 success = 1;
342 break;
343
344 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000345 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000346 break;
347
348 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000349 s->auth_proto = packet_get_string(&proto_len);
350 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000351
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000352 screen_flag = packet_get_protocol_flags() &
353 SSH_PROTOFLAG_SCREEN_NUMBER;
354 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
355
356 if (packet_remaining() == 4) {
357 if (!screen_flag)
358 debug2("Buggy client: "
359 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000360 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000361 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000362 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000363 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100364 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000365 success = session_setup_x11fwd(s);
366 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000367 free(s->auth_proto);
368 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000369 s->auth_proto = NULL;
370 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000371 }
Damien Millerb38eff82000-04-01 11:09:21 +1000372 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000373
374 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000375 if (!options.allow_agent_forwarding ||
376 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000377 debug("Authentication agent forwarding not permitted for this authentication.");
378 break;
379 }
380 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000381 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000382 break;
383
384 case SSH_CMSG_PORT_FORWARD_REQUEST:
385 if (no_port_forwarding_flag) {
386 debug("Port forwarding not permitted for this authentication.");
387 break;
388 }
Damien Milleraa5b3f82012-12-03 09:50:54 +1100389 if (!(options.allow_tcp_forwarding & FORWARD_REMOTE)) {
Damien Miller50a41ed2000-10-16 12:14:42 +1100390 debug("Port forwarding not permitted.");
391 break;
392 }
Damien Millerb38eff82000-04-01 11:09:21 +1000393 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000394 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
395 options.gateway_ports) < 0) {
396 debug("Port forwarding failed.");
397 break;
398 }
Damien Millerb38eff82000-04-01 11:09:21 +1000399 success = 1;
400 break;
401
402 case SSH_CMSG_MAX_PACKET_SIZE:
403 if (packet_set_maxsize(packet_get_int()) > 0)
404 success = 1;
405 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100406
Damien Millerb38eff82000-04-01 11:09:21 +1000407 case SSH_CMSG_EXEC_SHELL:
408 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000409 if (type == SSH_CMSG_EXEC_CMD) {
410 command = packet_get_string(&dlen);
411 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000412 if (do_exec(s, command) != 0)
413 packet_disconnect(
414 "command execution failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000415 free(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000416 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000417 if (do_exec(s, NULL) != 0)
418 packet_disconnect(
419 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000420 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100421 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000422 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000423 return;
424
425 default:
426 /*
427 * Any unknown messages in this phase are ignored,
428 * and a failure message is returned.
429 */
Damien Miller996acd22003-04-09 20:59:48 +1000430 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000431 }
432 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
433 packet_send();
434 packet_write_wait();
435
436 /* Enable compression now that we have replied if appropriate. */
437 if (enable_compression_after_reply) {
438 enable_compression_after_reply = 0;
439 packet_start_compression(compression_level);
440 }
441 }
442}
443
Damien Miller7207f642008-05-19 15:34:50 +1000444#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000445/*
446 * This is called to fork and execute a command when we have no tty. This
447 * will call do_child from the child, and server_loop from the parent after
448 * setting up file descriptors and such.
449 */
Damien Miller7207f642008-05-19 15:34:50 +1000450int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000451do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000452{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000453 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000454
455#ifdef USE_PIPES
456 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000457
Damien Miller22a29882010-05-10 11:53:54 +1000458 if (s == NULL)
459 fatal("do_exec_no_pty: no session");
460
Damien Millerb38eff82000-04-01 11:09:21 +1000461 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000462 if (pipe(pin) < 0) {
463 error("%s: pipe in: %.100s", __func__, strerror(errno));
464 return -1;
465 }
466 if (pipe(pout) < 0) {
467 error("%s: pipe out: %.100s", __func__, strerror(errno));
468 close(pin[0]);
469 close(pin[1]);
470 return -1;
471 }
Damien Miller8853ca52010-06-26 10:00:14 +1000472 if (pipe(perr) < 0) {
473 error("%s: pipe err: %.100s", __func__,
474 strerror(errno));
475 close(pin[0]);
476 close(pin[1]);
477 close(pout[0]);
478 close(pout[1]);
479 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000480 }
481#else
Damien Millerb38eff82000-04-01 11:09:21 +1000482 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000483
Damien Miller22a29882010-05-10 11:53:54 +1000484 if (s == NULL)
485 fatal("do_exec_no_pty: no session");
486
Damien Millerb38eff82000-04-01 11:09:21 +1000487 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000488 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
489 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
490 return -1;
491 }
Damien Miller8853ca52010-06-26 10:00:14 +1000492 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
493 error("%s: socketpair #2: %.100s", __func__,
494 strerror(errno));
495 close(inout[0]);
496 close(inout[1]);
497 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000498 }
499#endif
500
Damien Millere247cc42000-05-07 12:03:14 +1000501 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000502
Damien Millerb38eff82000-04-01 11:09:21 +1000503 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000504 switch ((pid = fork())) {
505 case -1:
506 error("%s: fork: %.100s", __func__, strerror(errno));
507#ifdef USE_PIPES
508 close(pin[0]);
509 close(pin[1]);
510 close(pout[0]);
511 close(pout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000512 close(perr[0]);
Damien Miller7207f642008-05-19 15:34:50 +1000513 close(perr[1]);
514#else
515 close(inout[0]);
516 close(inout[1]);
517 close(err[0]);
Damien Miller8853ca52010-06-26 10:00:14 +1000518 close(err[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000519#endif
520 return -1;
521 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000522 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000523
Damien Millerb38eff82000-04-01 11:09:21 +1000524 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000525 log_init(__progname, options.log_level,
526 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000527
528 /*
529 * Create a new session and process group since the 4.4BSD
530 * setlogin() affects the entire process group.
531 */
532 if (setsid() < 0)
533 error("setsid failed: %.100s", strerror(errno));
534
535#ifdef USE_PIPES
536 /*
537 * Redirect stdin. We close the parent side of the socket
538 * pair, and make the child side the standard input.
539 */
540 close(pin[1]);
541 if (dup2(pin[0], 0) < 0)
542 perror("dup2 stdin");
543 close(pin[0]);
544
545 /* Redirect stdout. */
546 close(pout[0]);
547 if (dup2(pout[1], 1) < 0)
548 perror("dup2 stdout");
549 close(pout[1]);
550
551 /* Redirect stderr. */
Damien Miller8853ca52010-06-26 10:00:14 +1000552 close(perr[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000553 if (dup2(perr[1], 2) < 0)
554 perror("dup2 stderr");
555 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000556#else
Damien Millerb38eff82000-04-01 11:09:21 +1000557 /*
558 * Redirect stdin, stdout, and stderr. Stdin and stdout will
559 * use the same socket, as some programs (particularly rdist)
560 * seem to depend on it.
561 */
562 close(inout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000563 close(err[1]);
Damien Millerb38eff82000-04-01 11:09:21 +1000564 if (dup2(inout[0], 0) < 0) /* stdin */
565 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000566 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000567 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000568 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000569 if (dup2(err[0], 2) < 0) /* stderr */
570 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000571 close(err[0]);
572#endif
573
Damien Millerb38eff82000-04-01 11:09:21 +1000574
Tim Rice81ed5182002-09-25 17:38:46 -0700575#ifdef _UNICOS
576 cray_init_job(s->pw); /* set up cray jid and tmpdir */
577#endif
578
Damien Millerb38eff82000-04-01 11:09:21 +1000579 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000580 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000581 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000582 default:
583 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000584 }
Damien Miller7207f642008-05-19 15:34:50 +1000585
Tim Rice81ed5182002-09-25 17:38:46 -0700586#ifdef _UNICOS
587 signal(WJSIGNAL, cray_job_termination_handler);
588#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100589#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100590 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100591#endif
Damien Miller7207f642008-05-19 15:34:50 +1000592
Damien Millerb38eff82000-04-01 11:09:21 +1000593 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000594 /* Set interactive/non-interactive mode. */
Damien Miller0dac6fb2010-11-20 15:19:38 +1100595 packet_set_interactive(s->display != NULL,
596 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller7207f642008-05-19 15:34:50 +1000597
598 /*
599 * Clear loginmsg, since it's the child's responsibility to display
600 * it to the user, otherwise multiple sessions may accumulate
601 * multiple copies of the login messages.
602 */
603 buffer_clear(&loginmsg);
604
Damien Millerb38eff82000-04-01 11:09:21 +1000605#ifdef USE_PIPES
606 /* We are the parent. Close the child sides of the pipes. */
607 close(pin[0]);
608 close(pout[1]);
609 close(perr[1]);
610
Damien Millerefb4afe2000-04-12 18:45:05 +1000611 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000612 session_set_fds(s, pin[1], pout[0], perr[0],
613 s->is_subsystem, 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000614 } else {
615 /* Enter the interactive session. */
616 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000617 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000618 }
Damien Miller7207f642008-05-19 15:34:50 +1000619#else
Damien Millerb38eff82000-04-01 11:09:21 +1000620 /* We are the parent. Close the child sides of the socket pairs. */
621 close(inout[0]);
622 close(err[0]);
623
624 /*
625 * Enter the interactive session. Note: server_loop must be able to
626 * handle the case that fdin and fdout are the same.
627 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000628 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000629 session_set_fds(s, inout[1], inout[1], err[1],
630 s->is_subsystem, 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000631 } else {
632 server_loop(pid, inout[1], inout[1], err[1]);
633 /* server_loop has closed inout[1] and err[1]. */
634 }
Damien Miller7207f642008-05-19 15:34:50 +1000635#endif
636 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000637}
638
639/*
640 * This is called to fork and execute a command when we have a tty. This
641 * will call do_child from the child, and server_loop from the parent after
642 * setting up file descriptors, controlling tty, updating wtmp, utmp,
643 * lastlog, and other such operations.
644 */
Damien Miller7207f642008-05-19 15:34:50 +1000645int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000646do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000647{
Damien Millerb38eff82000-04-01 11:09:21 +1000648 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000649 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000650
651 if (s == NULL)
652 fatal("do_exec_pty: no session");
653 ptyfd = s->ptyfd;
654 ttyfd = s->ttyfd;
655
Damien Miller7207f642008-05-19 15:34:50 +1000656 /*
657 * Create another descriptor of the pty master side for use as the
658 * standard input. We could use the original descriptor, but this
659 * simplifies code in server_loop. The descriptor is bidirectional.
660 * Do this before forking (and cleanup in the child) so as to
661 * detect and gracefully fail out-of-fd conditions.
662 */
663 if ((fdout = dup(ptyfd)) < 0) {
664 error("%s: dup #1: %s", __func__, strerror(errno));
665 close(ttyfd);
666 close(ptyfd);
667 return -1;
668 }
669 /* we keep a reference to the pty master */
670 if ((ptymaster = dup(ptyfd)) < 0) {
671 error("%s: dup #2: %s", __func__, strerror(errno));
672 close(ttyfd);
673 close(ptyfd);
674 close(fdout);
675 return -1;
676 }
677
Damien Millerb38eff82000-04-01 11:09:21 +1000678 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000679 switch ((pid = fork())) {
680 case -1:
681 error("%s: fork: %.100s", __func__, strerror(errno));
682 close(fdout);
683 close(ptymaster);
684 close(ttyfd);
685 close(ptyfd);
686 return -1;
687 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000688 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000689
Damien Miller7207f642008-05-19 15:34:50 +1000690 close(fdout);
691 close(ptymaster);
692
Damien Miller942da032000-08-18 13:59:06 +1000693 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000694 log_init(__progname, options.log_level,
695 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000696 /* Close the master side of the pseudo tty. */
697 close(ptyfd);
698
699 /* Make the pseudo tty our controlling tty. */
700 pty_make_controlling_tty(&ttyfd, s->tty);
701
Damien Miller9c751422001-10-10 15:02:46 +1000702 /* Redirect stdin/stdout/stderr from the pseudo tty. */
703 if (dup2(ttyfd, 0) < 0)
704 error("dup2 stdin: %s", strerror(errno));
705 if (dup2(ttyfd, 1) < 0)
706 error("dup2 stdout: %s", strerror(errno));
707 if (dup2(ttyfd, 2) < 0)
708 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000709
710 /* Close the extra descriptor for the pseudo tty. */
711 close(ttyfd);
712
Damien Miller942da032000-08-18 13:59:06 +1000713 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000714#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700715 if (!(options.use_login && command == NULL)) {
716#ifdef _UNICOS
717 cray_init_job(s->pw); /* set up cray jid and tmpdir */
718#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100719 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700720 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000721# ifdef LOGIN_NEEDS_UTMPX
722 else
723 do_pre_login(s);
724# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000725#endif
Damien Miller7207f642008-05-19 15:34:50 +1000726 /*
727 * Do common processing for the child, such as execing
728 * the command.
729 */
Darren Tucker43e7a352009-06-21 19:50:08 +1000730 do_child(s, command);
731 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000732 default:
733 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000734 }
Damien Miller7207f642008-05-19 15:34:50 +1000735
Tim Rice81ed5182002-09-25 17:38:46 -0700736#ifdef _UNICOS
737 signal(WJSIGNAL, cray_job_termination_handler);
738#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100739#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100740 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100741#endif
Damien Miller7207f642008-05-19 15:34:50 +1000742
Damien Millerb38eff82000-04-01 11:09:21 +1000743 s->pid = pid;
744
745 /* Parent. Close the slave side of the pseudo tty. */
746 close(ttyfd);
747
Damien Millerb38eff82000-04-01 11:09:21 +1000748 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000749 s->ptymaster = ptymaster;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100750 packet_set_interactive(1,
751 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Millerefb4afe2000-04-12 18:45:05 +1000752 if (compat20) {
Damien Miller8853ca52010-06-26 10:00:14 +1000753 session_set_fds(s, ptyfd, fdout, -1, 1, 1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000754 } else {
755 server_loop(pid, ptyfd, fdout, -1);
756 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000757 }
Damien Miller7207f642008-05-19 15:34:50 +1000758 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000759}
760
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000761#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000762static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000763do_pre_login(Session *s)
764{
765 socklen_t fromlen;
766 struct sockaddr_storage from;
767 pid_t pid = getpid();
768
769 /*
770 * Get IP address of client. If the connection is not a socket, let
771 * the address be 0.0.0.0.
772 */
773 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000774 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000775 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000776 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100777 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000778 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000779 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000780 }
781 }
782
783 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000784 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000785 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000786}
787#endif
788
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000789/*
790 * This is called to fork and execute a command. If another command is
791 * to be forced, execute that instead.
792 */
Damien Miller7207f642008-05-19 15:34:50 +1000793int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000794do_exec(Session *s, const char *command)
795{
Damien Miller7207f642008-05-19 15:34:50 +1000796 int ret;
797
Damien Millere2754432006-07-24 14:06:47 +1000798 if (options.adm_forced_command) {
799 original_command = command;
800 command = options.adm_forced_command;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100801 if (IS_INTERNAL_SFTP(command)) {
802 s->is_subsystem = s->is_subsystem ?
803 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
804 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100805 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000806 debug("Forced command (config) '%.900s'", command);
807 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000808 original_command = command;
809 command = forced_command;
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 Millere2754432006-07-24 14:06:47 +1000815 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000816 }
817
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100818#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100819 if (command != NULL)
820 PRIVSEP(audit_run_command(command));
821 else if (s->ttyfd == -1) {
822 char *shell = s->pw->pw_shell;
823
824 if (shell[0] == '\0') /* empty shell means /bin/sh */
825 shell =_PATH_BSHELL;
826 PRIVSEP(audit_run_command(shell));
827 }
828#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000829 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000830 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000831 else
Damien Miller7207f642008-05-19 15:34:50 +1000832 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000833
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000834 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000835
Darren Tucker09991742004-07-17 17:05:14 +1000836 /*
837 * Clear loginmsg: it's the child's responsibility to display
838 * it to the user, otherwise multiple sessions may accumulate
839 * multiple copies of the login messages.
840 */
841 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000842
843 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000844}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000845
Damien Miller942da032000-08-18 13:59:06 +1000846/* administrative, login(1)-like work */
847void
Damien Miller69b69aa2000-10-28 14:19:58 +1100848do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000849{
Damien Miller942da032000-08-18 13:59:06 +1000850 socklen_t fromlen;
851 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000852 struct passwd * pw = s->pw;
853 pid_t pid = getpid();
854
855 /*
856 * Get IP address of client. If the connection is not a socket, let
857 * the address be 0.0.0.0.
858 */
859 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000860 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000861 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000862 if (getpeername(packet_get_connection_in(),
Darren Tucker43e7a352009-06-21 19:50:08 +1000863 (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000864 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000865 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000866 }
867 }
868
869 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000870 if (!use_privsep)
871 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
872 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000873 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000874 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000875
Kevin Steves092f2ef2000-10-14 13:36:13 +0000876#ifdef USE_PAM
877 /*
878 * If password change is needed, do it now.
879 * This needs to occur before the ~/.hushlogin check.
880 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100881 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
882 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000883 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100884 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000885 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000886 }
887#endif
888
Damien Millercf205e82001-04-16 18:29:15 +1000889 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000890 return;
891
Darren Tucker1921ed92004-02-10 13:23:28 +1100892 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000893
Damien Millercf205e82001-04-16 18:29:15 +1000894 do_motd();
895}
896
897/*
898 * Display the message of the day.
899 */
900void
901do_motd(void)
902{
903 FILE *f;
904 char buf[256];
905
Damien Miller942da032000-08-18 13:59:06 +1000906 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000907#ifdef HAVE_LOGIN_CAP
908 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
909 "/etc/motd"), "r");
910#else
Damien Miller942da032000-08-18 13:59:06 +1000911 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000912#endif
Damien Miller942da032000-08-18 13:59:06 +1000913 if (f) {
914 while (fgets(buf, sizeof(buf), f))
915 fputs(buf, stdout);
916 fclose(f);
917 }
918 }
919}
920
Kevin Steves8f63caa2001-07-04 18:23:02 +0000921
922/*
923 * Check for quiet login, either .hushlogin or command given.
924 */
925int
926check_quietlogin(Session *s, const char *command)
927{
928 char buf[256];
929 struct passwd *pw = s->pw;
930 struct stat st;
931
932 /* Return 1 if .hushlogin exists or a command given. */
933 if (command != NULL)
934 return 1;
935 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
936#ifdef HAVE_LOGIN_CAP
937 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
938 return 1;
939#else
940 if (stat(buf, &st) >= 0)
941 return 1;
942#endif
943 return 0;
944}
945
Damien Millerb38eff82000-04-01 11:09:21 +1000946/*
947 * Sets the value of the given variable in the environment. If the variable
Darren Tucker63917bd2008-11-11 16:33:48 +1100948 * already exists, its value is overridden.
Damien Millerb38eff82000-04-01 11:09:21 +1000949 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000950void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000951child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100952 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000953{
Damien Millerb38eff82000-04-01 11:09:21 +1000954 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000955 u_int envsize;
956 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000957
958 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000959 * If we're passed an uninitialized list, allocate a single null
960 * entry before continuing.
961 */
962 if (*envp == NULL && *envsizep == 0) {
963 *envp = xmalloc(sizeof(char *));
964 *envp[0] = NULL;
965 *envsizep = 1;
966 }
967
968 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000969 * Find the slot where the value should be stored. If the variable
970 * already exists, we reuse the slot; otherwise we append a new slot
971 * at the end of the array, expanding if necessary.
972 */
973 env = *envp;
974 namelen = strlen(name);
975 for (i = 0; env[i]; i++)
976 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
977 break;
978 if (env[i]) {
979 /* Reuse the slot. */
Darren Tuckera627d422013-06-02 07:31:17 +1000980 free(env[i]);
Damien Millerb38eff82000-04-01 11:09:21 +1000981 } else {
982 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000983 envsize = *envsizep;
984 if (i >= envsize - 1) {
985 if (envsize >= 1000)
986 fatal("child_set_env: too many env vars");
987 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100988 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000989 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000990 }
991 /* Need to set the NULL pointer at end of array beyond the new slot. */
992 env[i + 1] = NULL;
993 }
994
995 /* Allocate space and format the variable in the appropriate slot. */
996 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
997 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
998}
999
1000/*
1001 * Reads environment variables from the given file and adds/overrides them
1002 * into the environment. If the file does not exist, this does nothing.
1003 * Otherwise, it must consist of empty lines, comments (line starts with '#')
1004 * and assignments of the form name=value. No other forms are allowed.
1005 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001006static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001007read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001008 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +10001009{
1010 FILE *f;
1011 char buf[4096];
1012 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +10001013 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001014
1015 f = fopen(filename, "r");
1016 if (!f)
1017 return;
1018
1019 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001020 if (++lineno > 1000)
1021 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001022 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1023 ;
1024 if (!*cp || *cp == '#' || *cp == '\n')
1025 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001026
1027 cp[strcspn(cp, "\n")] = '\0';
1028
Damien Millerb38eff82000-04-01 11:09:21 +10001029 value = strchr(cp, '=');
1030 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001031 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1032 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001033 continue;
1034 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001035 /*
1036 * Replace the equals sign by nul, and advance value to
1037 * the value string.
1038 */
Damien Millerb38eff82000-04-01 11:09:21 +10001039 *value = '\0';
1040 value++;
1041 child_set_env(env, envsize, cp, value);
1042 }
1043 fclose(f);
1044}
1045
Darren Tuckere1a790d2003-09-16 11:52:19 +10001046#ifdef HAVE_ETC_DEFAULT_LOGIN
1047/*
1048 * Return named variable from specified environment, or NULL if not present.
1049 */
1050static char *
1051child_get_env(char **env, const char *name)
1052{
1053 int i;
1054 size_t len;
1055
1056 len = strlen(name);
1057 for (i=0; env[i] != NULL; i++)
1058 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1059 return(env[i] + len + 1);
1060 return NULL;
1061}
1062
1063/*
1064 * Read /etc/default/login.
1065 * We pick up the PATH (or SUPATH for root) and UMASK.
1066 */
1067static void
1068read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1069{
1070 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001071 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001072 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001073
1074 /*
1075 * We don't want to copy the whole file to the child's environment,
1076 * so we use a temporary environment and copy the variables we're
1077 * interested in.
1078 */
1079 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1080
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001081 if (tmpenv == NULL)
1082 return;
1083
Darren Tuckere1a790d2003-09-16 11:52:19 +10001084 if (uid == 0)
1085 var = child_get_env(tmpenv, "SUPATH");
1086 else
1087 var = child_get_env(tmpenv, "PATH");
1088 if (var != NULL)
1089 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001090
Darren Tuckere1a790d2003-09-16 11:52:19 +10001091 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1092 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001093 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001094
Darren Tuckere1a790d2003-09-16 11:52:19 +10001095 for (i = 0; tmpenv[i] != NULL; i++)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001096 free(tmpenv[i]);
1097 free(tmpenv);
Darren Tuckere1a790d2003-09-16 11:52:19 +10001098}
1099#endif /* HAVE_ETC_DEFAULT_LOGIN */
1100
Damien Miller7dff8692005-05-26 11:34:51 +10001101void
1102copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001103{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001104 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001105 int i;
1106
Damien Millerbb9ffc12002-01-08 10:59:32 +11001107 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001108 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001109
Damien Millerbb9ffc12002-01-08 10:59:32 +11001110 for(i = 0; source[i] != NULL; i++) {
1111 var_name = xstrdup(source[i]);
1112 if ((var_val = strstr(var_name, "=")) == NULL) {
Darren Tuckerf60845f2013-06-02 08:07:31 +10001113 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001114 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001115 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001116 *var_val++ = '\0';
1117
1118 debug3("Copy environment: %s=%s", var_name, var_val);
1119 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001120
Darren Tuckerf60845f2013-06-02 08:07:31 +10001121 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001122 }
1123}
Damien Millercb5e44a2000-09-29 12:12:36 +11001124
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001125static char **
1126do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001127{
Damien Millerb38eff82000-04-01 11:09:21 +10001128 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001129 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001130 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001131 struct passwd *pw = s->pw;
Darren Tucker9d86e5d2009-03-08 11:40:27 +11001132#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
Damien Millerad5ecbf2006-07-24 15:03:06 +10001133 char *path = NULL;
1134#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001135
Damien Millerb38eff82000-04-01 11:09:21 +10001136 /* Initialize the environment. */
1137 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001138 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001139 env[0] = NULL;
1140
Damien Millerbac2d8a2000-09-05 16:13:06 +11001141#ifdef HAVE_CYGWIN
1142 /*
1143 * The Windows environment contains some setting which are
1144 * important for a running system. They must not be dropped.
1145 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001146 {
1147 char **p;
1148
1149 p = fetch_windows_environment();
1150 copy_environment(p, &env, &envsize);
1151 free_windows_environment(p);
1152 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001153#endif
1154
Darren Tucker0efd1552003-08-26 11:49:55 +10001155#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001156 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001157 * the childs environment as they see fit
1158 */
1159 ssh_gssapi_do_child(&env, &envsize);
1160#endif
1161
Damien Millerb38eff82000-04-01 11:09:21 +10001162 if (!options.use_login) {
1163 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001164 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001165 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001166 s->env[i].val);
1167
Damien Millerb38eff82000-04-01 11:09:21 +10001168 child_set_env(&env, &envsize, "USER", pw->pw_name);
1169 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001170#ifdef _AIX
1171 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1172#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001173 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001174#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001175 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1176 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1177 else
1178 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001179#else /* HAVE_LOGIN_CAP */
1180# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001181 /*
1182 * There's no standard path on Windows. The path contains
1183 * important components pointing to the system directories,
1184 * needed for loading shared libraries. So the path better
1185 * remains intact here.
1186 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001187# ifdef HAVE_ETC_DEFAULT_LOGIN
1188 read_etc_default_login(&env, &envsize, pw->pw_uid);
1189 path = child_get_env(env, "PATH");
1190# endif /* HAVE_ETC_DEFAULT_LOGIN */
1191 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001192 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001193 s->pw->pw_uid == 0 ?
1194 SUPERUSER_PATH : _PATH_STDPATH);
1195 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001196# endif /* HAVE_CYGWIN */
1197#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001198
1199 snprintf(buf, sizeof buf, "%.200s/%.50s",
1200 _PATH_MAILDIR, pw->pw_name);
1201 child_set_env(&env, &envsize, "MAIL", buf);
1202
1203 /* Normal systems set SHELL by default. */
1204 child_set_env(&env, &envsize, "SHELL", shell);
1205 }
1206 if (getenv("TZ"))
1207 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1208
1209 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001210 if (!options.use_login) {
1211 while (custom_environment) {
1212 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001213 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001214
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001215 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001216 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001217 if (str[i] == '=') {
1218 str[i] = 0;
1219 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001220 }
1221 custom_environment = ce->next;
Darren Tuckera627d422013-06-02 07:31:17 +10001222 free(ce->s);
1223 free(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001224 }
Damien Millerb38eff82000-04-01 11:09:21 +10001225 }
1226
Damien Millerf37e2462002-09-19 11:47:55 +10001227 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001228 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001229 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001230 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1231
Damien Miller00111382003-03-10 11:21:17 +11001232 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001233 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001234 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
Darren Tuckera627d422013-06-02 07:31:17 +10001235 free(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001236 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1237
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001238 if (s->ttyfd != -1)
1239 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1240 if (s->term)
1241 child_set_env(&env, &envsize, "TERM", s->term);
1242 if (s->display)
1243 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001244 if (original_command)
1245 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1246 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001247
Tim Rice81ed5182002-09-25 17:38:46 -07001248#ifdef _UNICOS
1249 if (cray_tmpdir[0] != '\0')
1250 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1251#endif /* _UNICOS */
1252
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001253 /*
1254 * Since we clear KRB5CCNAME at startup, if it's set now then it
1255 * must have been set by a native authentication method (eg AIX or
1256 * SIA), so copy it to the child.
1257 */
1258 {
1259 char *cp;
1260
1261 if ((cp = getenv("KRB5CCNAME")) != NULL)
1262 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1263 }
1264
Damien Millerb38eff82000-04-01 11:09:21 +10001265#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001266 {
1267 char *cp;
1268
1269 if ((cp = getenv("AUTHSTATE")) != NULL)
1270 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001271 read_environment_file(&env, &envsize, "/etc/environment");
1272 }
Damien Millerb38eff82000-04-01 11:09:21 +10001273#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001274#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001275 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001276 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001277 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001278#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001279#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001280 /*
1281 * Pull in any environment variables that may have
1282 * been set by PAM.
1283 */
Damien Miller4e448a32003-05-14 15:11:48 +10001284 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001285 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001286
Damien Millerc756e9b2003-11-17 21:41:42 +11001287 p = fetch_pam_child_environment();
1288 copy_environment(p, &env, &envsize);
1289 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001290
Damien Millerc756e9b2003-11-17 21:41:42 +11001291 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001292 copy_environment(p, &env, &envsize);
1293 free_pam_environment(p);
1294 }
Damien Millerb38eff82000-04-01 11:09:21 +10001295#endif /* USE_PAM */
1296
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001297 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001298 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001299 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001300
1301 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001302 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001303 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001304 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001305 read_environment_file(&env, &envsize, buf);
1306 }
1307 if (debug_flag) {
1308 /* dump the environment */
1309 fprintf(stderr, "Environment:\n");
1310 for (i = 0; env[i]; i++)
1311 fprintf(stderr, " %.200s\n", env[i]);
1312 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001313 return env;
1314}
1315
1316/*
1317 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1318 * first in this order).
1319 */
1320static void
1321do_rc_files(Session *s, const char *shell)
1322{
1323 FILE *f = NULL;
1324 char cmd[1024];
1325 int do_xauth;
1326 struct stat st;
1327
1328 do_xauth =
1329 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1330
Damien Millera1b48cc2008-03-27 11:02:02 +11001331 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001332 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001333 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001334 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1335 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1336 if (debug_flag)
1337 fprintf(stderr, "Running %s\n", cmd);
1338 f = popen(cmd, "w");
1339 if (f) {
1340 if (do_xauth)
1341 fprintf(f, "%s %s\n", s->auth_proto,
1342 s->auth_data);
1343 pclose(f);
1344 } else
1345 fprintf(stderr, "Could not run %s\n",
1346 _PATH_SSH_USER_RC);
1347 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1348 if (debug_flag)
1349 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1350 _PATH_SSH_SYSTEM_RC);
1351 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1352 if (f) {
1353 if (do_xauth)
1354 fprintf(f, "%s %s\n", s->auth_proto,
1355 s->auth_data);
1356 pclose(f);
1357 } else
1358 fprintf(stderr, "Could not run %s\n",
1359 _PATH_SSH_SYSTEM_RC);
1360 } else if (do_xauth && options.xauth_location != NULL) {
1361 /* Add authority data to .Xauthority if appropriate. */
1362 if (debug_flag) {
1363 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001364 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001365 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001366 fprintf(stderr,
1367 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001368 options.xauth_location, s->auth_display,
1369 s->auth_proto, s->auth_data);
1370 }
1371 snprintf(cmd, sizeof cmd, "%s -q -",
1372 options.xauth_location);
1373 f = popen(cmd, "w");
1374 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001375 fprintf(f, "remove %s\n",
1376 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001377 fprintf(f, "add %s %s %s\n",
1378 s->auth_display, s->auth_proto,
1379 s->auth_data);
1380 pclose(f);
1381 } else {
1382 fprintf(stderr, "Could not run %s\n",
1383 cmd);
1384 }
1385 }
1386}
1387
1388static void
1389do_nologin(struct passwd *pw)
1390{
1391 FILE *f = NULL;
Darren Tucker09aa4c02010-01-12 19:51:48 +11001392 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1393 struct stat sb;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001394
1395#ifdef HAVE_LOGIN_CAP
Damien Miller29cd1882012-04-22 11:08:10 +10001396 if (login_getcapbool(lc, "ignorenologin", 0) || pw->pw_uid == 0)
Darren Tucker09aa4c02010-01-12 19:51:48 +11001397 return;
1398 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001399#else
Darren Tucker09aa4c02010-01-12 19:51:48 +11001400 if (pw->pw_uid == 0)
1401 return;
1402 nl = def_nl;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001403#endif
Darren Tucker09aa4c02010-01-12 19:51:48 +11001404 if (stat(nl, &sb) == -1) {
1405 if (nl != def_nl)
Darren Tuckera627d422013-06-02 07:31:17 +10001406 free(nl);
Darren Tucker09aa4c02010-01-12 19:51:48 +11001407 return;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001408 }
Darren Tucker09aa4c02010-01-12 19:51:48 +11001409
1410 /* /etc/nologin exists. Print its contents if we can and exit. */
1411 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1412 if ((f = fopen(nl, "r")) != NULL) {
1413 while (fgets(buf, sizeof(buf), f))
1414 fputs(buf, stderr);
1415 fclose(f);
1416 }
1417 exit(254);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001418}
1419
Damien Millerd8cb1f12008-02-10 22:40:12 +11001420/*
1421 * Chroot into a directory after checking it for safety: all path components
1422 * must be root-owned directories with strict permissions.
1423 */
1424static void
1425safely_chroot(const char *path, uid_t uid)
1426{
1427 const char *cp;
1428 char component[MAXPATHLEN];
1429 struct stat st;
1430
1431 if (*path != '/')
1432 fatal("chroot path does not begin at root");
1433 if (strlen(path) >= sizeof(component))
1434 fatal("chroot path too long");
1435
1436 /*
1437 * Descend the path, checking that each component is a
1438 * root-owned directory with strict permissions.
1439 */
1440 for (cp = path; cp != NULL;) {
1441 if ((cp = strchr(cp, '/')) == NULL)
1442 strlcpy(component, path, sizeof(component));
1443 else {
1444 cp++;
1445 memcpy(component, path, cp - path);
1446 component[cp - path] = '\0';
1447 }
1448
1449 debug3("%s: checking '%s'", __func__, component);
1450
1451 if (stat(component, &st) != 0)
1452 fatal("%s: stat(\"%s\"): %s", __func__,
1453 component, strerror(errno));
1454 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1455 fatal("bad ownership or modes for chroot "
1456 "directory %s\"%s\"",
1457 cp == NULL ? "" : "component ", component);
1458 if (!S_ISDIR(st.st_mode))
1459 fatal("chroot path %s\"%s\" is not a directory",
1460 cp == NULL ? "" : "component ", component);
1461
1462 }
1463
1464 if (chdir(path) == -1)
1465 fatal("Unable to chdir to chroot path \"%s\": "
1466 "%s", path, strerror(errno));
1467 if (chroot(path) == -1)
1468 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1469 if (chdir("/") == -1)
1470 fatal("%s: chdir(/) after chroot: %s",
1471 __func__, strerror(errno));
1472 verbose("Changed root directory to \"%s\"", path);
1473}
1474
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001475/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001476void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001477do_setusercontext(struct passwd *pw)
1478{
Damien Miller54e37732008-02-10 22:48:55 +11001479 char *chroot_path, *tmp;
1480
Darren Tucker97528352010-11-05 12:03:05 +11001481 platform_setusercontext(pw);
1482
Darren Tuckerb12fe272010-11-05 14:47:01 +11001483 if (platform_privileged_uidswap()) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001484#ifdef HAVE_LOGIN_CAP
1485 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001486 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001487 perror("unable to set user context");
1488 exit(1);
1489 }
1490#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001491 if (setlogin(pw->pw_name) < 0)
1492 error("setlogin failed: %s", strerror(errno));
1493 if (setgid(pw->pw_gid) < 0) {
1494 perror("setgid");
1495 exit(1);
1496 }
1497 /* Initialize the group list. */
1498 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1499 perror("initgroups");
1500 exit(1);
1501 }
1502 endgrent();
Damien Millerd8cb1f12008-02-10 22:40:12 +11001503#endif
1504
Darren Tucker920612e2010-11-05 12:36:15 +11001505 platform_setusercontext_post_groups(pw);
Damien Miller8b906422010-03-26 11:04:09 +11001506
Damien Millerd8cb1f12008-02-10 22:40:12 +11001507 if (options.chroot_directory != NULL &&
1508 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001509 tmp = tilde_expand_filename(options.chroot_directory,
1510 pw->pw_uid);
1511 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1512 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001513 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001514 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001515 free(chroot_path);
Damien Millera56086b2013-04-23 15:24:18 +10001516 /* Make sure we don't attempt to chroot again */
1517 free(options.chroot_directory);
1518 options.chroot_directory = NULL;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001519 }
1520
1521#ifdef HAVE_LOGIN_CAP
1522 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1523 perror("unable to set user context (setuser)");
1524 exit(1);
1525 }
Damien Miller58528402013-03-15 11:22:37 +11001526 /*
1527 * FreeBSD's setusercontext() will not apply the user's
1528 * own umask setting unless running with the user's UID.
1529 */
1530 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001531#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001532 /* Permanently switch to the desired uid. */
1533 permanently_set_uid(pw);
1534#endif
Damien Millera56086b2013-04-23 15:24:18 +10001535 } else if (options.chroot_directory != NULL &&
1536 strcasecmp(options.chroot_directory, "none") != 0) {
1537 fatal("server lacks privileges to chroot to ChrootDirectory");
Damien Millerf1a02ae2013-04-23 15:22:13 +10001538 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001539
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001540 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1541 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1542}
1543
Ben Lindstrom08105192002-03-22 02:50:06 +00001544static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001545do_pwchange(Session *s)
1546{
Darren Tucker09991742004-07-17 17:05:14 +10001547 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001548 fprintf(stderr, "WARNING: Your password has expired.\n");
1549 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001550 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001551 "You must change your password now and login again!\n");
Damien Miller14684a12011-05-20 11:23:07 +10001552#ifdef WITH_SELINUX
1553 setexeccon(NULL);
1554#endif
Darren Tucker33370e02005-02-09 22:17:28 +11001555#ifdef PASSWD_NEEDS_USERNAME
1556 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1557 (char *)NULL);
1558#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001559 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001560#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001561 perror("passwd");
1562 } else {
1563 fprintf(stderr,
1564 "Password change required but no TTY available.\n");
1565 }
1566 exit(1);
1567}
1568
1569static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001570launch_login(struct passwd *pw, const char *hostname)
1571{
1572 /* Launch login(1). */
1573
Ben Lindstrom378a4172002-06-07 14:49:56 +00001574 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001575#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001576 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001577#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001578#ifdef LOGIN_NO_ENDOPT
1579 "-p", "-f", pw->pw_name, (char *)NULL);
1580#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001581 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001582#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001583
1584 /* Login couldn't be executed, die. */
1585
1586 perror("login");
1587 exit(1);
1588}
1589
Darren Tucker23bc8d02004-02-06 16:24:31 +11001590static void
1591child_close_fds(void)
1592{
Damien Miller85b45e02013-07-20 13:21:52 +10001593 extern AuthenticationConnection *auth_conn;
1594
1595 if (auth_conn) {
1596 ssh_close_authentication_connection(auth_conn);
1597 auth_conn = NULL;
1598 }
1599
Darren Tucker23bc8d02004-02-06 16:24:31 +11001600 if (packet_get_connection_in() == packet_get_connection_out())
1601 close(packet_get_connection_in());
1602 else {
1603 close(packet_get_connection_in());
1604 close(packet_get_connection_out());
1605 }
1606 /*
1607 * Close all descriptors related to channels. They will still remain
1608 * open in the parent.
1609 */
1610 /* XXX better use close-on-exec? -markus */
1611 channel_close_all();
1612
1613 /*
1614 * Close any extra file descriptors. Note that there may still be
1615 * descriptors left by system functions. They will be closed later.
1616 */
1617 endpwent();
1618
1619 /*
Damien Miller788f2122005-11-05 15:14:59 +11001620 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001621 * hanging around in clients. Note that we want to do this after
1622 * initgroups, because at least on Solaris 2.3 it leaves file
1623 * descriptors open.
1624 */
Damien Millerf80c3de2010-12-01 12:02:59 +11001625 closefrom(STDERR_FILENO + 1);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001626}
1627
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001628/*
1629 * Performs common processing for the child, such as setting up the
1630 * environment, closing extra file descriptors, setting the user and group
1631 * ids, and executing the command or shell.
1632 */
Damien Millerdfc24252008-02-10 22:29:40 +11001633#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001634void
1635do_child(Session *s, const char *command)
1636{
1637 extern char **environ;
1638 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001639 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001640 const char *shell, *shell0, *hostname = NULL;
1641 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001642 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001643
1644 /* remove hostkey from the child's memory */
1645 destroy_sensitive_data();
1646
Darren Tucker23bc8d02004-02-06 16:24:31 +11001647 /* Force a password change */
1648 if (s->authctxt->force_pwchange) {
1649 do_setusercontext(pw);
1650 child_close_fds();
1651 do_pwchange(s);
1652 exit(1);
1653 }
1654
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001655 /* login(1) is only called if we execute the login shell */
1656 if (options.use_login && command != NULL)
1657 options.use_login = 0;
1658
Tim Rice81ed5182002-09-25 17:38:46 -07001659#ifdef _UNICOS
1660 cray_setup(pw->pw_uid, pw->pw_name, command);
1661#endif /* _UNICOS */
1662
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001663 /*
1664 * Login(1) does this as well, and it needs uid 0 for the "-h"
1665 * switch, so we let login(1) to this for us.
1666 */
1667 if (!options.use_login) {
1668#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001669 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001670 if (!check_quietlogin(s, command))
1671 do_motd();
1672#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001673 /* When PAM is enabled we rely on it to do the nologin check */
1674 if (!options.use_pam)
1675 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001676 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001677 /*
1678 * PAM session modules in do_setusercontext may have
1679 * generated messages, so if this in an interactive
1680 * login then display them too.
1681 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001682 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001683 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001684#endif /* HAVE_OSF_SIA */
1685 }
1686
Darren Tucker69687f42004-09-11 22:17:26 +10001687#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001688 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1689 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001690 display_loginmsg();
1691 exit(254);
1692 }
1693#endif
1694
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001695 /*
1696 * Get the shell from the password data. An empty shell field is
1697 * legal, and means /bin/sh.
1698 */
1699 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001700
1701 /*
1702 * Make sure $SHELL points to the shell from the password file,
1703 * even if shell is overridden from login.conf
1704 */
1705 env = do_setup_env(s, shell);
1706
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001707#ifdef HAVE_LOGIN_CAP
1708 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1709#endif
1710
Damien Millerad833b32000-08-23 10:46:23 +10001711 /* we have to stash the hostname before we close our socket. */
1712 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001713 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001714 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001715 /*
1716 * Close the connection descriptors; note that this is the child, and
1717 * the server will still have the socket open, and it is important
1718 * that we do not shutdown it. Note that the descriptors cannot be
1719 * closed before building the environment, as we call
1720 * get_remote_ipaddr there.
1721 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001722 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001723
Damien Millerb38eff82000-04-01 11:09:21 +10001724 /*
Damien Miller05eda432002-02-10 18:32:28 +11001725 * Must take new environment into use so that .ssh/rc,
1726 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001727 */
1728 environ = env;
1729
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001730#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001731 /*
1732 * At this point, we check to see if AFS is active and if we have
1733 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1734 * if we can (and need to) extend the ticket into an AFS token. If
1735 * we don't do this, we run into potential problems if the user's
1736 * home directory is in AFS and it's not world-readable.
1737 */
1738
1739 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001740 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001741 char cell[64];
1742
1743 debug("Getting AFS token");
1744
1745 k_setpag();
1746
1747 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1748 krb5_afslog(s->authctxt->krb5_ctx,
1749 s->authctxt->krb5_fwd_ccache, cell, NULL);
1750
1751 krb5_afslog_home(s->authctxt->krb5_ctx,
1752 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1753 }
1754#endif
1755
Damien Miller788f2122005-11-05 15:14:59 +11001756 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001757 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001758 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001759#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001760 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001761#endif
Damien Miller7aa46ec2010-06-26 09:37:57 +10001762 if (r || options.chroot_directory == NULL ||
1763 strcasecmp(options.chroot_directory, "none") == 0)
Damien Miller6051c942008-06-16 07:53:16 +10001764 fprintf(stderr, "Could not chdir to home "
1765 "directory %s: %s\n", pw->pw_dir,
1766 strerror(errno));
1767 if (r)
1768 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001769 }
1770
Damien Millera1939002008-03-15 17:27:58 +11001771 closefrom(STDERR_FILENO + 1);
1772
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001773 if (!options.use_login)
1774 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001775
1776 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001777 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001778
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001779 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1780 printf("This service allows sftp connections only.\n");
1781 fflush(NULL);
1782 exit(1);
1783 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001784 extern int optind, optreset;
1785 int i;
1786 char *p, *args;
1787
Darren Tuckerac46a912009-06-21 17:55:23 +10001788 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001789 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001790 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1791 if (i < ARGV_MAX - 1)
1792 argv[i++] = p;
1793 argv[i] = NULL;
1794 optind = optreset = 1;
1795 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001796#ifdef WITH_SELINUX
1797 ssh_selinux_change_context("sftpd_t");
1798#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001799 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001800 }
1801
Darren Tucker695ed392009-10-07 09:02:18 +11001802 fflush(NULL);
1803
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001804 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001805 launch_login(pw, hostname);
1806 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001807 }
1808
1809 /* Get the last component of the shell name. */
1810 if ((shell0 = strrchr(shell, '/')) != NULL)
1811 shell0++;
1812 else
1813 shell0 = shell;
1814
Damien Millerb38eff82000-04-01 11:09:21 +10001815 /*
1816 * If we have no command, execute the shell. In this case, the shell
1817 * name to be passed in argv[0] is preceded by '-' to indicate that
1818 * this is a login shell.
1819 */
1820 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001821 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001822
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001823 /* Start the shell. Set initial character to '-'. */
1824 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001825
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001826 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1827 >= sizeof(argv0) - 1) {
1828 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001829 perror(shell);
1830 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001831 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001832
1833 /* Execute the shell. */
1834 argv[0] = argv0;
1835 argv[1] = NULL;
1836 execve(shell, argv, env);
1837
1838 /* Executing the shell failed. */
1839 perror(shell);
1840 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001841 }
1842 /*
1843 * Execute the command using the user's shell. This uses the -c
1844 * option to execute the command.
1845 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001846 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001847 argv[1] = "-c";
1848 argv[2] = (char *) command;
1849 argv[3] = NULL;
1850 execve(shell, argv, env);
1851 perror(shell);
1852 exit(1);
1853}
1854
Damien Miller7207f642008-05-19 15:34:50 +10001855void
1856session_unused(int id)
1857{
1858 debug3("%s: session id %d unused", __func__, id);
1859 if (id >= options.max_sessions ||
1860 id >= sessions_nalloc) {
1861 fatal("%s: insane session id %d (max %d nalloc %d)",
1862 __func__, id, options.max_sessions, sessions_nalloc);
1863 }
1864 bzero(&sessions[id], sizeof(*sessions));
1865 sessions[id].self = id;
1866 sessions[id].used = 0;
1867 sessions[id].chanid = -1;
1868 sessions[id].ptyfd = -1;
1869 sessions[id].ttyfd = -1;
1870 sessions[id].ptymaster = -1;
1871 sessions[id].x11_chanids = NULL;
1872 sessions[id].next_unused = sessions_first_unused;
1873 sessions_first_unused = id;
1874}
1875
Damien Millerb38eff82000-04-01 11:09:21 +10001876Session *
1877session_new(void)
1878{
Damien Miller7207f642008-05-19 15:34:50 +10001879 Session *s, *tmp;
1880
1881 if (sessions_first_unused == -1) {
1882 if (sessions_nalloc >= options.max_sessions)
1883 return NULL;
1884 debug2("%s: allocate (allocated %d max %d)",
1885 __func__, sessions_nalloc, options.max_sessions);
1886 tmp = xrealloc(sessions, sessions_nalloc + 1,
1887 sizeof(*sessions));
1888 if (tmp == NULL) {
1889 error("%s: cannot allocate %d sessions",
1890 __func__, sessions_nalloc + 1);
1891 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001892 }
Damien Miller7207f642008-05-19 15:34:50 +10001893 sessions = tmp;
1894 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001895 }
Damien Miller7207f642008-05-19 15:34:50 +10001896
1897 if (sessions_first_unused >= sessions_nalloc ||
1898 sessions_first_unused < 0) {
1899 fatal("%s: insane first_unused %d max %d nalloc %d",
1900 __func__, sessions_first_unused, options.max_sessions,
1901 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001902 }
Damien Miller7207f642008-05-19 15:34:50 +10001903
1904 s = &sessions[sessions_first_unused];
1905 if (s->used) {
1906 fatal("%s: session %d already used",
1907 __func__, sessions_first_unused);
1908 }
1909 sessions_first_unused = s->next_unused;
1910 s->used = 1;
1911 s->next_unused = -1;
1912 debug("session_new: session %d", s->self);
1913
1914 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001915}
1916
Ben Lindstrombba81212001-06-25 05:01:22 +00001917static void
Damien Millerb38eff82000-04-01 11:09:21 +10001918session_dump(void)
1919{
1920 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001921 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001922 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001923
1924 debug("dump: used %d next_unused %d session %d %p "
1925 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001926 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001927 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001928 s->self,
1929 s,
1930 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001931 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001932 }
1933}
1934
Damien Millerefb4afe2000-04-12 18:45:05 +10001935int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001936session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001937{
1938 Session *s = session_new();
1939 debug("session_open: channel %d", chanid);
1940 if (s == NULL) {
1941 error("no more sessions");
1942 return 0;
1943 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001944 s->authctxt = authctxt;
1945 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001946 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001947 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001948 debug("session_open: session %d: link with channel %d", s->self, chanid);
1949 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001950 return 1;
1951}
1952
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001953Session *
1954session_by_tty(char *tty)
1955{
1956 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001957 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001958 Session *s = &sessions[i];
1959 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1960 debug("session_by_tty: session %d tty %s", i, tty);
1961 return s;
1962 }
1963 }
1964 debug("session_by_tty: unknown tty %.100s", tty);
1965 session_dump();
1966 return NULL;
1967}
1968
Ben Lindstrombba81212001-06-25 05:01:22 +00001969static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001970session_by_channel(int id)
1971{
1972 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001973 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001974 Session *s = &sessions[i];
1975 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001976 debug("session_by_channel: session %d channel %d",
1977 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001978 return s;
1979 }
1980 }
1981 debug("session_by_channel: unknown channel %d", id);
1982 session_dump();
1983 return NULL;
1984}
1985
Ben Lindstrombba81212001-06-25 05:01:22 +00001986static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001987session_by_x11_channel(int id)
1988{
1989 int i, j;
1990
Damien Miller7207f642008-05-19 15:34:50 +10001991 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10001992 Session *s = &sessions[i];
1993
1994 if (s->x11_chanids == NULL || !s->used)
1995 continue;
1996 for (j = 0; s->x11_chanids[j] != -1; j++) {
1997 if (s->x11_chanids[j] == id) {
1998 debug("session_by_x11_channel: session %d "
1999 "channel %d", s->self, id);
2000 return s;
2001 }
2002 }
2003 }
2004 debug("session_by_x11_channel: unknown channel %d", id);
2005 session_dump();
2006 return NULL;
2007}
2008
2009static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002010session_by_pid(pid_t pid)
2011{
2012 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002013 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002014 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002015 Session *s = &sessions[i];
2016 if (s->used && s->pid == pid)
2017 return s;
2018 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002019 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002020 session_dump();
2021 return NULL;
2022}
2023
Ben Lindstrombba81212001-06-25 05:01:22 +00002024static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002025session_window_change_req(Session *s)
2026{
2027 s->col = packet_get_int();
2028 s->row = packet_get_int();
2029 s->xpixel = packet_get_int();
2030 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002031 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002032 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2033 return 1;
2034}
2035
Ben Lindstrombba81212001-06-25 05:01:22 +00002036static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002037session_pty_req(Session *s)
2038{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002039 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002040 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002041
Ben Lindstrom49c12602001-06-13 04:37:36 +00002042 if (no_pty_flag) {
2043 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002044 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002045 }
2046 if (s->ttyfd != -1) {
2047 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002048 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002049 }
2050
Damien Millerefb4afe2000-04-12 18:45:05 +10002051 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002052
2053 if (compat20) {
2054 s->col = packet_get_int();
2055 s->row = packet_get_int();
2056 } else {
2057 s->row = packet_get_int();
2058 s->col = packet_get_int();
2059 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002060 s->xpixel = packet_get_int();
2061 s->ypixel = packet_get_int();
2062
2063 if (strcmp(s->term, "") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002064 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002065 s->term = NULL;
2066 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002067
Damien Millerefb4afe2000-04-12 18:45:05 +10002068 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002069 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002070 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2071 sizeof(s->tty)))) {
Darren Tuckera627d422013-06-02 07:31:17 +10002072 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002073 s->term = NULL;
2074 s->ptyfd = -1;
2075 s->ttyfd = -1;
2076 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002077 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002078 }
2079 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002080
2081 /* for SSH1 the tty modes length is not given */
2082 if (!compat20)
2083 n_bytes = packet_remaining();
2084 tty_parse_modes(s->ttyfd, &n_bytes);
2085
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002086 if (!use_privsep)
2087 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002088
2089 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002090 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2091
Damien Miller48b03fc2002-01-22 23:11:40 +11002092 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002093 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002094 return 1;
2095}
2096
Ben Lindstrombba81212001-06-25 05:01:22 +00002097static int
Damien Millerbd483e72000-04-30 10:00:53 +10002098session_subsystem_req(Session *s)
2099{
Damien Millerae452462001-10-10 15:08:06 +10002100 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002101 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002102 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10002103 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10002104 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002105
Damien Miller48b03fc2002-01-22 23:11:40 +11002106 packet_check_eom();
Damien Miller1b2b61e2010-06-26 09:47:43 +10002107 logit("subsystem request for %.100s by user %s", subsys,
2108 s->pw->pw_name);
Damien Millerbd483e72000-04-30 10:00:53 +10002109
Damien Millerf6d9e222000-06-18 14:50:44 +10002110 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10002111 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002112 prog = options.subsystem_command[i];
2113 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002114 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11002115 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002116 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11002117 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002118 if (stat(prog, &st) < 0)
2119 debug("subsystem: cannot stat %s: %s",
2120 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11002121 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002122 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10002123 }
Damien Miller7207f642008-05-19 15:34:50 +10002124 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002125 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002126 }
2127 }
2128
2129 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002130 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002131 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002132
Darren Tuckera627d422013-06-02 07:31:17 +10002133 free(subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10002134 return success;
2135}
2136
Ben Lindstrombba81212001-06-25 05:01:22 +00002137static int
Damien Millerbd483e72000-04-30 10:00:53 +10002138session_x11_req(Session *s)
2139{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002140 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002141
Damien Miller2b9b0452005-07-17 17:19:24 +10002142 if (s->auth_proto != NULL || s->auth_data != NULL) {
2143 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002144 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002145 return 0;
2146 }
Damien Millerbd483e72000-04-30 10:00:53 +10002147 s->single_connection = packet_get_char();
2148 s->auth_proto = packet_get_string(NULL);
2149 s->auth_data = packet_get_string(NULL);
2150 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002151 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002152
Ben Lindstrom768176b2001-06-09 01:29:12 +00002153 success = session_setup_x11fwd(s);
2154 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +10002155 free(s->auth_proto);
2156 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002157 s->auth_proto = NULL;
2158 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002159 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002160 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002161}
2162
Ben Lindstrombba81212001-06-25 05:01:22 +00002163static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002164session_shell_req(Session *s)
2165{
Damien Miller48b03fc2002-01-22 23:11:40 +11002166 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002167 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002168}
2169
Ben Lindstrombba81212001-06-25 05:01:22 +00002170static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002171session_exec_req(Session *s)
2172{
Damien Miller7207f642008-05-19 15:34:50 +10002173 u_int len, success;
2174
Damien Millerf6d9e222000-06-18 14:50:44 +10002175 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002176 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002177 success = do_exec(s, command) == 0;
Darren Tuckera627d422013-06-02 07:31:17 +10002178 free(command);
Damien Miller7207f642008-05-19 15:34:50 +10002179 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002180}
2181
Ben Lindstrombba81212001-06-25 05:01:22 +00002182static int
Damien Miller54c45982003-05-15 10:20:13 +10002183session_break_req(Session *s)
2184{
Damien Miller54c45982003-05-15 10:20:13 +10002185
Darren Tucker1f8311c2004-05-13 16:39:33 +10002186 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002187 packet_check_eom();
2188
Darren Tucker9c5d5532011-11-04 10:55:24 +11002189 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002190 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002191 return 1;
2192}
2193
2194static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002195session_env_req(Session *s)
2196{
2197 char *name, *val;
2198 u_int name_len, val_len, i;
2199
2200 name = packet_get_string(&name_len);
2201 val = packet_get_string(&val_len);
2202 packet_check_eom();
2203
2204 /* Don't set too many environment variables */
2205 if (s->num_env > 128) {
2206 debug2("Ignoring env request %s: too many env vars", name);
2207 goto fail;
2208 }
2209
2210 for (i = 0; i < options.num_accept_env; i++) {
2211 if (match_pattern(name, options.accept_env[i])) {
2212 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002213 s->env = xrealloc(s->env, s->num_env + 1,
2214 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002215 s->env[s->num_env].name = name;
2216 s->env[s->num_env].val = val;
2217 s->num_env++;
2218 return (1);
2219 }
2220 }
2221 debug2("Ignoring env request %s: disallowed name", name);
2222
2223 fail:
Darren Tuckera627d422013-06-02 07:31:17 +10002224 free(name);
2225 free(val);
Darren Tucker46bc0752004-05-02 22:11:30 +10002226 return (0);
2227}
2228
2229static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002230session_auth_agent_req(Session *s)
2231{
2232 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002233 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002234 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002235 debug("session_auth_agent_req: no_agent_forwarding_flag");
2236 return 0;
2237 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002238 if (called) {
2239 return 0;
2240 } else {
2241 called = 1;
2242 return auth_input_request_forwarding(s->pw);
2243 }
2244}
2245
Damien Millerc7ef63d2002-02-05 12:21:42 +11002246int
2247session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002248{
Damien Millerefb4afe2000-04-12 18:45:05 +10002249 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002250 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002251
Damien Millerc7ef63d2002-02-05 12:21:42 +11002252 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002253 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002254 c->self, rtype);
2255 return 0;
2256 }
2257 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002258
2259 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002260 * a session is in LARVAL state until a shell, a command
2261 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002262 */
2263 if (c->type == SSH_CHANNEL_LARVAL) {
2264 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002265 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002266 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002267 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002268 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002269 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002270 } else if (strcmp(rtype, "x11-req") == 0) {
2271 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002272 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2273 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002274 } else if (strcmp(rtype, "subsystem") == 0) {
2275 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002276 } else if (strcmp(rtype, "env") == 0) {
2277 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002278 }
2279 }
2280 if (strcmp(rtype, "window-change") == 0) {
2281 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002282 } else if (strcmp(rtype, "break") == 0) {
2283 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002284 }
Damien Millera6b1d162004-06-30 22:41:07 +10002285
Damien Millerc7ef63d2002-02-05 12:21:42 +11002286 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002287}
2288
2289void
Damien Miller8853ca52010-06-26 10:00:14 +10002290session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr,
2291 int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002292{
2293 if (!compat20)
2294 fatal("session_set_fds: called for proto != 2.0");
2295 /*
2296 * now that have a child and a pipe to the child,
2297 * we can activate our channel and register the fd's
2298 */
2299 if (s->chanid == -1)
2300 fatal("no channel for session %d", s->self);
2301 channel_set_fds(s->chanid,
2302 fdout, fdin, fderr,
Damien Miller8853ca52010-06-26 10:00:14 +10002303 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002304 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002305}
2306
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002307/*
2308 * Function to perform pty cleanup. Also called if we get aborted abnormally
2309 * (e.g., due to a dropped connection).
2310 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002311void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002312session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002313{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002314 if (s == NULL) {
2315 error("session_pty_cleanup: no session");
2316 return;
2317 }
2318 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002319 return;
2320
Kevin Steves43cdef32001-02-11 14:12:08 +00002321 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002322
Damien Millerb38eff82000-04-01 11:09:21 +10002323 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002324 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002325 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002326
2327 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002328 if (getuid() == 0)
2329 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002330
2331 /*
2332 * Close the server side of the socket pairs. We must do this after
2333 * the pty cleanup, so that another process doesn't get this pty
2334 * while we're still cleaning up.
2335 */
Damien Miller7207f642008-05-19 15:34:50 +10002336 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2337 error("close(s->ptymaster/%d): %s",
2338 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002339
2340 /* unlink pty from session */
2341 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002342}
Damien Millerefb4afe2000-04-12 18:45:05 +10002343
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002344void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002345session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002346{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002347 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002348}
2349
Damien Miller5a80bba2002-09-04 16:39:02 +10002350static char *
2351sig2name(int sig)
2352{
2353#define SSH_SIG(x) if (sig == SIG ## x) return #x
2354 SSH_SIG(ABRT);
2355 SSH_SIG(ALRM);
2356 SSH_SIG(FPE);
2357 SSH_SIG(HUP);
2358 SSH_SIG(ILL);
2359 SSH_SIG(INT);
2360 SSH_SIG(KILL);
2361 SSH_SIG(PIPE);
2362 SSH_SIG(QUIT);
2363 SSH_SIG(SEGV);
2364 SSH_SIG(TERM);
2365 SSH_SIG(USR1);
2366 SSH_SIG(USR2);
2367#undef SSH_SIG
2368 return "SIG@openssh.com";
2369}
2370
Ben Lindstrombba81212001-06-25 05:01:22 +00002371static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002372session_close_x11(int id)
2373{
2374 Channel *c;
2375
Damien Millerd47c62a2005-12-13 19:33:57 +11002376 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002377 debug("session_close_x11: x11 channel %d missing", id);
2378 } else {
2379 /* Detach X11 listener */
2380 debug("session_close_x11: detach x11 channel %d", id);
2381 channel_cancel_cleanup(id);
2382 if (c->ostate != CHAN_OUTPUT_CLOSED)
2383 chan_mark_dead(c);
2384 }
2385}
2386
2387static void
2388session_close_single_x11(int id, void *arg)
2389{
2390 Session *s;
2391 u_int i;
2392
2393 debug3("session_close_single_x11: channel %d", id);
2394 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002395 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002396 fatal("session_close_single_x11: no x11 channel %d", id);
2397 for (i = 0; s->x11_chanids[i] != -1; i++) {
2398 debug("session_close_single_x11: session %d: "
2399 "closing channel %d", s->self, s->x11_chanids[i]);
2400 /*
2401 * The channel "id" is already closing, but make sure we
2402 * close all of its siblings.
2403 */
2404 if (s->x11_chanids[i] != id)
2405 session_close_x11(s->x11_chanids[i]);
2406 }
Darren Tuckera627d422013-06-02 07:31:17 +10002407 free(s->x11_chanids);
Damien Miller2b9b0452005-07-17 17:19:24 +10002408 s->x11_chanids = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002409 free(s->display);
2410 s->display = NULL;
2411 free(s->auth_proto);
2412 s->auth_proto = NULL;
2413 free(s->auth_data);
2414 s->auth_data = NULL;
2415 free(s->auth_display);
2416 s->auth_display = NULL;
Damien Miller2b9b0452005-07-17 17:19:24 +10002417}
2418
2419static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002420session_exit_message(Session *s, int status)
2421{
2422 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002423
2424 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002425 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002426 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002427 debug("session_exit_message: session %d channel %d pid %ld",
2428 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002429
2430 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002431 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002432 packet_put_int(WEXITSTATUS(status));
2433 packet_send();
2434 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002435 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002436 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002437#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002438 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002439#else /* WCOREDUMP */
2440 packet_put_char(0);
2441#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002442 packet_put_cstring("");
2443 packet_put_cstring("");
2444 packet_send();
2445 } else {
2446 /* Some weird exit cause. Just exit. */
2447 packet_disconnect("wait returned status %04x.", status);
2448 }
2449
2450 /* disconnect channel */
2451 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002452
2453 /*
2454 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002455 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002456 * by session_close_by_channel when the childs close their fds.
2457 */
2458 channel_register_cleanup(c->self, session_close_by_channel, 1);
2459
Damien Miller166fca82000-04-20 07:42:21 +10002460 /*
2461 * emulate a write failure with 'chan_write_failed', nobody will be
2462 * interested in data we write.
2463 * Note that we must not call 'chan_read_failed', since there could
2464 * be some more data waiting in the pipe.
2465 */
Damien Millerbd483e72000-04-30 10:00:53 +10002466 if (c->ostate != CHAN_OUTPUT_CLOSED)
2467 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002468}
2469
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002470void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002471session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002472{
Damien Millereccb9de2005-06-17 12:59:34 +10002473 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002474
Ben Lindstromce0f6342002-06-11 16:42:49 +00002475 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002476 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002477 session_pty_cleanup(s);
Darren Tuckera627d422013-06-02 07:31:17 +10002478 free(s->term);
2479 free(s->display);
2480 free(s->x11_chanids);
2481 free(s->auth_display);
2482 free(s->auth_data);
2483 free(s->auth_proto);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002484 if (s->env != NULL) {
2485 for (i = 0; i < s->num_env; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10002486 free(s->env[i].name);
2487 free(s->env[i].val);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002488 }
Darren Tuckera627d422013-06-02 07:31:17 +10002489 free(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002490 }
Damien Millere247cc42000-05-07 12:03:14 +10002491 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002492 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002493}
2494
2495void
2496session_close_by_pid(pid_t pid, int status)
2497{
2498 Session *s = session_by_pid(pid);
2499 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002500 debug("session_close_by_pid: no session for pid %ld",
2501 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002502 return;
2503 }
2504 if (s->chanid != -1)
2505 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002506 if (s->ttyfd != -1)
2507 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002508 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002509}
2510
2511/*
2512 * this is called when a channel dies before
2513 * the session 'child' itself dies
2514 */
2515void
2516session_close_by_channel(int id, void *arg)
2517{
2518 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002519 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002520
Damien Millerefb4afe2000-04-12 18:45:05 +10002521 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002522 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002523 return;
2524 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002525 debug("session_close_by_channel: channel %d child %ld",
2526 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002527 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002528 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002529 /*
2530 * delay detach of session, but release pty, since
2531 * the fd's to the child are already closed
2532 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002533 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002534 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002535 return;
2536 }
2537 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002538 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002539
2540 /* Close any X11 listeners associated with this session */
2541 if (s->x11_chanids != NULL) {
2542 for (i = 0; s->x11_chanids[i] != -1; i++) {
2543 session_close_x11(s->x11_chanids[i]);
2544 s->x11_chanids[i] = -1;
2545 }
2546 }
2547
Damien Millerefb4afe2000-04-12 18:45:05 +10002548 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002549 session_close(s);
2550}
2551
2552void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002553session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002554{
2555 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002556 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002557 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002558 if (s->used) {
2559 if (closefunc != NULL)
2560 closefunc(s);
2561 else
2562 session_close(s);
2563 }
Damien Miller52b77be2001-10-10 15:14:37 +10002564 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002565}
2566
Ben Lindstrombba81212001-06-25 05:01:22 +00002567static char *
Damien Millere247cc42000-05-07 12:03:14 +10002568session_tty_list(void)
2569{
2570 static char buf[1024];
2571 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002572 char *cp;
2573
Damien Millere247cc42000-05-07 12:03:14 +10002574 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002575 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002576 Session *s = &sessions[i];
2577 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002578
Damien Millera8ed44b2003-01-10 09:53:12 +11002579 if (strncmp(s->tty, "/dev/", 5) != 0) {
2580 cp = strrchr(s->tty, '/');
2581 cp = (cp == NULL) ? s->tty : cp + 1;
2582 } else
2583 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002584
Damien Millere247cc42000-05-07 12:03:14 +10002585 if (buf[0] != '\0')
2586 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002587 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002588 }
2589 }
2590 if (buf[0] == '\0')
2591 strlcpy(buf, "notty", sizeof buf);
2592 return buf;
2593}
2594
2595void
2596session_proctitle(Session *s)
2597{
2598 if (s->pw == NULL)
2599 error("no user for session %d", s->self);
2600 else
2601 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2602}
2603
Ben Lindstrom768176b2001-06-09 01:29:12 +00002604int
2605session_setup_x11fwd(Session *s)
2606{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002607 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002608 char display[512], auth_display[512];
2609 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002610 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002611
2612 if (no_x11_forwarding_flag) {
2613 packet_send_debug("X11 forwarding disabled in user configuration file.");
2614 return 0;
2615 }
2616 if (!options.x11_forwarding) {
2617 debug("X11 forwarding disabled in server configuration file.");
2618 return 0;
2619 }
2620 if (!options.xauth_location ||
2621 (stat(options.xauth_location, &st) == -1)) {
2622 packet_send_debug("No xauth program; cannot forward with spoofing.");
2623 return 0;
2624 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002625 if (options.use_login) {
2626 packet_send_debug("X11 forwarding disabled; "
2627 "not compatible with UseLogin=yes.");
2628 return 0;
2629 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002630 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002631 debug("X11 display already set.");
2632 return 0;
2633 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002634 if (x11_create_display_inet(options.x11_display_offset,
2635 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002636 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002637 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002638 return 0;
2639 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002640 for (i = 0; s->x11_chanids[i] != -1; i++) {
2641 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002642 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002643 }
Kevin Steves366298c2001-12-19 17:58:01 +00002644
2645 /* Set up a suitable value for the DISPLAY variable. */
2646 if (gethostname(hostname, sizeof(hostname)) < 0)
2647 fatal("gethostname: %.100s", strerror(errno));
2648 /*
2649 * auth_display must be used as the displayname when the
2650 * authorization entry is added with xauth(1). This will be
2651 * different than the DISPLAY string for localhost displays.
2652 */
Damien Miller95c249f2002-02-05 12:11:34 +11002653 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002654 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002655 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002656 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002657 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002658 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002659 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002660 } else {
2661#ifdef IPADDR_IN_DISPLAY
2662 struct hostent *he;
2663 struct in_addr my_addr;
2664
2665 he = gethostbyname(hostname);
2666 if (he == NULL) {
2667 error("Can't get IP address for X11 DISPLAY.");
2668 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2669 return 0;
2670 }
2671 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002672 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002673 s->display_number, s->screen);
2674#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002675 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002676 s->display_number, s->screen);
2677#endif
2678 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002679 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002680 }
2681
Ben Lindstrom768176b2001-06-09 01:29:12 +00002682 return 1;
2683}
2684
Ben Lindstrombba81212001-06-25 05:01:22 +00002685static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002686do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002687{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002688 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002689}
2690
2691void
2692do_cleanup(Authctxt *authctxt)
2693{
2694 static int called = 0;
2695
2696 debug("do_cleanup");
2697
2698 /* no cleanup if we're in the child for login shell */
2699 if (is_child)
2700 return;
2701
2702 /* avoid double cleanup */
2703 if (called)
2704 return;
2705 called = 1;
2706
Darren Tucker9142e1c2007-08-16 23:28:04 +10002707 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002708 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002709
2710#ifdef USE_PAM
2711 if (options.use_pam) {
2712 sshpam_cleanup();
2713 sshpam_thread_cleanup();
2714 }
2715#endif
2716
2717 if (!authctxt->authenticated)
2718 return;
2719
Darren Tucker3e33cec2003-10-02 16:12:36 +10002720#ifdef KRB5
2721 if (options.kerberos_ticket_cleanup &&
2722 authctxt->krb5_ctx)
2723 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002724#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002725
2726#ifdef GSSAPI
2727 if (compat20 && options.gss_cleanup_creds)
2728 ssh_gssapi_cleanup_creds();
2729#endif
2730
2731 /* remove agent socket */
2732 auth_sock_cleanup_proc(authctxt->pw);
2733
2734 /*
2735 * Cleanup ptys/utmp only if privsep is disabled,
2736 * or if running in monitor.
2737 */
2738 if (!use_privsep || mm_is_monitor())
2739 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002740}