blob: 639405fec304fa691dd53953ff8d0504ec2cc830 [file] [log] [blame]
Darren Tuckercd70e1b2010-03-07 23:05:17 +11001/* $OpenBSD: session.c,v 1.252 2010/03/07 11:57:13 dtucker Exp $ */
Damien Millerb38eff82000-04-01 11:09:21 +10002/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 *
Damien Millerefb4afe2000-04-12 18:45:05 +100012 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100034 */
Damien Millerb38eff82000-04-01 11:09:21 +100035
36#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110037
38#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100039#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110040#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100045#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110046
Damien Miller1cdde6f2006-07-24 14:07:35 +100047#include <arpa/inet.h>
48
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien Miller427a1d52006-07-10 20:20:33 +100050#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110051#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110052#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110053#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100054#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110055#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100056#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100057#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100058#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100059#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100060#include <unistd.h>
Damien Millerb38eff82000-04-01 11:09:21 +100061
Damien Millerb84886b2008-05-19 15:05:07 +100062#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100063#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "ssh1.h"
66#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000067#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "packet.h"
69#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100070#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100071#include "uidswap.h"
72#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000073#include "channels.h"
Damien Millerd7834352006-08-05 12:39:39 +100074#include "key.h"
75#include "cipher.h"
76#ifdef GSSAPI
77#include "ssh-gss.h"
78#endif
79#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100080#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100081#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "pathnames.h"
83#include "log.h"
84#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000085#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000086#include "serverloop.h"
87#include "canohost.h"
Damien Millerd8cb1f12008-02-10 22:40:12 +110088#include "misc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000089#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100090#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000091#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110092#include "sftp.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100093
Darren Tucker3c78c5e2004-01-23 22:03:10 +110094#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110095#include <kafs.h>
96#endif
97
Damien Millerad793d52008-11-03 19:17:57 +110098#define IS_INTERNAL_SFTP(c) \
99 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
100 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
101 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
102 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
103
Damien Millerb38eff82000-04-01 11:09:21 +1000104/* func */
105
106Session *session_new(void);
Damien Millerd310d512008-06-16 07:59:23 +1000107void session_set_fds(Session *, int, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000108void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000109void session_proctitle(Session *);
110int session_setup_x11fwd(Session *);
Damien Miller7207f642008-05-19 15:34:50 +1000111int do_exec_pty(Session *, const char *);
112int do_exec_no_pty(Session *, const char *);
113int do_exec(Session *, const char *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000114void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000115#ifdef LOGIN_NEEDS_UTMPX
116static void do_pre_login(Session *s);
117#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000118void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000119void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000120int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000121
Ben Lindstrombba81212001-06-25 05:01:22 +0000122static void do_authenticated1(Authctxt *);
123static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000124
Ben Lindstrombba81212001-06-25 05:01:22 +0000125static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000126
Damien Millerb38eff82000-04-01 11:09:21 +1000127/* import */
128extern ServerOptions options;
129extern char *__progname;
130extern int log_stderr;
131extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000132extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000133extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000134extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000135extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000136
Damien Miller7b28dc52000-09-05 13:34:53 +1100137/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000138const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100139
Damien Millerb38eff82000-04-01 11:09:21 +1000140/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000141static int sessions_first_unused = -1;
142static int sessions_nalloc = 0;
143static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100144
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100145#define SUBSYSTEM_NONE 0
146#define SUBSYSTEM_EXT 1
147#define SUBSYSTEM_INT_SFTP 2
148#define SUBSYSTEM_INT_SFTP_ERROR 3
Damien Millerdfc24252008-02-10 22:29:40 +1100149
Damien Millerad833b32000-08-23 10:46:23 +1000150#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000151login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000152#endif
153
Darren Tucker3e33cec2003-10-02 16:12:36 +1000154static int is_child = 0;
155
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000156/* Name and directory of socket for authentication agent forwarding. */
157static char *auth_sock_name = NULL;
158static char *auth_sock_dir = NULL;
159
160/* removes the agent forwarding socket */
161
162static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000163auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000164{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000165 if (auth_sock_name != NULL) {
166 temporarily_use_uid(pw);
167 unlink(auth_sock_name);
168 rmdir(auth_sock_dir);
169 auth_sock_name = NULL;
170 restore_uid();
171 }
172}
173
174static int
175auth_input_request_forwarding(struct passwd * pw)
176{
177 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000178 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000179 struct sockaddr_un sunaddr;
180
181 if (auth_sock_name != NULL) {
182 error("authentication forwarding requested twice.");
183 return 0;
184 }
185
186 /* Temporarily drop privileged uid for mkdir/bind. */
187 temporarily_use_uid(pw);
188
189 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000190 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000191
192 /* Create private directory for socket */
193 if (mkdtemp(auth_sock_dir) == NULL) {
194 packet_send_debug("Agent forwarding disabled: "
195 "mkdtemp() failed: %.100s", strerror(errno));
196 restore_uid();
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197 xfree(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000198 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000199 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000200 }
Damien Miller7207f642008-05-19 15:34:50 +1000201
202 xasprintf(&auth_sock_name, "%s/agent.%ld",
203 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000205 /* Create the socket. */
206 sock = socket(AF_UNIX, SOCK_STREAM, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000207 if (sock < 0) {
208 error("socket: %.100s", strerror(errno));
209 restore_uid();
210 goto authsock_err;
211 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000212
213 /* Bind it to the name. */
214 memset(&sunaddr, 0, sizeof(sunaddr));
215 sunaddr.sun_family = AF_UNIX;
216 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
217
Damien Miller7207f642008-05-19 15:34:50 +1000218 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
219 error("bind: %.100s", strerror(errno));
220 restore_uid();
221 goto authsock_err;
222 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000223
224 /* Restore the privileged uid. */
225 restore_uid();
226
227 /* Start listening on the socket. */
Damien Miller7207f642008-05-19 15:34:50 +1000228 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
229 error("listen: %.100s", strerror(errno));
230 goto authsock_err;
231 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000232
233 /* Allocate a channel for the authentication agent socket. */
234 nc = channel_new("auth socket",
235 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
236 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000237 0, "auth socket", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100238 nc->path = xstrdup(auth_sock_name);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000239 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000240
241 authsock_err:
242 if (auth_sock_name != NULL)
243 xfree(auth_sock_name);
244 if (auth_sock_dir != NULL) {
245 rmdir(auth_sock_dir);
246 xfree(auth_sock_dir);
247 }
248 if (sock != -1)
249 close(sock);
250 auth_sock_name = NULL;
251 auth_sock_dir = NULL;
252 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000253}
254
Darren Tucker1921ed92004-02-10 13:23:28 +1100255static void
256display_loginmsg(void)
257{
Damien Miller46d38de2005-07-17 17:02:09 +1000258 if (buffer_len(&loginmsg) > 0) {
259 buffer_append(&loginmsg, "\0", 1);
260 printf("%s", (char *)buffer_ptr(&loginmsg));
261 buffer_clear(&loginmsg);
262 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100263}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000264
Ben Lindstromb31783d2001-03-22 02:02:12 +0000265void
266do_authenticated(Authctxt *authctxt)
267{
Damien Miller97f39ae2003-02-24 11:57:01 +1100268 setproctitle("%s", authctxt->pw->pw_name);
269
Ben Lindstromb31783d2001-03-22 02:02:12 +0000270 /* setup the channel layer */
271 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
272 channel_permit_all_opens();
273
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100274 auth_debug_send();
275
Ben Lindstromb31783d2001-03-22 02:02:12 +0000276 if (compat20)
277 do_authenticated2(authctxt);
278 else
279 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000280
Darren Tucker3e33cec2003-10-02 16:12:36 +1000281 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000282}
283
Damien Millerb38eff82000-04-01 11:09:21 +1000284/*
Damien Millerb38eff82000-04-01 11:09:21 +1000285 * Prepares for an interactive session. This is called after the user has
286 * been successfully authenticated. During this message exchange, pseudo
287 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
288 * are requested, etc.
289 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000290static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000291do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000292{
293 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000294 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100295 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000296 int enable_compression_after_reply = 0;
297 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000298
299 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100300 if (s == NULL) {
301 error("no more sessions");
302 return;
303 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000304 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000305 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000306
Damien Millerb38eff82000-04-01 11:09:21 +1000307 /*
308 * We stay in this loop until the client requests to execute a shell
309 * or a command.
310 */
311 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000312 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000313
314 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100315 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000316
317 /* Process the packet. */
318 switch (type) {
319 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000320 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100321 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000322 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000323 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100324 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000325 break;
326 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000327 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000328 debug2("compression disabled");
329 break;
330 }
Damien Millerb38eff82000-04-01 11:09:21 +1000331 /* Enable compression after we have responded with SUCCESS. */
332 enable_compression_after_reply = 1;
333 success = 1;
334 break;
335
336 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000337 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000338 break;
339
340 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000341 s->auth_proto = packet_get_string(&proto_len);
342 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000343
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000344 screen_flag = packet_get_protocol_flags() &
345 SSH_PROTOFLAG_SCREEN_NUMBER;
346 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
347
348 if (packet_remaining() == 4) {
349 if (!screen_flag)
350 debug2("Buggy client: "
351 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000352 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000353 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000354 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000355 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100356 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000357 success = session_setup_x11fwd(s);
358 if (!success) {
359 xfree(s->auth_proto);
360 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000361 s->auth_proto = NULL;
362 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000363 }
Damien Millerb38eff82000-04-01 11:09:21 +1000364 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000365
366 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000367 if (!options.allow_agent_forwarding ||
368 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000369 debug("Authentication agent forwarding not permitted for this authentication.");
370 break;
371 }
372 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000373 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000374 break;
375
376 case SSH_CMSG_PORT_FORWARD_REQUEST:
377 if (no_port_forwarding_flag) {
378 debug("Port forwarding not permitted for this authentication.");
379 break;
380 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100381 if (!options.allow_tcp_forwarding) {
382 debug("Port forwarding not permitted.");
383 break;
384 }
Damien Millerb38eff82000-04-01 11:09:21 +1000385 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000386 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
387 options.gateway_ports) < 0) {
388 debug("Port forwarding failed.");
389 break;
390 }
Damien Millerb38eff82000-04-01 11:09:21 +1000391 success = 1;
392 break;
393
394 case SSH_CMSG_MAX_PACKET_SIZE:
395 if (packet_set_maxsize(packet_get_int()) > 0)
396 success = 1;
397 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100398
Damien Millerb38eff82000-04-01 11:09:21 +1000399 case SSH_CMSG_EXEC_SHELL:
400 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000401 if (type == SSH_CMSG_EXEC_CMD) {
402 command = packet_get_string(&dlen);
403 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000404 if (do_exec(s, command) != 0)
405 packet_disconnect(
406 "command execution failed");
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000407 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000409 if (do_exec(s, NULL) != 0)
410 packet_disconnect(
411 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000412 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100413 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000414 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000415 return;
416
417 default:
418 /*
419 * Any unknown messages in this phase are ignored,
420 * and a failure message is returned.
421 */
Damien Miller996acd22003-04-09 20:59:48 +1000422 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000423 }
424 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
425 packet_send();
426 packet_write_wait();
427
428 /* Enable compression now that we have replied if appropriate. */
429 if (enable_compression_after_reply) {
430 enable_compression_after_reply = 0;
431 packet_start_compression(compression_level);
432 }
433 }
434}
435
Damien Miller7207f642008-05-19 15:34:50 +1000436#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000437/*
438 * This is called to fork and execute a command when we have no tty. This
439 * will call do_child from the child, and server_loop from the parent after
440 * setting up file descriptors and such.
441 */
Damien Miller7207f642008-05-19 15:34:50 +1000442int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000443do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000444{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000445 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000446
447#ifdef USE_PIPES
448 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000449
Damien Millerb38eff82000-04-01 11:09:21 +1000450 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000451 if (pipe(pin) < 0) {
452 error("%s: pipe in: %.100s", __func__, strerror(errno));
453 return -1;
454 }
455 if (pipe(pout) < 0) {
456 error("%s: pipe out: %.100s", __func__, strerror(errno));
457 close(pin[0]);
458 close(pin[1]);
459 return -1;
460 }
461 if (pipe(perr) < 0) {
462 error("%s: pipe err: %.100s", __func__, strerror(errno));
463 close(pin[0]);
464 close(pin[1]);
465 close(pout[0]);
466 close(pout[1]);
467 return -1;
468 }
469#else
Damien Millerb38eff82000-04-01 11:09:21 +1000470 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000471
Damien Millerb38eff82000-04-01 11:09:21 +1000472 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000473 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
474 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
475 return -1;
476 }
477 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
478 error("%s: socketpair #2: %.100s", __func__, strerror(errno));
479 close(inout[0]);
480 close(inout[1]);
481 return -1;
482 }
483#endif
484
Damien Millerb38eff82000-04-01 11:09:21 +1000485 if (s == NULL)
486 fatal("do_exec_no_pty: no session");
487
Damien Millere247cc42000-05-07 12:03:14 +1000488 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000489
Damien Millerb38eff82000-04-01 11:09:21 +1000490 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000491 switch ((pid = fork())) {
492 case -1:
493 error("%s: fork: %.100s", __func__, strerror(errno));
494#ifdef USE_PIPES
495 close(pin[0]);
496 close(pin[1]);
497 close(pout[0]);
498 close(pout[1]);
499 close(perr[0]);
500 close(perr[1]);
501#else
502 close(inout[0]);
503 close(inout[1]);
504 close(err[0]);
505 close(err[1]);
506#endif
507 return -1;
508 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000509 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000510
Damien Millerb38eff82000-04-01 11:09:21 +1000511 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000512 log_init(__progname, options.log_level,
513 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000514
515 /*
516 * Create a new session and process group since the 4.4BSD
517 * setlogin() affects the entire process group.
518 */
519 if (setsid() < 0)
520 error("setsid failed: %.100s", strerror(errno));
521
522#ifdef USE_PIPES
523 /*
524 * Redirect stdin. We close the parent side of the socket
525 * pair, and make the child side the standard input.
526 */
527 close(pin[1]);
528 if (dup2(pin[0], 0) < 0)
529 perror("dup2 stdin");
530 close(pin[0]);
531
532 /* Redirect stdout. */
533 close(pout[0]);
534 if (dup2(pout[1], 1) < 0)
535 perror("dup2 stdout");
536 close(pout[1]);
537
538 /* Redirect stderr. */
539 close(perr[0]);
540 if (dup2(perr[1], 2) < 0)
541 perror("dup2 stderr");
542 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000543#else
Damien Millerb38eff82000-04-01 11:09:21 +1000544 /*
545 * Redirect stdin, stdout, and stderr. Stdin and stdout will
546 * use the same socket, as some programs (particularly rdist)
547 * seem to depend on it.
548 */
549 close(inout[1]);
550 close(err[1]);
551 if (dup2(inout[0], 0) < 0) /* stdin */
552 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000553 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000554 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000555 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000556 if (dup2(err[0], 2) < 0) /* stderr */
557 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000558 close(err[0]);
559#endif
560
Damien Millerb38eff82000-04-01 11:09:21 +1000561
Tim Rice81ed5182002-09-25 17:38:46 -0700562#ifdef _UNICOS
563 cray_init_job(s->pw); /* set up cray jid and tmpdir */
564#endif
565
Damien Millerb38eff82000-04-01 11:09:21 +1000566 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000567 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000568 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000569 default:
570 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000571 }
Damien Miller7207f642008-05-19 15:34:50 +1000572
Tim Rice81ed5182002-09-25 17:38:46 -0700573#ifdef _UNICOS
574 signal(WJSIGNAL, cray_job_termination_handler);
575#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100576#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100577 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100578#endif
Damien Miller7207f642008-05-19 15:34:50 +1000579
Damien Millerb38eff82000-04-01 11:09:21 +1000580 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000581 /* Set interactive/non-interactive mode. */
582 packet_set_interactive(s->display != NULL);
Damien Miller7207f642008-05-19 15:34:50 +1000583
584 /*
585 * Clear loginmsg, since it's the child's responsibility to display
586 * it to the user, otherwise multiple sessions may accumulate
587 * multiple copies of the login messages.
588 */
589 buffer_clear(&loginmsg);
590
Damien Millerb38eff82000-04-01 11:09:21 +1000591#ifdef USE_PIPES
592 /* We are the parent. Close the child sides of the pipes. */
593 close(pin[0]);
594 close(pout[1]);
595 close(perr[1]);
596
Damien Millerefb4afe2000-04-12 18:45:05 +1000597 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000598 if (s->is_subsystem) {
599 close(perr[0]);
600 perr[0] = -1;
601 }
Damien Millerd310d512008-06-16 07:59:23 +1000602 session_set_fds(s, pin[1], pout[0], perr[0], 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000603 } else {
604 /* Enter the interactive session. */
605 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000606 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000607 }
Damien Miller7207f642008-05-19 15:34:50 +1000608#else
Damien Millerb38eff82000-04-01 11:09:21 +1000609 /* We are the parent. Close the child sides of the socket pairs. */
610 close(inout[0]);
611 close(err[0]);
612
613 /*
614 * Enter the interactive session. Note: server_loop must be able to
615 * handle the case that fdin and fdout are the same.
616 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000617 if (compat20) {
Damien Miller7207f642008-05-19 15:34:50 +1000618 session_set_fds(s, inout[1], inout[1],
Damien Millerd310d512008-06-16 07:59:23 +1000619 s->is_subsystem ? -1 : err[1], 0);
Damien Miller7207f642008-05-19 15:34:50 +1000620 if (s->is_subsystem)
621 close(err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000622 } else {
623 server_loop(pid, inout[1], inout[1], err[1]);
624 /* server_loop has closed inout[1] and err[1]. */
625 }
Damien Miller7207f642008-05-19 15:34:50 +1000626#endif
627 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000628}
629
630/*
631 * This is called to fork and execute a command when we have a tty. This
632 * will call do_child from the child, and server_loop from the parent after
633 * setting up file descriptors, controlling tty, updating wtmp, utmp,
634 * lastlog, and other such operations.
635 */
Damien Miller7207f642008-05-19 15:34:50 +1000636int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000637do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000638{
Damien Millerb38eff82000-04-01 11:09:21 +1000639 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000640 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000641
642 if (s == NULL)
643 fatal("do_exec_pty: no session");
644 ptyfd = s->ptyfd;
645 ttyfd = s->ttyfd;
646
Damien Miller7207f642008-05-19 15:34:50 +1000647 /*
648 * Create another descriptor of the pty master side for use as the
649 * standard input. We could use the original descriptor, but this
650 * simplifies code in server_loop. The descriptor is bidirectional.
651 * Do this before forking (and cleanup in the child) so as to
652 * detect and gracefully fail out-of-fd conditions.
653 */
654 if ((fdout = dup(ptyfd)) < 0) {
655 error("%s: dup #1: %s", __func__, strerror(errno));
656 close(ttyfd);
657 close(ptyfd);
658 return -1;
659 }
660 /* we keep a reference to the pty master */
661 if ((ptymaster = dup(ptyfd)) < 0) {
662 error("%s: dup #2: %s", __func__, strerror(errno));
663 close(ttyfd);
664 close(ptyfd);
665 close(fdout);
666 return -1;
667 }
668
Damien Millerb38eff82000-04-01 11:09:21 +1000669 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000670 switch ((pid = fork())) {
671 case -1:
672 error("%s: fork: %.100s", __func__, strerror(errno));
673 close(fdout);
674 close(ptymaster);
675 close(ttyfd);
676 close(ptyfd);
677 return -1;
678 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000679 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000680
Damien Miller7207f642008-05-19 15:34:50 +1000681 close(fdout);
682 close(ptymaster);
683
Damien Miller942da032000-08-18 13:59:06 +1000684 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000685 log_init(__progname, options.log_level,
686 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000687 /* Close the master side of the pseudo tty. */
688 close(ptyfd);
689
690 /* Make the pseudo tty our controlling tty. */
691 pty_make_controlling_tty(&ttyfd, s->tty);
692
Damien Miller9c751422001-10-10 15:02:46 +1000693 /* Redirect stdin/stdout/stderr from the pseudo tty. */
694 if (dup2(ttyfd, 0) < 0)
695 error("dup2 stdin: %s", strerror(errno));
696 if (dup2(ttyfd, 1) < 0)
697 error("dup2 stdout: %s", strerror(errno));
698 if (dup2(ttyfd, 2) < 0)
699 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000700
701 /* Close the extra descriptor for the pseudo tty. */
702 close(ttyfd);
703
Damien Miller942da032000-08-18 13:59:06 +1000704 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000705#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700706 if (!(options.use_login && command == NULL)) {
707#ifdef _UNICOS
708 cray_init_job(s->pw); /* set up cray jid and tmpdir */
709#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100710 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700711 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000712# ifdef LOGIN_NEEDS_UTMPX
713 else
714 do_pre_login(s);
715# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000716#endif
Damien Miller7207f642008-05-19 15:34:50 +1000717 /*
718 * Do common processing for the child, such as execing
719 * the command.
720 */
Darren Tucker43e7a352009-06-21 19:50:08 +1000721 do_child(s, command);
722 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000723 default:
724 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000725 }
Damien Miller7207f642008-05-19 15:34:50 +1000726
Tim Rice81ed5182002-09-25 17:38:46 -0700727#ifdef _UNICOS
728 signal(WJSIGNAL, cray_job_termination_handler);
729#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100730#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100731 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100732#endif
Damien Miller7207f642008-05-19 15:34:50 +1000733
Damien Millerb38eff82000-04-01 11:09:21 +1000734 s->pid = pid;
735
736 /* Parent. Close the slave side of the pseudo tty. */
737 close(ttyfd);
738
Damien Millerb38eff82000-04-01 11:09:21 +1000739 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000740 s->ptymaster = ptymaster;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000741 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000742 if (compat20) {
Damien Millerd310d512008-06-16 07:59:23 +1000743 session_set_fds(s, ptyfd, fdout, -1, 1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000744 } else {
745 server_loop(pid, ptyfd, fdout, -1);
746 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000747 }
Damien Miller7207f642008-05-19 15:34:50 +1000748 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000749}
750
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000751#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000752static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000753do_pre_login(Session *s)
754{
755 socklen_t fromlen;
756 struct sockaddr_storage from;
757 pid_t pid = getpid();
758
759 /*
760 * Get IP address of client. If the connection is not a socket, let
761 * the address be 0.0.0.0.
762 */
763 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000764 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000765 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000766 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100767 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000768 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000769 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000770 }
771 }
772
773 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000774 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000775 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000776}
777#endif
778
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000779/*
780 * This is called to fork and execute a command. If another command is
781 * to be forced, execute that instead.
782 */
Damien Miller7207f642008-05-19 15:34:50 +1000783int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000784do_exec(Session *s, const char *command)
785{
Damien Miller7207f642008-05-19 15:34:50 +1000786 int ret;
787
Damien Millere2754432006-07-24 14:06:47 +1000788 if (options.adm_forced_command) {
789 original_command = command;
790 command = options.adm_forced_command;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100791 if (IS_INTERNAL_SFTP(command)) {
792 s->is_subsystem = s->is_subsystem ?
793 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
794 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100795 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000796 debug("Forced command (config) '%.900s'", command);
797 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000798 original_command = command;
799 command = forced_command;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100800 if (IS_INTERNAL_SFTP(command)) {
801 s->is_subsystem = s->is_subsystem ?
802 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
803 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100804 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000805 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000806 }
807
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100808#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100809 if (command != NULL)
810 PRIVSEP(audit_run_command(command));
811 else if (s->ttyfd == -1) {
812 char *shell = s->pw->pw_shell;
813
814 if (shell[0] == '\0') /* empty shell means /bin/sh */
815 shell =_PATH_BSHELL;
816 PRIVSEP(audit_run_command(shell));
817 }
818#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000819 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000820 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000821 else
Damien Miller7207f642008-05-19 15:34:50 +1000822 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000823
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000824 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000825
Darren Tucker09991742004-07-17 17:05:14 +1000826 /*
827 * Clear loginmsg: it's the child's responsibility to display
828 * it to the user, otherwise multiple sessions may accumulate
829 * multiple copies of the login messages.
830 */
831 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000832
833 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000834}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000835
Damien Miller942da032000-08-18 13:59:06 +1000836/* administrative, login(1)-like work */
837void
Damien Miller69b69aa2000-10-28 14:19:58 +1100838do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000839{
Damien Miller942da032000-08-18 13:59:06 +1000840 socklen_t fromlen;
841 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000842 struct passwd * pw = s->pw;
843 pid_t pid = getpid();
844
845 /*
846 * Get IP address of client. If the connection is not a socket, let
847 * the address be 0.0.0.0.
848 */
849 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000850 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000851 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000852 if (getpeername(packet_get_connection_in(),
Darren Tucker43e7a352009-06-21 19:50:08 +1000853 (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000854 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000855 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000856 }
857 }
858
859 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000860 if (!use_privsep)
861 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
862 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000863 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000864 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000865
Kevin Steves092f2ef2000-10-14 13:36:13 +0000866#ifdef USE_PAM
867 /*
868 * If password change is needed, do it now.
869 * This needs to occur before the ~/.hushlogin check.
870 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100871 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
872 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000873 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100874 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000875 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000876 }
877#endif
878
Damien Millercf205e82001-04-16 18:29:15 +1000879 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000880 return;
881
Darren Tucker1921ed92004-02-10 13:23:28 +1100882 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000883
Damien Millercf205e82001-04-16 18:29:15 +1000884 do_motd();
885}
886
887/*
888 * Display the message of the day.
889 */
890void
891do_motd(void)
892{
893 FILE *f;
894 char buf[256];
895
Damien Miller942da032000-08-18 13:59:06 +1000896 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000897#ifdef HAVE_LOGIN_CAP
898 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
899 "/etc/motd"), "r");
900#else
Damien Miller942da032000-08-18 13:59:06 +1000901 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000902#endif
Damien Miller942da032000-08-18 13:59:06 +1000903 if (f) {
904 while (fgets(buf, sizeof(buf), f))
905 fputs(buf, stdout);
906 fclose(f);
907 }
908 }
909}
910
Kevin Steves8f63caa2001-07-04 18:23:02 +0000911
912/*
913 * Check for quiet login, either .hushlogin or command given.
914 */
915int
916check_quietlogin(Session *s, const char *command)
917{
918 char buf[256];
919 struct passwd *pw = s->pw;
920 struct stat st;
921
922 /* Return 1 if .hushlogin exists or a command given. */
923 if (command != NULL)
924 return 1;
925 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
926#ifdef HAVE_LOGIN_CAP
927 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
928 return 1;
929#else
930 if (stat(buf, &st) >= 0)
931 return 1;
932#endif
933 return 0;
934}
935
Damien Millerb38eff82000-04-01 11:09:21 +1000936/*
937 * Sets the value of the given variable in the environment. If the variable
Darren Tucker63917bd2008-11-11 16:33:48 +1100938 * already exists, its value is overridden.
Damien Millerb38eff82000-04-01 11:09:21 +1000939 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000940void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000941child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100942 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000943{
Damien Millerb38eff82000-04-01 11:09:21 +1000944 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000945 u_int envsize;
946 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000947
948 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000949 * If we're passed an uninitialized list, allocate a single null
950 * entry before continuing.
951 */
952 if (*envp == NULL && *envsizep == 0) {
953 *envp = xmalloc(sizeof(char *));
954 *envp[0] = NULL;
955 *envsizep = 1;
956 }
957
958 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000959 * Find the slot where the value should be stored. If the variable
960 * already exists, we reuse the slot; otherwise we append a new slot
961 * at the end of the array, expanding if necessary.
962 */
963 env = *envp;
964 namelen = strlen(name);
965 for (i = 0; env[i]; i++)
966 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
967 break;
968 if (env[i]) {
969 /* Reuse the slot. */
970 xfree(env[i]);
971 } else {
972 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000973 envsize = *envsizep;
974 if (i >= envsize - 1) {
975 if (envsize >= 1000)
976 fatal("child_set_env: too many env vars");
977 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100978 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000979 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000980 }
981 /* Need to set the NULL pointer at end of array beyond the new slot. */
982 env[i + 1] = NULL;
983 }
984
985 /* Allocate space and format the variable in the appropriate slot. */
986 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
987 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
988}
989
990/*
991 * Reads environment variables from the given file and adds/overrides them
992 * into the environment. If the file does not exist, this does nothing.
993 * Otherwise, it must consist of empty lines, comments (line starts with '#')
994 * and assignments of the form name=value. No other forms are allowed.
995 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000996static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000997read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100998 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000999{
1000 FILE *f;
1001 char buf[4096];
1002 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +10001003 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001004
1005 f = fopen(filename, "r");
1006 if (!f)
1007 return;
1008
1009 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001010 if (++lineno > 1000)
1011 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001012 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1013 ;
1014 if (!*cp || *cp == '#' || *cp == '\n')
1015 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001016
1017 cp[strcspn(cp, "\n")] = '\0';
1018
Damien Millerb38eff82000-04-01 11:09:21 +10001019 value = strchr(cp, '=');
1020 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001021 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1022 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001023 continue;
1024 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001025 /*
1026 * Replace the equals sign by nul, and advance value to
1027 * the value string.
1028 */
Damien Millerb38eff82000-04-01 11:09:21 +10001029 *value = '\0';
1030 value++;
1031 child_set_env(env, envsize, cp, value);
1032 }
1033 fclose(f);
1034}
1035
Darren Tuckere1a790d2003-09-16 11:52:19 +10001036#ifdef HAVE_ETC_DEFAULT_LOGIN
1037/*
1038 * Return named variable from specified environment, or NULL if not present.
1039 */
1040static char *
1041child_get_env(char **env, const char *name)
1042{
1043 int i;
1044 size_t len;
1045
1046 len = strlen(name);
1047 for (i=0; env[i] != NULL; i++)
1048 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1049 return(env[i] + len + 1);
1050 return NULL;
1051}
1052
1053/*
1054 * Read /etc/default/login.
1055 * We pick up the PATH (or SUPATH for root) and UMASK.
1056 */
1057static void
1058read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1059{
1060 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001061 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001062 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001063
1064 /*
1065 * We don't want to copy the whole file to the child's environment,
1066 * so we use a temporary environment and copy the variables we're
1067 * interested in.
1068 */
1069 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1070
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001071 if (tmpenv == NULL)
1072 return;
1073
Darren Tuckere1a790d2003-09-16 11:52:19 +10001074 if (uid == 0)
1075 var = child_get_env(tmpenv, "SUPATH");
1076 else
1077 var = child_get_env(tmpenv, "PATH");
1078 if (var != NULL)
1079 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001080
Darren Tuckere1a790d2003-09-16 11:52:19 +10001081 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1082 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001083 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001084
Darren Tuckere1a790d2003-09-16 11:52:19 +10001085 for (i = 0; tmpenv[i] != NULL; i++)
1086 xfree(tmpenv[i]);
1087 xfree(tmpenv);
1088}
1089#endif /* HAVE_ETC_DEFAULT_LOGIN */
1090
Damien Miller7dff8692005-05-26 11:34:51 +10001091void
1092copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001093{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001094 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001095 int i;
1096
Damien Millerbb9ffc12002-01-08 10:59:32 +11001097 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001098 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001099
Damien Millerbb9ffc12002-01-08 10:59:32 +11001100 for(i = 0; source[i] != NULL; i++) {
1101 var_name = xstrdup(source[i]);
1102 if ((var_val = strstr(var_name, "=")) == NULL) {
1103 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001104 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001105 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001106 *var_val++ = '\0';
1107
1108 debug3("Copy environment: %s=%s", var_name, var_val);
1109 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001110
Damien Millerbb9ffc12002-01-08 10:59:32 +11001111 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001112 }
1113}
Damien Millercb5e44a2000-09-29 12:12:36 +11001114
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001115static char **
1116do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001117{
Damien Millerb38eff82000-04-01 11:09:21 +10001118 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001119 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001120 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001121 struct passwd *pw = s->pw;
Darren Tucker9d86e5d2009-03-08 11:40:27 +11001122#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
Damien Millerad5ecbf2006-07-24 15:03:06 +10001123 char *path = NULL;
1124#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001125
Damien Millerb38eff82000-04-01 11:09:21 +10001126 /* Initialize the environment. */
1127 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001128 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001129 env[0] = NULL;
1130
Damien Millerbac2d8a2000-09-05 16:13:06 +11001131#ifdef HAVE_CYGWIN
1132 /*
1133 * The Windows environment contains some setting which are
1134 * important for a running system. They must not be dropped.
1135 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001136 {
1137 char **p;
1138
1139 p = fetch_windows_environment();
1140 copy_environment(p, &env, &envsize);
1141 free_windows_environment(p);
1142 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001143#endif
1144
Darren Tucker0efd1552003-08-26 11:49:55 +10001145#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001146 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001147 * the childs environment as they see fit
1148 */
1149 ssh_gssapi_do_child(&env, &envsize);
1150#endif
1151
Damien Millerb38eff82000-04-01 11:09:21 +10001152 if (!options.use_login) {
1153 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001154 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001155 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001156 s->env[i].val);
1157
Damien Millerb38eff82000-04-01 11:09:21 +10001158 child_set_env(&env, &envsize, "USER", pw->pw_name);
1159 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001160#ifdef _AIX
1161 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1162#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001163 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001164#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001165 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1166 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1167 else
1168 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001169#else /* HAVE_LOGIN_CAP */
1170# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001171 /*
1172 * There's no standard path on Windows. The path contains
1173 * important components pointing to the system directories,
1174 * needed for loading shared libraries. So the path better
1175 * remains intact here.
1176 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001177# ifdef HAVE_ETC_DEFAULT_LOGIN
1178 read_etc_default_login(&env, &envsize, pw->pw_uid);
1179 path = child_get_env(env, "PATH");
1180# endif /* HAVE_ETC_DEFAULT_LOGIN */
1181 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001182 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001183 s->pw->pw_uid == 0 ?
1184 SUPERUSER_PATH : _PATH_STDPATH);
1185 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001186# endif /* HAVE_CYGWIN */
1187#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001188
1189 snprintf(buf, sizeof buf, "%.200s/%.50s",
1190 _PATH_MAILDIR, pw->pw_name);
1191 child_set_env(&env, &envsize, "MAIL", buf);
1192
1193 /* Normal systems set SHELL by default. */
1194 child_set_env(&env, &envsize, "SHELL", shell);
1195 }
1196 if (getenv("TZ"))
1197 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1198
1199 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001200 if (!options.use_login) {
1201 while (custom_environment) {
1202 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001203 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001204
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001205 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001206 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001207 if (str[i] == '=') {
1208 str[i] = 0;
1209 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001210 }
1211 custom_environment = ce->next;
1212 xfree(ce->s);
1213 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001214 }
Damien Millerb38eff82000-04-01 11:09:21 +10001215 }
1216
Damien Millerf37e2462002-09-19 11:47:55 +10001217 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001218 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001219 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001220 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1221
Damien Miller00111382003-03-10 11:21:17 +11001222 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001223 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001224 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1225 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001226 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1227
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001228 if (s->ttyfd != -1)
1229 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1230 if (s->term)
1231 child_set_env(&env, &envsize, "TERM", s->term);
1232 if (s->display)
1233 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001234 if (original_command)
1235 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1236 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001237
Tim Rice81ed5182002-09-25 17:38:46 -07001238#ifdef _UNICOS
1239 if (cray_tmpdir[0] != '\0')
1240 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1241#endif /* _UNICOS */
1242
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001243 /*
1244 * Since we clear KRB5CCNAME at startup, if it's set now then it
1245 * must have been set by a native authentication method (eg AIX or
1246 * SIA), so copy it to the child.
1247 */
1248 {
1249 char *cp;
1250
1251 if ((cp = getenv("KRB5CCNAME")) != NULL)
1252 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1253 }
1254
Damien Millerb38eff82000-04-01 11:09:21 +10001255#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001256 {
1257 char *cp;
1258
1259 if ((cp = getenv("AUTHSTATE")) != NULL)
1260 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001261 read_environment_file(&env, &envsize, "/etc/environment");
1262 }
Damien Millerb38eff82000-04-01 11:09:21 +10001263#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001264#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001265 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001266 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001267 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001268#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001269#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001270 /*
1271 * Pull in any environment variables that may have
1272 * been set by PAM.
1273 */
Damien Miller4e448a32003-05-14 15:11:48 +10001274 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001275 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001276
Damien Millerc756e9b2003-11-17 21:41:42 +11001277 p = fetch_pam_child_environment();
1278 copy_environment(p, &env, &envsize);
1279 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001280
Damien Millerc756e9b2003-11-17 21:41:42 +11001281 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001282 copy_environment(p, &env, &envsize);
1283 free_pam_environment(p);
1284 }
Damien Millerb38eff82000-04-01 11:09:21 +10001285#endif /* USE_PAM */
1286
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001287 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001288 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001289 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001290
1291 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001292 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001293 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001294 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001295 read_environment_file(&env, &envsize, buf);
1296 }
1297 if (debug_flag) {
1298 /* dump the environment */
1299 fprintf(stderr, "Environment:\n");
1300 for (i = 0; env[i]; i++)
1301 fprintf(stderr, " %.200s\n", env[i]);
1302 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001303 return env;
1304}
1305
1306/*
1307 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1308 * first in this order).
1309 */
1310static void
1311do_rc_files(Session *s, const char *shell)
1312{
1313 FILE *f = NULL;
1314 char cmd[1024];
1315 int do_xauth;
1316 struct stat st;
1317
1318 do_xauth =
1319 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1320
Damien Millera1b48cc2008-03-27 11:02:02 +11001321 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001322 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001323 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001324 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1325 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1326 if (debug_flag)
1327 fprintf(stderr, "Running %s\n", cmd);
1328 f = popen(cmd, "w");
1329 if (f) {
1330 if (do_xauth)
1331 fprintf(f, "%s %s\n", s->auth_proto,
1332 s->auth_data);
1333 pclose(f);
1334 } else
1335 fprintf(stderr, "Could not run %s\n",
1336 _PATH_SSH_USER_RC);
1337 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1338 if (debug_flag)
1339 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1340 _PATH_SSH_SYSTEM_RC);
1341 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1342 if (f) {
1343 if (do_xauth)
1344 fprintf(f, "%s %s\n", s->auth_proto,
1345 s->auth_data);
1346 pclose(f);
1347 } else
1348 fprintf(stderr, "Could not run %s\n",
1349 _PATH_SSH_SYSTEM_RC);
1350 } else if (do_xauth && options.xauth_location != NULL) {
1351 /* Add authority data to .Xauthority if appropriate. */
1352 if (debug_flag) {
1353 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001354 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001355 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001356 fprintf(stderr,
1357 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001358 options.xauth_location, s->auth_display,
1359 s->auth_proto, s->auth_data);
1360 }
1361 snprintf(cmd, sizeof cmd, "%s -q -",
1362 options.xauth_location);
1363 f = popen(cmd, "w");
1364 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001365 fprintf(f, "remove %s\n",
1366 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001367 fprintf(f, "add %s %s %s\n",
1368 s->auth_display, s->auth_proto,
1369 s->auth_data);
1370 pclose(f);
1371 } else {
1372 fprintf(stderr, "Could not run %s\n",
1373 cmd);
1374 }
1375 }
1376}
1377
1378static void
1379do_nologin(struct passwd *pw)
1380{
1381 FILE *f = NULL;
Darren Tucker09aa4c02010-01-12 19:51:48 +11001382 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1383 struct stat sb;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001384
1385#ifdef HAVE_LOGIN_CAP
Darren Tucker09aa4c02010-01-12 19:51:48 +11001386 if (login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1387 return;
1388 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001389#else
Darren Tucker09aa4c02010-01-12 19:51:48 +11001390 if (pw->pw_uid == 0)
1391 return;
1392 nl = def_nl;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001393#endif
Darren Tucker09aa4c02010-01-12 19:51:48 +11001394 if (stat(nl, &sb) == -1) {
1395 if (nl != def_nl)
1396 xfree(nl);
1397 return;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001398 }
Darren Tucker09aa4c02010-01-12 19:51:48 +11001399
1400 /* /etc/nologin exists. Print its contents if we can and exit. */
1401 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1402 if ((f = fopen(nl, "r")) != NULL) {
1403 while (fgets(buf, sizeof(buf), f))
1404 fputs(buf, stderr);
1405 fclose(f);
1406 }
1407 exit(254);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001408}
1409
Damien Millerd8cb1f12008-02-10 22:40:12 +11001410/*
1411 * Chroot into a directory after checking it for safety: all path components
1412 * must be root-owned directories with strict permissions.
1413 */
1414static void
1415safely_chroot(const char *path, uid_t uid)
1416{
1417 const char *cp;
1418 char component[MAXPATHLEN];
1419 struct stat st;
1420
1421 if (*path != '/')
1422 fatal("chroot path does not begin at root");
1423 if (strlen(path) >= sizeof(component))
1424 fatal("chroot path too long");
1425
1426 /*
1427 * Descend the path, checking that each component is a
1428 * root-owned directory with strict permissions.
1429 */
1430 for (cp = path; cp != NULL;) {
1431 if ((cp = strchr(cp, '/')) == NULL)
1432 strlcpy(component, path, sizeof(component));
1433 else {
1434 cp++;
1435 memcpy(component, path, cp - path);
1436 component[cp - path] = '\0';
1437 }
1438
1439 debug3("%s: checking '%s'", __func__, component);
1440
1441 if (stat(component, &st) != 0)
1442 fatal("%s: stat(\"%s\"): %s", __func__,
1443 component, strerror(errno));
1444 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1445 fatal("bad ownership or modes for chroot "
1446 "directory %s\"%s\"",
1447 cp == NULL ? "" : "component ", component);
1448 if (!S_ISDIR(st.st_mode))
1449 fatal("chroot path %s\"%s\" is not a directory",
1450 cp == NULL ? "" : "component ", component);
1451
1452 }
1453
1454 if (chdir(path) == -1)
1455 fatal("Unable to chdir to chroot path \"%s\": "
1456 "%s", path, strerror(errno));
1457 if (chroot(path) == -1)
1458 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1459 if (chdir("/") == -1)
1460 fatal("%s: chdir(/) after chroot: %s",
1461 __func__, strerror(errno));
1462 verbose("Changed root directory to \"%s\"", path);
1463}
1464
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001465/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001466void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001467do_setusercontext(struct passwd *pw)
1468{
Damien Miller54e37732008-02-10 22:48:55 +11001469 char *chroot_path, *tmp;
1470
Darren Tuckerb8eb5862008-03-27 07:27:20 +11001471#ifdef WITH_SELINUX
1472 /* Cache selinux status for later use */
1473 (void)ssh_selinux_enabled();
1474#endif
1475
Damien Miller1a3ccb02003-02-24 13:04:01 +11001476#ifndef HAVE_CYGWIN
1477 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001478#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001479 {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001480#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001481# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001482 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001483# endif
Damien Millerd3526362004-01-23 14:16:26 +11001484# ifdef USE_PAM
1485 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001486 do_pam_setcred(use_privsep);
Damien Millerd3526362004-01-23 14:16:26 +11001487 }
1488# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001489 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001490 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001491 perror("unable to set user context");
1492 exit(1);
1493 }
1494#else
1495# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1496 /* Sets login uid for accounting */
1497 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1498 error("setluid: %s", strerror(errno));
1499# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1500
1501 if (setlogin(pw->pw_name) < 0)
1502 error("setlogin failed: %s", strerror(errno));
1503 if (setgid(pw->pw_gid) < 0) {
1504 perror("setgid");
1505 exit(1);
1506 }
1507 /* Initialize the group list. */
1508 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1509 perror("initgroups");
1510 exit(1);
1511 }
1512 endgrent();
1513# ifdef USE_PAM
1514 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001515 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001516 * These will have been wiped by the above initgroups() call.
1517 * Reestablish them here.
1518 */
Damien Miller341c6e62003-09-02 23:18:52 +10001519 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001520 do_pam_setcred(use_privsep);
Damien Miller341c6e62003-09-02 23:18:52 +10001521 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001522# endif /* USE_PAM */
1523# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1524 irix_setusercontext(pw);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001525# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001526# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001527 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001528# endif /* _AIX */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001529# ifdef USE_LIBIAF
Tim Rice2291c002005-08-26 13:15:19 -07001530 if (set_id(pw->pw_name) != 0) {
1531 exit(1);
1532 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001533# endif /* USE_LIBIAF */
1534#endif
Darren Tuckerc738e6c2010-03-07 13:21:12 +11001535#ifdef HAVE_SETPCRED
1536 /*
1537 * If we have a chroot directory, we set all creds except real
1538 * uid which we will need for chroot. If we don't have a
1539 * chroot directory, we don't override anything.
1540 */
1541 {
Darren Tuckerac0c4c92010-03-07 13:32:16 +11001542 char **creds = NULL, *chroot_creds[] =
Darren Tuckerc738e6c2010-03-07 13:21:12 +11001543 { "REAL_USER=root", NULL };
1544
1545 if (options.chroot_directory != NULL &&
1546 strcasecmp(options.chroot_directory, "none") != 0)
1547 creds = chroot_creds;
1548
1549 if (setpcred(pw->pw_name, creds) == -1)
1550 fatal("Failed to set process credentials");
1551 }
1552#endif /* HAVE_SETPCRED */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001553
1554 if (options.chroot_directory != NULL &&
1555 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001556 tmp = tilde_expand_filename(options.chroot_directory,
1557 pw->pw_uid);
1558 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1559 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001560 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001561 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001562 free(chroot_path);
1563 }
1564
1565#ifdef HAVE_LOGIN_CAP
1566 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1567 perror("unable to set user context (setuser)");
1568 exit(1);
1569 }
1570#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001571 /* Permanently switch to the desired uid. */
1572 permanently_set_uid(pw);
1573#endif
1574 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001575
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001576 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1577 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001578
1579#ifdef WITH_SELINUX
1580 ssh_selinux_setup_exec_context(pw->pw_name);
1581#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001582}
1583
Ben Lindstrom08105192002-03-22 02:50:06 +00001584static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001585do_pwchange(Session *s)
1586{
Darren Tucker09991742004-07-17 17:05:14 +10001587 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001588 fprintf(stderr, "WARNING: Your password has expired.\n");
1589 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001590 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001591 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001592#ifdef PASSWD_NEEDS_USERNAME
1593 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1594 (char *)NULL);
1595#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001596 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001597#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001598 perror("passwd");
1599 } else {
1600 fprintf(stderr,
1601 "Password change required but no TTY available.\n");
1602 }
1603 exit(1);
1604}
1605
1606static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001607launch_login(struct passwd *pw, const char *hostname)
1608{
1609 /* Launch login(1). */
1610
Ben Lindstrom378a4172002-06-07 14:49:56 +00001611 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001612#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001613 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001614#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001615#ifdef LOGIN_NO_ENDOPT
1616 "-p", "-f", pw->pw_name, (char *)NULL);
1617#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001618 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001619#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001620
1621 /* Login couldn't be executed, die. */
1622
1623 perror("login");
1624 exit(1);
1625}
1626
Darren Tucker23bc8d02004-02-06 16:24:31 +11001627static void
1628child_close_fds(void)
1629{
1630 int i;
1631
1632 if (packet_get_connection_in() == packet_get_connection_out())
1633 close(packet_get_connection_in());
1634 else {
1635 close(packet_get_connection_in());
1636 close(packet_get_connection_out());
1637 }
1638 /*
1639 * Close all descriptors related to channels. They will still remain
1640 * open in the parent.
1641 */
1642 /* XXX better use close-on-exec? -markus */
1643 channel_close_all();
1644
1645 /*
1646 * Close any extra file descriptors. Note that there may still be
1647 * descriptors left by system functions. They will be closed later.
1648 */
1649 endpwent();
1650
1651 /*
Damien Miller788f2122005-11-05 15:14:59 +11001652 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001653 * hanging around in clients. Note that we want to do this after
1654 * initgroups, because at least on Solaris 2.3 it leaves file
1655 * descriptors open.
1656 */
1657 for (i = 3; i < 64; i++)
1658 close(i);
1659}
1660
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001661/*
1662 * Performs common processing for the child, such as setting up the
1663 * environment, closing extra file descriptors, setting the user and group
1664 * ids, and executing the command or shell.
1665 */
Damien Millerdfc24252008-02-10 22:29:40 +11001666#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001667void
1668do_child(Session *s, const char *command)
1669{
1670 extern char **environ;
1671 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001672 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001673 const char *shell, *shell0, *hostname = NULL;
1674 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001675 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001676
1677 /* remove hostkey from the child's memory */
1678 destroy_sensitive_data();
1679
Darren Tucker23bc8d02004-02-06 16:24:31 +11001680 /* Force a password change */
1681 if (s->authctxt->force_pwchange) {
1682 do_setusercontext(pw);
1683 child_close_fds();
1684 do_pwchange(s);
1685 exit(1);
1686 }
1687
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001688 /* login(1) is only called if we execute the login shell */
1689 if (options.use_login && command != NULL)
1690 options.use_login = 0;
1691
Tim Rice81ed5182002-09-25 17:38:46 -07001692#ifdef _UNICOS
1693 cray_setup(pw->pw_uid, pw->pw_name, command);
1694#endif /* _UNICOS */
1695
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001696 /*
1697 * Login(1) does this as well, and it needs uid 0 for the "-h"
1698 * switch, so we let login(1) to this for us.
1699 */
1700 if (!options.use_login) {
1701#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001702 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001703 if (!check_quietlogin(s, command))
1704 do_motd();
1705#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001706 /* When PAM is enabled we rely on it to do the nologin check */
1707 if (!options.use_pam)
1708 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001709 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001710 /*
1711 * PAM session modules in do_setusercontext may have
1712 * generated messages, so if this in an interactive
1713 * login then display them too.
1714 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001715 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001716 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001717#endif /* HAVE_OSF_SIA */
1718 }
1719
Darren Tucker69687f42004-09-11 22:17:26 +10001720#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001721 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1722 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001723 display_loginmsg();
1724 exit(254);
1725 }
1726#endif
1727
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001728 /*
1729 * Get the shell from the password data. An empty shell field is
1730 * legal, and means /bin/sh.
1731 */
1732 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001733
1734 /*
1735 * Make sure $SHELL points to the shell from the password file,
1736 * even if shell is overridden from login.conf
1737 */
1738 env = do_setup_env(s, shell);
1739
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001740#ifdef HAVE_LOGIN_CAP
1741 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1742#endif
1743
Damien Millerad833b32000-08-23 10:46:23 +10001744 /* we have to stash the hostname before we close our socket. */
1745 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001746 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001747 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001748 /*
1749 * Close the connection descriptors; note that this is the child, and
1750 * the server will still have the socket open, and it is important
1751 * that we do not shutdown it. Note that the descriptors cannot be
1752 * closed before building the environment, as we call
1753 * get_remote_ipaddr there.
1754 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001755 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001756
Damien Millerb38eff82000-04-01 11:09:21 +10001757 /*
Damien Miller05eda432002-02-10 18:32:28 +11001758 * Must take new environment into use so that .ssh/rc,
1759 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001760 */
1761 environ = env;
1762
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001763#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001764 /*
1765 * At this point, we check to see if AFS is active and if we have
1766 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1767 * if we can (and need to) extend the ticket into an AFS token. If
1768 * we don't do this, we run into potential problems if the user's
1769 * home directory is in AFS and it's not world-readable.
1770 */
1771
1772 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001773 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001774 char cell[64];
1775
1776 debug("Getting AFS token");
1777
1778 k_setpag();
1779
1780 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1781 krb5_afslog(s->authctxt->krb5_ctx,
1782 s->authctxt->krb5_fwd_ccache, cell, NULL);
1783
1784 krb5_afslog_home(s->authctxt->krb5_ctx,
1785 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1786 }
1787#endif
1788
Damien Miller788f2122005-11-05 15:14:59 +11001789 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001790 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001791 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001792#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001793 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001794#endif
Damien Miller6051c942008-06-16 07:53:16 +10001795 if (r || options.chroot_directory == NULL)
1796 fprintf(stderr, "Could not chdir to home "
1797 "directory %s: %s\n", pw->pw_dir,
1798 strerror(errno));
1799 if (r)
1800 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001801 }
1802
Damien Millera1939002008-03-15 17:27:58 +11001803 closefrom(STDERR_FILENO + 1);
1804
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001805 if (!options.use_login)
1806 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001807
1808 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001809 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001810
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001811 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1812 printf("This service allows sftp connections only.\n");
1813 fflush(NULL);
1814 exit(1);
1815 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001816 extern int optind, optreset;
1817 int i;
1818 char *p, *args;
1819
Darren Tuckerac46a912009-06-21 17:55:23 +10001820 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001821 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001822 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1823 if (i < ARGV_MAX - 1)
1824 argv[i++] = p;
1825 argv[i] = NULL;
1826 optind = optreset = 1;
1827 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001828#ifdef WITH_SELINUX
1829 ssh_selinux_change_context("sftpd_t");
1830#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001831 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001832 }
1833
Darren Tucker695ed392009-10-07 09:02:18 +11001834 fflush(NULL);
1835
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001836 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001837 launch_login(pw, hostname);
1838 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001839 }
1840
1841 /* Get the last component of the shell name. */
1842 if ((shell0 = strrchr(shell, '/')) != NULL)
1843 shell0++;
1844 else
1845 shell0 = shell;
1846
Damien Millerb38eff82000-04-01 11:09:21 +10001847 /*
1848 * If we have no command, execute the shell. In this case, the shell
1849 * name to be passed in argv[0] is preceded by '-' to indicate that
1850 * this is a login shell.
1851 */
1852 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001853 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001854
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001855 /* Start the shell. Set initial character to '-'. */
1856 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001857
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001858 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1859 >= sizeof(argv0) - 1) {
1860 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001861 perror(shell);
1862 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001863 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001864
1865 /* Execute the shell. */
1866 argv[0] = argv0;
1867 argv[1] = NULL;
1868 execve(shell, argv, env);
1869
1870 /* Executing the shell failed. */
1871 perror(shell);
1872 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001873 }
1874 /*
1875 * Execute the command using the user's shell. This uses the -c
1876 * option to execute the command.
1877 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001878 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001879 argv[1] = "-c";
1880 argv[2] = (char *) command;
1881 argv[3] = NULL;
1882 execve(shell, argv, env);
1883 perror(shell);
1884 exit(1);
1885}
1886
Damien Miller7207f642008-05-19 15:34:50 +10001887void
1888session_unused(int id)
1889{
1890 debug3("%s: session id %d unused", __func__, id);
1891 if (id >= options.max_sessions ||
1892 id >= sessions_nalloc) {
1893 fatal("%s: insane session id %d (max %d nalloc %d)",
1894 __func__, id, options.max_sessions, sessions_nalloc);
1895 }
1896 bzero(&sessions[id], sizeof(*sessions));
1897 sessions[id].self = id;
1898 sessions[id].used = 0;
1899 sessions[id].chanid = -1;
1900 sessions[id].ptyfd = -1;
1901 sessions[id].ttyfd = -1;
1902 sessions[id].ptymaster = -1;
1903 sessions[id].x11_chanids = NULL;
1904 sessions[id].next_unused = sessions_first_unused;
1905 sessions_first_unused = id;
1906}
1907
Damien Millerb38eff82000-04-01 11:09:21 +10001908Session *
1909session_new(void)
1910{
Damien Miller7207f642008-05-19 15:34:50 +10001911 Session *s, *tmp;
1912
1913 if (sessions_first_unused == -1) {
1914 if (sessions_nalloc >= options.max_sessions)
1915 return NULL;
1916 debug2("%s: allocate (allocated %d max %d)",
1917 __func__, sessions_nalloc, options.max_sessions);
1918 tmp = xrealloc(sessions, sessions_nalloc + 1,
1919 sizeof(*sessions));
1920 if (tmp == NULL) {
1921 error("%s: cannot allocate %d sessions",
1922 __func__, sessions_nalloc + 1);
1923 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001924 }
Damien Miller7207f642008-05-19 15:34:50 +10001925 sessions = tmp;
1926 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001927 }
Damien Miller7207f642008-05-19 15:34:50 +10001928
1929 if (sessions_first_unused >= sessions_nalloc ||
1930 sessions_first_unused < 0) {
1931 fatal("%s: insane first_unused %d max %d nalloc %d",
1932 __func__, sessions_first_unused, options.max_sessions,
1933 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001934 }
Damien Miller7207f642008-05-19 15:34:50 +10001935
1936 s = &sessions[sessions_first_unused];
1937 if (s->used) {
1938 fatal("%s: session %d already used",
1939 __func__, sessions_first_unused);
1940 }
1941 sessions_first_unused = s->next_unused;
1942 s->used = 1;
1943 s->next_unused = -1;
1944 debug("session_new: session %d", s->self);
1945
1946 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001947}
1948
Ben Lindstrombba81212001-06-25 05:01:22 +00001949static void
Damien Millerb38eff82000-04-01 11:09:21 +10001950session_dump(void)
1951{
1952 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001953 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001954 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001955
1956 debug("dump: used %d next_unused %d session %d %p "
1957 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001958 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001959 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001960 s->self,
1961 s,
1962 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001963 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001964 }
1965}
1966
Damien Millerefb4afe2000-04-12 18:45:05 +10001967int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001968session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001969{
1970 Session *s = session_new();
1971 debug("session_open: channel %d", chanid);
1972 if (s == NULL) {
1973 error("no more sessions");
1974 return 0;
1975 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001976 s->authctxt = authctxt;
1977 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001978 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001979 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001980 debug("session_open: session %d: link with channel %d", s->self, chanid);
1981 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001982 return 1;
1983}
1984
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001985Session *
1986session_by_tty(char *tty)
1987{
1988 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001989 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001990 Session *s = &sessions[i];
1991 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1992 debug("session_by_tty: session %d tty %s", i, tty);
1993 return s;
1994 }
1995 }
1996 debug("session_by_tty: unknown tty %.100s", tty);
1997 session_dump();
1998 return NULL;
1999}
2000
Ben Lindstrombba81212001-06-25 05:01:22 +00002001static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002002session_by_channel(int id)
2003{
2004 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002005 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002006 Session *s = &sessions[i];
2007 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10002008 debug("session_by_channel: session %d channel %d",
2009 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002010 return s;
2011 }
2012 }
2013 debug("session_by_channel: unknown channel %d", id);
2014 session_dump();
2015 return NULL;
2016}
2017
Ben Lindstrombba81212001-06-25 05:01:22 +00002018static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10002019session_by_x11_channel(int id)
2020{
2021 int i, j;
2022
Damien Miller7207f642008-05-19 15:34:50 +10002023 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002024 Session *s = &sessions[i];
2025
2026 if (s->x11_chanids == NULL || !s->used)
2027 continue;
2028 for (j = 0; s->x11_chanids[j] != -1; j++) {
2029 if (s->x11_chanids[j] == id) {
2030 debug("session_by_x11_channel: session %d "
2031 "channel %d", s->self, id);
2032 return s;
2033 }
2034 }
2035 }
2036 debug("session_by_x11_channel: unknown channel %d", id);
2037 session_dump();
2038 return NULL;
2039}
2040
2041static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002042session_by_pid(pid_t pid)
2043{
2044 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002045 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002046 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002047 Session *s = &sessions[i];
2048 if (s->used && s->pid == pid)
2049 return s;
2050 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002051 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002052 session_dump();
2053 return NULL;
2054}
2055
Ben Lindstrombba81212001-06-25 05:01:22 +00002056static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002057session_window_change_req(Session *s)
2058{
2059 s->col = packet_get_int();
2060 s->row = packet_get_int();
2061 s->xpixel = packet_get_int();
2062 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002063 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002064 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2065 return 1;
2066}
2067
Ben Lindstrombba81212001-06-25 05:01:22 +00002068static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002069session_pty_req(Session *s)
2070{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002071 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002072 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002073
Ben Lindstrom49c12602001-06-13 04:37:36 +00002074 if (no_pty_flag) {
2075 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002076 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002077 }
2078 if (s->ttyfd != -1) {
2079 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002080 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002081 }
2082
Damien Millerefb4afe2000-04-12 18:45:05 +10002083 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002084
2085 if (compat20) {
2086 s->col = packet_get_int();
2087 s->row = packet_get_int();
2088 } else {
2089 s->row = packet_get_int();
2090 s->col = packet_get_int();
2091 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002092 s->xpixel = packet_get_int();
2093 s->ypixel = packet_get_int();
2094
2095 if (strcmp(s->term, "") == 0) {
2096 xfree(s->term);
2097 s->term = NULL;
2098 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002099
Damien Millerefb4afe2000-04-12 18:45:05 +10002100 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002101 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002102 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2103 sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002104 if (s->term)
2105 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002106 s->term = NULL;
2107 s->ptyfd = -1;
2108 s->ttyfd = -1;
2109 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002110 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002111 }
2112 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002113
2114 /* for SSH1 the tty modes length is not given */
2115 if (!compat20)
2116 n_bytes = packet_remaining();
2117 tty_parse_modes(s->ttyfd, &n_bytes);
2118
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002119 if (!use_privsep)
2120 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002121
2122 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002123 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2124
Damien Miller48b03fc2002-01-22 23:11:40 +11002125 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002126 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002127 return 1;
2128}
2129
Ben Lindstrombba81212001-06-25 05:01:22 +00002130static int
Damien Millerbd483e72000-04-30 10:00:53 +10002131session_subsystem_req(Session *s)
2132{
Damien Millerae452462001-10-10 15:08:06 +10002133 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002134 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002135 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10002136 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10002137 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002138
Damien Miller48b03fc2002-01-22 23:11:40 +11002139 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10002140 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10002141
Damien Millerf6d9e222000-06-18 14:50:44 +10002142 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10002143 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002144 prog = options.subsystem_command[i];
2145 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002146 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11002147 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002148 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11002149 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002150 if (stat(prog, &st) < 0)
2151 debug("subsystem: cannot stat %s: %s",
2152 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11002153 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002154 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10002155 }
Damien Miller7207f642008-05-19 15:34:50 +10002156 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002157 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002158 }
2159 }
2160
2161 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002162 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002163 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002164
Damien Millerbd483e72000-04-30 10:00:53 +10002165 xfree(subsys);
2166 return success;
2167}
2168
Ben Lindstrombba81212001-06-25 05:01:22 +00002169static int
Damien Millerbd483e72000-04-30 10:00:53 +10002170session_x11_req(Session *s)
2171{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002172 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002173
Damien Miller2b9b0452005-07-17 17:19:24 +10002174 if (s->auth_proto != NULL || s->auth_data != NULL) {
2175 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002176 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002177 return 0;
2178 }
Damien Millerbd483e72000-04-30 10:00:53 +10002179 s->single_connection = packet_get_char();
2180 s->auth_proto = packet_get_string(NULL);
2181 s->auth_data = packet_get_string(NULL);
2182 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002183 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002184
Ben Lindstrom768176b2001-06-09 01:29:12 +00002185 success = session_setup_x11fwd(s);
2186 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10002187 xfree(s->auth_proto);
2188 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002189 s->auth_proto = NULL;
2190 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002191 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002192 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002193}
2194
Ben Lindstrombba81212001-06-25 05:01:22 +00002195static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002196session_shell_req(Session *s)
2197{
Damien Miller48b03fc2002-01-22 23:11:40 +11002198 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002199 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002200}
2201
Ben Lindstrombba81212001-06-25 05:01:22 +00002202static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002203session_exec_req(Session *s)
2204{
Damien Miller7207f642008-05-19 15:34:50 +10002205 u_int len, success;
2206
Damien Millerf6d9e222000-06-18 14:50:44 +10002207 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002208 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002209 success = do_exec(s, command) == 0;
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00002210 xfree(command);
Damien Miller7207f642008-05-19 15:34:50 +10002211 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002212}
2213
Ben Lindstrombba81212001-06-25 05:01:22 +00002214static int
Damien Miller54c45982003-05-15 10:20:13 +10002215session_break_req(Session *s)
2216{
Damien Miller54c45982003-05-15 10:20:13 +10002217
Darren Tucker1f8311c2004-05-13 16:39:33 +10002218 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002219 packet_check_eom();
2220
Damien Miller7207f642008-05-19 15:34:50 +10002221 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002222 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002223 return 1;
2224}
2225
2226static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002227session_env_req(Session *s)
2228{
2229 char *name, *val;
2230 u_int name_len, val_len, i;
2231
2232 name = packet_get_string(&name_len);
2233 val = packet_get_string(&val_len);
2234 packet_check_eom();
2235
2236 /* Don't set too many environment variables */
2237 if (s->num_env > 128) {
2238 debug2("Ignoring env request %s: too many env vars", name);
2239 goto fail;
2240 }
2241
2242 for (i = 0; i < options.num_accept_env; i++) {
2243 if (match_pattern(name, options.accept_env[i])) {
2244 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002245 s->env = xrealloc(s->env, s->num_env + 1,
2246 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002247 s->env[s->num_env].name = name;
2248 s->env[s->num_env].val = val;
2249 s->num_env++;
2250 return (1);
2251 }
2252 }
2253 debug2("Ignoring env request %s: disallowed name", name);
2254
2255 fail:
2256 xfree(name);
2257 xfree(val);
2258 return (0);
2259}
2260
2261static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002262session_auth_agent_req(Session *s)
2263{
2264 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002265 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002266 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002267 debug("session_auth_agent_req: no_agent_forwarding_flag");
2268 return 0;
2269 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002270 if (called) {
2271 return 0;
2272 } else {
2273 called = 1;
2274 return auth_input_request_forwarding(s->pw);
2275 }
2276}
2277
Damien Millerc7ef63d2002-02-05 12:21:42 +11002278int
2279session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002280{
Damien Millerefb4afe2000-04-12 18:45:05 +10002281 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002282 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002283
Damien Millerc7ef63d2002-02-05 12:21:42 +11002284 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002285 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002286 c->self, rtype);
2287 return 0;
2288 }
2289 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002290
2291 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002292 * a session is in LARVAL state until a shell, a command
2293 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002294 */
2295 if (c->type == SSH_CHANNEL_LARVAL) {
2296 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002297 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002298 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002299 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002300 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002301 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002302 } else if (strcmp(rtype, "x11-req") == 0) {
2303 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002304 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2305 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002306 } else if (strcmp(rtype, "subsystem") == 0) {
2307 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002308 } else if (strcmp(rtype, "env") == 0) {
2309 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002310 }
2311 }
2312 if (strcmp(rtype, "window-change") == 0) {
2313 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002314 } else if (strcmp(rtype, "break") == 0) {
2315 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002316 }
Damien Millera6b1d162004-06-30 22:41:07 +10002317
Damien Millerc7ef63d2002-02-05 12:21:42 +11002318 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002319}
2320
2321void
Darren Tuckered3cdc02008-06-16 23:29:18 +10002322session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002323{
2324 if (!compat20)
2325 fatal("session_set_fds: called for proto != 2.0");
2326 /*
2327 * now that have a child and a pipe to the child,
2328 * we can activate our channel and register the fd's
2329 */
2330 if (s->chanid == -1)
2331 fatal("no channel for session %d", s->self);
2332 channel_set_fds(s->chanid,
2333 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002334 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002335 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002336}
2337
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002338/*
2339 * Function to perform pty cleanup. Also called if we get aborted abnormally
2340 * (e.g., due to a dropped connection).
2341 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002342void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002343session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002344{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002345 if (s == NULL) {
2346 error("session_pty_cleanup: no session");
2347 return;
2348 }
2349 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002350 return;
2351
Kevin Steves43cdef32001-02-11 14:12:08 +00002352 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002353
Damien Millerb38eff82000-04-01 11:09:21 +10002354 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002355 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002356 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002357
2358 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002359 if (getuid() == 0)
2360 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002361
2362 /*
2363 * Close the server side of the socket pairs. We must do this after
2364 * the pty cleanup, so that another process doesn't get this pty
2365 * while we're still cleaning up.
2366 */
Damien Miller7207f642008-05-19 15:34:50 +10002367 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2368 error("close(s->ptymaster/%d): %s",
2369 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002370
2371 /* unlink pty from session */
2372 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002373}
Damien Millerefb4afe2000-04-12 18:45:05 +10002374
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002375void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002376session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002377{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002378 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002379}
2380
Damien Miller5a80bba2002-09-04 16:39:02 +10002381static char *
2382sig2name(int sig)
2383{
2384#define SSH_SIG(x) if (sig == SIG ## x) return #x
2385 SSH_SIG(ABRT);
2386 SSH_SIG(ALRM);
2387 SSH_SIG(FPE);
2388 SSH_SIG(HUP);
2389 SSH_SIG(ILL);
2390 SSH_SIG(INT);
2391 SSH_SIG(KILL);
2392 SSH_SIG(PIPE);
2393 SSH_SIG(QUIT);
2394 SSH_SIG(SEGV);
2395 SSH_SIG(TERM);
2396 SSH_SIG(USR1);
2397 SSH_SIG(USR2);
2398#undef SSH_SIG
2399 return "SIG@openssh.com";
2400}
2401
Ben Lindstrombba81212001-06-25 05:01:22 +00002402static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002403session_close_x11(int id)
2404{
2405 Channel *c;
2406
Damien Millerd47c62a2005-12-13 19:33:57 +11002407 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002408 debug("session_close_x11: x11 channel %d missing", id);
2409 } else {
2410 /* Detach X11 listener */
2411 debug("session_close_x11: detach x11 channel %d", id);
2412 channel_cancel_cleanup(id);
2413 if (c->ostate != CHAN_OUTPUT_CLOSED)
2414 chan_mark_dead(c);
2415 }
2416}
2417
2418static void
2419session_close_single_x11(int id, void *arg)
2420{
2421 Session *s;
2422 u_int i;
2423
2424 debug3("session_close_single_x11: channel %d", id);
2425 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002426 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002427 fatal("session_close_single_x11: no x11 channel %d", id);
2428 for (i = 0; s->x11_chanids[i] != -1; i++) {
2429 debug("session_close_single_x11: session %d: "
2430 "closing channel %d", s->self, s->x11_chanids[i]);
2431 /*
2432 * The channel "id" is already closing, but make sure we
2433 * close all of its siblings.
2434 */
2435 if (s->x11_chanids[i] != id)
2436 session_close_x11(s->x11_chanids[i]);
2437 }
2438 xfree(s->x11_chanids);
2439 s->x11_chanids = NULL;
2440 if (s->display) {
2441 xfree(s->display);
2442 s->display = NULL;
2443 }
2444 if (s->auth_proto) {
2445 xfree(s->auth_proto);
2446 s->auth_proto = NULL;
2447 }
2448 if (s->auth_data) {
2449 xfree(s->auth_data);
2450 s->auth_data = NULL;
2451 }
2452 if (s->auth_display) {
2453 xfree(s->auth_display);
2454 s->auth_display = NULL;
2455 }
2456}
2457
2458static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002459session_exit_message(Session *s, int status)
2460{
2461 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002462
2463 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002464 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002465 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002466 debug("session_exit_message: session %d channel %d pid %ld",
2467 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002468
2469 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002470 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002471 packet_put_int(WEXITSTATUS(status));
2472 packet_send();
2473 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002474 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002475 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002476#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002477 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002478#else /* WCOREDUMP */
2479 packet_put_char(0);
2480#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002481 packet_put_cstring("");
2482 packet_put_cstring("");
2483 packet_send();
2484 } else {
2485 /* Some weird exit cause. Just exit. */
2486 packet_disconnect("wait returned status %04x.", status);
2487 }
2488
2489 /* disconnect channel */
2490 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002491
2492 /*
2493 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002494 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002495 * by session_close_by_channel when the childs close their fds.
2496 */
2497 channel_register_cleanup(c->self, session_close_by_channel, 1);
2498
Damien Miller166fca82000-04-20 07:42:21 +10002499 /*
2500 * emulate a write failure with 'chan_write_failed', nobody will be
2501 * interested in data we write.
2502 * Note that we must not call 'chan_read_failed', since there could
2503 * be some more data waiting in the pipe.
2504 */
Damien Millerbd483e72000-04-30 10:00:53 +10002505 if (c->ostate != CHAN_OUTPUT_CLOSED)
2506 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002507}
2508
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002509void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002510session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002511{
Damien Millereccb9de2005-06-17 12:59:34 +10002512 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002513
Ben Lindstromce0f6342002-06-11 16:42:49 +00002514 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002515 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002516 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002517 if (s->term)
2518 xfree(s->term);
2519 if (s->display)
2520 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002521 if (s->x11_chanids)
2522 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002523 if (s->auth_display)
2524 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002525 if (s->auth_data)
2526 xfree(s->auth_data);
2527 if (s->auth_proto)
2528 xfree(s->auth_proto);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002529 if (s->env != NULL) {
2530 for (i = 0; i < s->num_env; i++) {
2531 xfree(s->env[i].name);
2532 xfree(s->env[i].val);
2533 }
Darren Tucker46bc0752004-05-02 22:11:30 +10002534 xfree(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002535 }
Damien Millere247cc42000-05-07 12:03:14 +10002536 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002537 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002538}
2539
2540void
2541session_close_by_pid(pid_t pid, int status)
2542{
2543 Session *s = session_by_pid(pid);
2544 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002545 debug("session_close_by_pid: no session for pid %ld",
2546 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002547 return;
2548 }
2549 if (s->chanid != -1)
2550 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002551 if (s->ttyfd != -1)
2552 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002553 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002554}
2555
2556/*
2557 * this is called when a channel dies before
2558 * the session 'child' itself dies
2559 */
2560void
2561session_close_by_channel(int id, void *arg)
2562{
2563 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002564 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002565
Damien Millerefb4afe2000-04-12 18:45:05 +10002566 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002567 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002568 return;
2569 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002570 debug("session_close_by_channel: channel %d child %ld",
2571 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002572 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002573 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002574 /*
2575 * delay detach of session, but release pty, since
2576 * the fd's to the child are already closed
2577 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002578 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002579 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002580 return;
2581 }
2582 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002583 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002584
2585 /* Close any X11 listeners associated with this session */
2586 if (s->x11_chanids != NULL) {
2587 for (i = 0; s->x11_chanids[i] != -1; i++) {
2588 session_close_x11(s->x11_chanids[i]);
2589 s->x11_chanids[i] = -1;
2590 }
2591 }
2592
Damien Millerefb4afe2000-04-12 18:45:05 +10002593 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002594 session_close(s);
2595}
2596
2597void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002598session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002599{
2600 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002601 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002602 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002603 if (s->used) {
2604 if (closefunc != NULL)
2605 closefunc(s);
2606 else
2607 session_close(s);
2608 }
Damien Miller52b77be2001-10-10 15:14:37 +10002609 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002610}
2611
Ben Lindstrombba81212001-06-25 05:01:22 +00002612static char *
Damien Millere247cc42000-05-07 12:03:14 +10002613session_tty_list(void)
2614{
2615 static char buf[1024];
2616 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002617 char *cp;
2618
Damien Millere247cc42000-05-07 12:03:14 +10002619 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002620 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002621 Session *s = &sessions[i];
2622 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002623
Damien Millera8ed44b2003-01-10 09:53:12 +11002624 if (strncmp(s->tty, "/dev/", 5) != 0) {
2625 cp = strrchr(s->tty, '/');
2626 cp = (cp == NULL) ? s->tty : cp + 1;
2627 } else
2628 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002629
Damien Millere247cc42000-05-07 12:03:14 +10002630 if (buf[0] != '\0')
2631 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002632 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002633 }
2634 }
2635 if (buf[0] == '\0')
2636 strlcpy(buf, "notty", sizeof buf);
2637 return buf;
2638}
2639
2640void
2641session_proctitle(Session *s)
2642{
2643 if (s->pw == NULL)
2644 error("no user for session %d", s->self);
2645 else
2646 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2647}
2648
Ben Lindstrom768176b2001-06-09 01:29:12 +00002649int
2650session_setup_x11fwd(Session *s)
2651{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002652 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002653 char display[512], auth_display[512];
2654 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002655 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002656
2657 if (no_x11_forwarding_flag) {
2658 packet_send_debug("X11 forwarding disabled in user configuration file.");
2659 return 0;
2660 }
2661 if (!options.x11_forwarding) {
2662 debug("X11 forwarding disabled in server configuration file.");
2663 return 0;
2664 }
2665 if (!options.xauth_location ||
2666 (stat(options.xauth_location, &st) == -1)) {
2667 packet_send_debug("No xauth program; cannot forward with spoofing.");
2668 return 0;
2669 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002670 if (options.use_login) {
2671 packet_send_debug("X11 forwarding disabled; "
2672 "not compatible with UseLogin=yes.");
2673 return 0;
2674 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002675 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002676 debug("X11 display already set.");
2677 return 0;
2678 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002679 if (x11_create_display_inet(options.x11_display_offset,
2680 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002681 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002682 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002683 return 0;
2684 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002685 for (i = 0; s->x11_chanids[i] != -1; i++) {
2686 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002687 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002688 }
Kevin Steves366298c2001-12-19 17:58:01 +00002689
2690 /* Set up a suitable value for the DISPLAY variable. */
2691 if (gethostname(hostname, sizeof(hostname)) < 0)
2692 fatal("gethostname: %.100s", strerror(errno));
2693 /*
2694 * auth_display must be used as the displayname when the
2695 * authorization entry is added with xauth(1). This will be
2696 * different than the DISPLAY string for localhost displays.
2697 */
Damien Miller95c249f2002-02-05 12:11:34 +11002698 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002699 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002700 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002701 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002702 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002703 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002704 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002705 } else {
2706#ifdef IPADDR_IN_DISPLAY
2707 struct hostent *he;
2708 struct in_addr my_addr;
2709
2710 he = gethostbyname(hostname);
2711 if (he == NULL) {
2712 error("Can't get IP address for X11 DISPLAY.");
2713 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2714 return 0;
2715 }
2716 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002717 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002718 s->display_number, s->screen);
2719#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002720 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002721 s->display_number, s->screen);
2722#endif
2723 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002724 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002725 }
2726
Ben Lindstrom768176b2001-06-09 01:29:12 +00002727 return 1;
2728}
2729
Ben Lindstrombba81212001-06-25 05:01:22 +00002730static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002731do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002732{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002733 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002734}
2735
2736void
2737do_cleanup(Authctxt *authctxt)
2738{
2739 static int called = 0;
2740
2741 debug("do_cleanup");
2742
2743 /* no cleanup if we're in the child for login shell */
2744 if (is_child)
2745 return;
2746
2747 /* avoid double cleanup */
2748 if (called)
2749 return;
2750 called = 1;
2751
Darren Tucker9142e1c2007-08-16 23:28:04 +10002752 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002753 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002754
2755#ifdef USE_PAM
2756 if (options.use_pam) {
2757 sshpam_cleanup();
2758 sshpam_thread_cleanup();
2759 }
2760#endif
2761
2762 if (!authctxt->authenticated)
2763 return;
2764
Darren Tucker3e33cec2003-10-02 16:12:36 +10002765#ifdef KRB5
2766 if (options.kerberos_ticket_cleanup &&
2767 authctxt->krb5_ctx)
2768 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002769#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002770
2771#ifdef GSSAPI
2772 if (compat20 && options.gss_cleanup_creds)
2773 ssh_gssapi_cleanup_creds();
2774#endif
2775
2776 /* remove agent socket */
2777 auth_sock_cleanup_proc(authctxt->pw);
2778
2779 /*
2780 * Cleanup ptys/utmp only if privsep is disabled,
2781 * or if running in monitor.
2782 */
2783 if (!use_privsep || mm_is_monitor())
2784 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002785}