blob: 733b5a9095c225885a30dc50bd6cb767050fbb90 [file] [log] [blame]
Darren Tuckerc3dc4042010-01-08 17:09:50 +11001/* $OpenBSD: session.c,v 1.249 2009/11/20 00:15:41 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
274 if (compat20)
275 do_authenticated2(authctxt);
276 else
277 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000278
Darren Tucker3e33cec2003-10-02 16:12:36 +1000279 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000280}
281
Damien Millerb38eff82000-04-01 11:09:21 +1000282/*
Damien Millerb38eff82000-04-01 11:09:21 +1000283 * Prepares for an interactive session. This is called after the user has
284 * been successfully authenticated. During this message exchange, pseudo
285 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
286 * are requested, etc.
287 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000288static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000289do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000290{
291 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000292 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100293 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000294 int enable_compression_after_reply = 0;
295 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000296
297 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100298 if (s == NULL) {
299 error("no more sessions");
300 return;
301 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000302 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000303 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000304
Damien Millerb38eff82000-04-01 11:09:21 +1000305 /*
306 * We stay in this loop until the client requests to execute a shell
307 * or a command.
308 */
309 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000310 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000311
312 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100313 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000314
315 /* Process the packet. */
316 switch (type) {
317 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000318 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100319 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000320 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000321 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100322 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000323 break;
324 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000325 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000326 debug2("compression disabled");
327 break;
328 }
Damien Millerb38eff82000-04-01 11:09:21 +1000329 /* Enable compression after we have responded with SUCCESS. */
330 enable_compression_after_reply = 1;
331 success = 1;
332 break;
333
334 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000335 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000336 break;
337
338 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000339 s->auth_proto = packet_get_string(&proto_len);
340 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000341
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000342 screen_flag = packet_get_protocol_flags() &
343 SSH_PROTOFLAG_SCREEN_NUMBER;
344 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
345
346 if (packet_remaining() == 4) {
347 if (!screen_flag)
348 debug2("Buggy client: "
349 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000350 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000351 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000352 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000353 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100354 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000355 success = session_setup_x11fwd(s);
356 if (!success) {
357 xfree(s->auth_proto);
358 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000359 s->auth_proto = NULL;
360 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000361 }
Damien Millerb38eff82000-04-01 11:09:21 +1000362 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000363
364 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000365 if (!options.allow_agent_forwarding ||
366 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000367 debug("Authentication agent forwarding not permitted for this authentication.");
368 break;
369 }
370 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000371 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000372 break;
373
374 case SSH_CMSG_PORT_FORWARD_REQUEST:
375 if (no_port_forwarding_flag) {
376 debug("Port forwarding not permitted for this authentication.");
377 break;
378 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100379 if (!options.allow_tcp_forwarding) {
380 debug("Port forwarding not permitted.");
381 break;
382 }
Damien Millerb38eff82000-04-01 11:09:21 +1000383 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000384 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
385 options.gateway_ports) < 0) {
386 debug("Port forwarding failed.");
387 break;
388 }
Damien Millerb38eff82000-04-01 11:09:21 +1000389 success = 1;
390 break;
391
392 case SSH_CMSG_MAX_PACKET_SIZE:
393 if (packet_set_maxsize(packet_get_int()) > 0)
394 success = 1;
395 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100396
Damien Millerb38eff82000-04-01 11:09:21 +1000397 case SSH_CMSG_EXEC_SHELL:
398 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000399 if (type == SSH_CMSG_EXEC_CMD) {
400 command = packet_get_string(&dlen);
401 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000402 if (do_exec(s, command) != 0)
403 packet_disconnect(
404 "command execution failed");
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000405 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000407 if (do_exec(s, NULL) != 0)
408 packet_disconnect(
409 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000410 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100411 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000412 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000413 return;
414
415 default:
416 /*
417 * Any unknown messages in this phase are ignored,
418 * and a failure message is returned.
419 */
Damien Miller996acd22003-04-09 20:59:48 +1000420 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000421 }
422 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
423 packet_send();
424 packet_write_wait();
425
426 /* Enable compression now that we have replied if appropriate. */
427 if (enable_compression_after_reply) {
428 enable_compression_after_reply = 0;
429 packet_start_compression(compression_level);
430 }
431 }
432}
433
Damien Miller7207f642008-05-19 15:34:50 +1000434#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000435/*
436 * This is called to fork and execute a command when we have no tty. This
437 * will call do_child from the child, and server_loop from the parent after
438 * setting up file descriptors and such.
439 */
Damien Miller7207f642008-05-19 15:34:50 +1000440int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000441do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000442{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000443 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000444
445#ifdef USE_PIPES
446 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000447
Damien Millerb38eff82000-04-01 11:09:21 +1000448 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000449 if (pipe(pin) < 0) {
450 error("%s: pipe in: %.100s", __func__, strerror(errno));
451 return -1;
452 }
453 if (pipe(pout) < 0) {
454 error("%s: pipe out: %.100s", __func__, strerror(errno));
455 close(pin[0]);
456 close(pin[1]);
457 return -1;
458 }
459 if (pipe(perr) < 0) {
460 error("%s: pipe err: %.100s", __func__, strerror(errno));
461 close(pin[0]);
462 close(pin[1]);
463 close(pout[0]);
464 close(pout[1]);
465 return -1;
466 }
467#else
Damien Millerb38eff82000-04-01 11:09:21 +1000468 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000469
Damien Millerb38eff82000-04-01 11:09:21 +1000470 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000471 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
472 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
473 return -1;
474 }
475 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
476 error("%s: socketpair #2: %.100s", __func__, strerror(errno));
477 close(inout[0]);
478 close(inout[1]);
479 return -1;
480 }
481#endif
482
Damien Millerb38eff82000-04-01 11:09:21 +1000483 if (s == NULL)
484 fatal("do_exec_no_pty: no session");
485
Damien Millere247cc42000-05-07 12:03:14 +1000486 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000487
Damien Millerb38eff82000-04-01 11:09:21 +1000488 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000489 switch ((pid = fork())) {
490 case -1:
491 error("%s: fork: %.100s", __func__, strerror(errno));
492#ifdef USE_PIPES
493 close(pin[0]);
494 close(pin[1]);
495 close(pout[0]);
496 close(pout[1]);
497 close(perr[0]);
498 close(perr[1]);
499#else
500 close(inout[0]);
501 close(inout[1]);
502 close(err[0]);
503 close(err[1]);
504#endif
505 return -1;
506 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000507 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000508
Damien Millerb38eff82000-04-01 11:09:21 +1000509 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000510 log_init(__progname, options.log_level,
511 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000512
513 /*
514 * Create a new session and process group since the 4.4BSD
515 * setlogin() affects the entire process group.
516 */
517 if (setsid() < 0)
518 error("setsid failed: %.100s", strerror(errno));
519
520#ifdef USE_PIPES
521 /*
522 * Redirect stdin. We close the parent side of the socket
523 * pair, and make the child side the standard input.
524 */
525 close(pin[1]);
526 if (dup2(pin[0], 0) < 0)
527 perror("dup2 stdin");
528 close(pin[0]);
529
530 /* Redirect stdout. */
531 close(pout[0]);
532 if (dup2(pout[1], 1) < 0)
533 perror("dup2 stdout");
534 close(pout[1]);
535
536 /* Redirect stderr. */
537 close(perr[0]);
538 if (dup2(perr[1], 2) < 0)
539 perror("dup2 stderr");
540 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000541#else
Damien Millerb38eff82000-04-01 11:09:21 +1000542 /*
543 * Redirect stdin, stdout, and stderr. Stdin and stdout will
544 * use the same socket, as some programs (particularly rdist)
545 * seem to depend on it.
546 */
547 close(inout[1]);
548 close(err[1]);
549 if (dup2(inout[0], 0) < 0) /* stdin */
550 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000551 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000552 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000553 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000554 if (dup2(err[0], 2) < 0) /* stderr */
555 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000556 close(err[0]);
557#endif
558
Damien Millerb38eff82000-04-01 11:09:21 +1000559
Tim Rice81ed5182002-09-25 17:38:46 -0700560#ifdef _UNICOS
561 cray_init_job(s->pw); /* set up cray jid and tmpdir */
562#endif
563
Damien Millerb38eff82000-04-01 11:09:21 +1000564 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000565 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000566 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000567 default:
568 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000569 }
Damien Miller7207f642008-05-19 15:34:50 +1000570
Tim Rice81ed5182002-09-25 17:38:46 -0700571#ifdef _UNICOS
572 signal(WJSIGNAL, cray_job_termination_handler);
573#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100574#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100575 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100576#endif
Damien Miller7207f642008-05-19 15:34:50 +1000577
Damien Millerb38eff82000-04-01 11:09:21 +1000578 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000579 /* Set interactive/non-interactive mode. */
580 packet_set_interactive(s->display != NULL);
Damien Miller7207f642008-05-19 15:34:50 +1000581
582 /*
583 * Clear loginmsg, since it's the child's responsibility to display
584 * it to the user, otherwise multiple sessions may accumulate
585 * multiple copies of the login messages.
586 */
587 buffer_clear(&loginmsg);
588
Damien Millerb38eff82000-04-01 11:09:21 +1000589#ifdef USE_PIPES
590 /* We are the parent. Close the child sides of the pipes. */
591 close(pin[0]);
592 close(pout[1]);
593 close(perr[1]);
594
Damien Millerefb4afe2000-04-12 18:45:05 +1000595 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000596 if (s->is_subsystem) {
597 close(perr[0]);
598 perr[0] = -1;
599 }
Damien Millerd310d512008-06-16 07:59:23 +1000600 session_set_fds(s, pin[1], pout[0], perr[0], 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000601 } else {
602 /* Enter the interactive session. */
603 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000604 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000605 }
Damien Miller7207f642008-05-19 15:34:50 +1000606#else
Damien Millerb38eff82000-04-01 11:09:21 +1000607 /* We are the parent. Close the child sides of the socket pairs. */
608 close(inout[0]);
609 close(err[0]);
610
611 /*
612 * Enter the interactive session. Note: server_loop must be able to
613 * handle the case that fdin and fdout are the same.
614 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000615 if (compat20) {
Damien Miller7207f642008-05-19 15:34:50 +1000616 session_set_fds(s, inout[1], inout[1],
Damien Millerd310d512008-06-16 07:59:23 +1000617 s->is_subsystem ? -1 : err[1], 0);
Damien Miller7207f642008-05-19 15:34:50 +1000618 if (s->is_subsystem)
619 close(err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000620 } else {
621 server_loop(pid, inout[1], inout[1], err[1]);
622 /* server_loop has closed inout[1] and err[1]. */
623 }
Damien Miller7207f642008-05-19 15:34:50 +1000624#endif
625 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000626}
627
628/*
629 * This is called to fork and execute a command when we have a tty. This
630 * will call do_child from the child, and server_loop from the parent after
631 * setting up file descriptors, controlling tty, updating wtmp, utmp,
632 * lastlog, and other such operations.
633 */
Damien Miller7207f642008-05-19 15:34:50 +1000634int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000635do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000636{
Damien Millerb38eff82000-04-01 11:09:21 +1000637 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000638 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000639
640 if (s == NULL)
641 fatal("do_exec_pty: no session");
642 ptyfd = s->ptyfd;
643 ttyfd = s->ttyfd;
644
Damien Miller7207f642008-05-19 15:34:50 +1000645 /*
646 * Create another descriptor of the pty master side for use as the
647 * standard input. We could use the original descriptor, but this
648 * simplifies code in server_loop. The descriptor is bidirectional.
649 * Do this before forking (and cleanup in the child) so as to
650 * detect and gracefully fail out-of-fd conditions.
651 */
652 if ((fdout = dup(ptyfd)) < 0) {
653 error("%s: dup #1: %s", __func__, strerror(errno));
654 close(ttyfd);
655 close(ptyfd);
656 return -1;
657 }
658 /* we keep a reference to the pty master */
659 if ((ptymaster = dup(ptyfd)) < 0) {
660 error("%s: dup #2: %s", __func__, strerror(errno));
661 close(ttyfd);
662 close(ptyfd);
663 close(fdout);
664 return -1;
665 }
666
Damien Millerb38eff82000-04-01 11:09:21 +1000667 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000668 switch ((pid = fork())) {
669 case -1:
670 error("%s: fork: %.100s", __func__, strerror(errno));
671 close(fdout);
672 close(ptymaster);
673 close(ttyfd);
674 close(ptyfd);
675 return -1;
676 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000677 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000678
Damien Miller7207f642008-05-19 15:34:50 +1000679 close(fdout);
680 close(ptymaster);
681
Damien Miller942da032000-08-18 13:59:06 +1000682 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000683 log_init(__progname, options.log_level,
684 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000685 /* Close the master side of the pseudo tty. */
686 close(ptyfd);
687
688 /* Make the pseudo tty our controlling tty. */
689 pty_make_controlling_tty(&ttyfd, s->tty);
690
Damien Miller9c751422001-10-10 15:02:46 +1000691 /* Redirect stdin/stdout/stderr from the pseudo tty. */
692 if (dup2(ttyfd, 0) < 0)
693 error("dup2 stdin: %s", strerror(errno));
694 if (dup2(ttyfd, 1) < 0)
695 error("dup2 stdout: %s", strerror(errno));
696 if (dup2(ttyfd, 2) < 0)
697 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000698
699 /* Close the extra descriptor for the pseudo tty. */
700 close(ttyfd);
701
Damien Miller942da032000-08-18 13:59:06 +1000702 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000703#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700704 if (!(options.use_login && command == NULL)) {
705#ifdef _UNICOS
706 cray_init_job(s->pw); /* set up cray jid and tmpdir */
707#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100708 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700709 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000710# ifdef LOGIN_NEEDS_UTMPX
711 else
712 do_pre_login(s);
713# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000714#endif
Damien Miller7207f642008-05-19 15:34:50 +1000715 /*
716 * Do common processing for the child, such as execing
717 * the command.
718 */
Darren Tucker43e7a352009-06-21 19:50:08 +1000719 do_child(s, command);
720 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000721 default:
722 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000723 }
Damien Miller7207f642008-05-19 15:34:50 +1000724
Tim Rice81ed5182002-09-25 17:38:46 -0700725#ifdef _UNICOS
726 signal(WJSIGNAL, cray_job_termination_handler);
727#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100728#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100729 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100730#endif
Damien Miller7207f642008-05-19 15:34:50 +1000731
Damien Millerb38eff82000-04-01 11:09:21 +1000732 s->pid = pid;
733
734 /* Parent. Close the slave side of the pseudo tty. */
735 close(ttyfd);
736
Damien Millerb38eff82000-04-01 11:09:21 +1000737 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000738 s->ptymaster = ptymaster;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000739 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000740 if (compat20) {
Damien Millerd310d512008-06-16 07:59:23 +1000741 session_set_fds(s, ptyfd, fdout, -1, 1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000742 } else {
743 server_loop(pid, ptyfd, fdout, -1);
744 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000745 }
Damien Miller7207f642008-05-19 15:34:50 +1000746 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000747}
748
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000749#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000750static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000751do_pre_login(Session *s)
752{
753 socklen_t fromlen;
754 struct sockaddr_storage from;
755 pid_t pid = getpid();
756
757 /*
758 * Get IP address of client. If the connection is not a socket, let
759 * the address be 0.0.0.0.
760 */
761 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000762 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000763 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000764 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100765 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000766 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000767 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000768 }
769 }
770
771 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000772 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000773 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000774}
775#endif
776
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000777/*
778 * This is called to fork and execute a command. If another command is
779 * to be forced, execute that instead.
780 */
Damien Miller7207f642008-05-19 15:34:50 +1000781int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000782do_exec(Session *s, const char *command)
783{
Damien Miller7207f642008-05-19 15:34:50 +1000784 int ret;
785
Damien Millere2754432006-07-24 14:06:47 +1000786 if (options.adm_forced_command) {
787 original_command = command;
788 command = options.adm_forced_command;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100789 if (IS_INTERNAL_SFTP(command)) {
790 s->is_subsystem = s->is_subsystem ?
791 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
792 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100793 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000794 debug("Forced command (config) '%.900s'", command);
795 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000796 original_command = command;
797 command = forced_command;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100798 if (IS_INTERNAL_SFTP(command)) {
799 s->is_subsystem = s->is_subsystem ?
800 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
801 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100802 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000803 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000804 }
805
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100806#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100807 if (command != NULL)
808 PRIVSEP(audit_run_command(command));
809 else if (s->ttyfd == -1) {
810 char *shell = s->pw->pw_shell;
811
812 if (shell[0] == '\0') /* empty shell means /bin/sh */
813 shell =_PATH_BSHELL;
814 PRIVSEP(audit_run_command(shell));
815 }
816#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000817 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000818 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000819 else
Damien Miller7207f642008-05-19 15:34:50 +1000820 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000821
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000822 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000823
Darren Tucker09991742004-07-17 17:05:14 +1000824 /*
825 * Clear loginmsg: it's the child's responsibility to display
826 * it to the user, otherwise multiple sessions may accumulate
827 * multiple copies of the login messages.
828 */
829 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000830
831 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000832}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000833
Damien Miller942da032000-08-18 13:59:06 +1000834/* administrative, login(1)-like work */
835void
Damien Miller69b69aa2000-10-28 14:19:58 +1100836do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000837{
Damien Miller942da032000-08-18 13:59:06 +1000838 socklen_t fromlen;
839 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000840 struct passwd * pw = s->pw;
841 pid_t pid = getpid();
842
843 /*
844 * Get IP address of client. If the connection is not a socket, let
845 * the address be 0.0.0.0.
846 */
847 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000848 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000849 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000850 if (getpeername(packet_get_connection_in(),
Darren Tucker43e7a352009-06-21 19:50:08 +1000851 (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000852 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000853 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000854 }
855 }
856
857 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000858 if (!use_privsep)
859 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
860 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000861 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000862 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000863
Kevin Steves092f2ef2000-10-14 13:36:13 +0000864#ifdef USE_PAM
865 /*
866 * If password change is needed, do it now.
867 * This needs to occur before the ~/.hushlogin check.
868 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100869 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
870 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000871 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100872 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000873 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000874 }
875#endif
876
Damien Millercf205e82001-04-16 18:29:15 +1000877 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000878 return;
879
Darren Tucker1921ed92004-02-10 13:23:28 +1100880 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000881
Damien Millercf205e82001-04-16 18:29:15 +1000882 do_motd();
883}
884
885/*
886 * Display the message of the day.
887 */
888void
889do_motd(void)
890{
891 FILE *f;
892 char buf[256];
893
Damien Miller942da032000-08-18 13:59:06 +1000894 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000895#ifdef HAVE_LOGIN_CAP
896 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
897 "/etc/motd"), "r");
898#else
Damien Miller942da032000-08-18 13:59:06 +1000899 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000900#endif
Damien Miller942da032000-08-18 13:59:06 +1000901 if (f) {
902 while (fgets(buf, sizeof(buf), f))
903 fputs(buf, stdout);
904 fclose(f);
905 }
906 }
907}
908
Kevin Steves8f63caa2001-07-04 18:23:02 +0000909
910/*
911 * Check for quiet login, either .hushlogin or command given.
912 */
913int
914check_quietlogin(Session *s, const char *command)
915{
916 char buf[256];
917 struct passwd *pw = s->pw;
918 struct stat st;
919
920 /* Return 1 if .hushlogin exists or a command given. */
921 if (command != NULL)
922 return 1;
923 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
924#ifdef HAVE_LOGIN_CAP
925 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
926 return 1;
927#else
928 if (stat(buf, &st) >= 0)
929 return 1;
930#endif
931 return 0;
932}
933
Damien Millerb38eff82000-04-01 11:09:21 +1000934/*
935 * Sets the value of the given variable in the environment. If the variable
Darren Tucker63917bd2008-11-11 16:33:48 +1100936 * already exists, its value is overridden.
Damien Millerb38eff82000-04-01 11:09:21 +1000937 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000938void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000939child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100940 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000941{
Damien Millerb38eff82000-04-01 11:09:21 +1000942 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000943 u_int envsize;
944 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000945
946 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000947 * If we're passed an uninitialized list, allocate a single null
948 * entry before continuing.
949 */
950 if (*envp == NULL && *envsizep == 0) {
951 *envp = xmalloc(sizeof(char *));
952 *envp[0] = NULL;
953 *envsizep = 1;
954 }
955
956 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000957 * Find the slot where the value should be stored. If the variable
958 * already exists, we reuse the slot; otherwise we append a new slot
959 * at the end of the array, expanding if necessary.
960 */
961 env = *envp;
962 namelen = strlen(name);
963 for (i = 0; env[i]; i++)
964 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
965 break;
966 if (env[i]) {
967 /* Reuse the slot. */
968 xfree(env[i]);
969 } else {
970 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000971 envsize = *envsizep;
972 if (i >= envsize - 1) {
973 if (envsize >= 1000)
974 fatal("child_set_env: too many env vars");
975 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100976 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000977 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000978 }
979 /* Need to set the NULL pointer at end of array beyond the new slot. */
980 env[i + 1] = NULL;
981 }
982
983 /* Allocate space and format the variable in the appropriate slot. */
984 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
985 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
986}
987
988/*
989 * Reads environment variables from the given file and adds/overrides them
990 * into the environment. If the file does not exist, this does nothing.
991 * Otherwise, it must consist of empty lines, comments (line starts with '#')
992 * and assignments of the form name=value. No other forms are allowed.
993 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000994static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000995read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100996 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000997{
998 FILE *f;
999 char buf[4096];
1000 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +10001001 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001002
1003 f = fopen(filename, "r");
1004 if (!f)
1005 return;
1006
1007 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001008 if (++lineno > 1000)
1009 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001010 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1011 ;
1012 if (!*cp || *cp == '#' || *cp == '\n')
1013 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001014
1015 cp[strcspn(cp, "\n")] = '\0';
1016
Damien Millerb38eff82000-04-01 11:09:21 +10001017 value = strchr(cp, '=');
1018 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001019 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1020 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001021 continue;
1022 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001023 /*
1024 * Replace the equals sign by nul, and advance value to
1025 * the value string.
1026 */
Damien Millerb38eff82000-04-01 11:09:21 +10001027 *value = '\0';
1028 value++;
1029 child_set_env(env, envsize, cp, value);
1030 }
1031 fclose(f);
1032}
1033
Darren Tuckere1a790d2003-09-16 11:52:19 +10001034#ifdef HAVE_ETC_DEFAULT_LOGIN
1035/*
1036 * Return named variable from specified environment, or NULL if not present.
1037 */
1038static char *
1039child_get_env(char **env, const char *name)
1040{
1041 int i;
1042 size_t len;
1043
1044 len = strlen(name);
1045 for (i=0; env[i] != NULL; i++)
1046 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1047 return(env[i] + len + 1);
1048 return NULL;
1049}
1050
1051/*
1052 * Read /etc/default/login.
1053 * We pick up the PATH (or SUPATH for root) and UMASK.
1054 */
1055static void
1056read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1057{
1058 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001059 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001060 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001061
1062 /*
1063 * We don't want to copy the whole file to the child's environment,
1064 * so we use a temporary environment and copy the variables we're
1065 * interested in.
1066 */
1067 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1068
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001069 if (tmpenv == NULL)
1070 return;
1071
Darren Tuckere1a790d2003-09-16 11:52:19 +10001072 if (uid == 0)
1073 var = child_get_env(tmpenv, "SUPATH");
1074 else
1075 var = child_get_env(tmpenv, "PATH");
1076 if (var != NULL)
1077 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001078
Darren Tuckere1a790d2003-09-16 11:52:19 +10001079 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1080 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001081 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001082
Darren Tuckere1a790d2003-09-16 11:52:19 +10001083 for (i = 0; tmpenv[i] != NULL; i++)
1084 xfree(tmpenv[i]);
1085 xfree(tmpenv);
1086}
1087#endif /* HAVE_ETC_DEFAULT_LOGIN */
1088
Damien Miller7dff8692005-05-26 11:34:51 +10001089void
1090copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001091{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001092 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001093 int i;
1094
Damien Millerbb9ffc12002-01-08 10:59:32 +11001095 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001096 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001097
Damien Millerbb9ffc12002-01-08 10:59:32 +11001098 for(i = 0; source[i] != NULL; i++) {
1099 var_name = xstrdup(source[i]);
1100 if ((var_val = strstr(var_name, "=")) == NULL) {
1101 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001102 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001103 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001104 *var_val++ = '\0';
1105
1106 debug3("Copy environment: %s=%s", var_name, var_val);
1107 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001108
Damien Millerbb9ffc12002-01-08 10:59:32 +11001109 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001110 }
1111}
Damien Millercb5e44a2000-09-29 12:12:36 +11001112
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001113static char **
1114do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001115{
Damien Millerb38eff82000-04-01 11:09:21 +10001116 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001117 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001118 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001119 struct passwd *pw = s->pw;
Darren Tucker9d86e5d2009-03-08 11:40:27 +11001120#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
Damien Millerad5ecbf2006-07-24 15:03:06 +10001121 char *path = NULL;
1122#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001123
Damien Millerb38eff82000-04-01 11:09:21 +10001124 /* Initialize the environment. */
1125 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001126 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001127 env[0] = NULL;
1128
Damien Millerbac2d8a2000-09-05 16:13:06 +11001129#ifdef HAVE_CYGWIN
1130 /*
1131 * The Windows environment contains some setting which are
1132 * important for a running system. They must not be dropped.
1133 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001134 {
1135 char **p;
1136
1137 p = fetch_windows_environment();
1138 copy_environment(p, &env, &envsize);
1139 free_windows_environment(p);
1140 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001141#endif
1142
Darren Tucker0efd1552003-08-26 11:49:55 +10001143#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001144 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001145 * the childs environment as they see fit
1146 */
1147 ssh_gssapi_do_child(&env, &envsize);
1148#endif
1149
Damien Millerb38eff82000-04-01 11:09:21 +10001150 if (!options.use_login) {
1151 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001152 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001153 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001154 s->env[i].val);
1155
Damien Millerb38eff82000-04-01 11:09:21 +10001156 child_set_env(&env, &envsize, "USER", pw->pw_name);
1157 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001158#ifdef _AIX
1159 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1160#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001161 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001162#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001163 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1164 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1165 else
1166 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001167#else /* HAVE_LOGIN_CAP */
1168# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001169 /*
1170 * There's no standard path on Windows. The path contains
1171 * important components pointing to the system directories,
1172 * needed for loading shared libraries. So the path better
1173 * remains intact here.
1174 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001175# ifdef HAVE_ETC_DEFAULT_LOGIN
1176 read_etc_default_login(&env, &envsize, pw->pw_uid);
1177 path = child_get_env(env, "PATH");
1178# endif /* HAVE_ETC_DEFAULT_LOGIN */
1179 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001180 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001181 s->pw->pw_uid == 0 ?
1182 SUPERUSER_PATH : _PATH_STDPATH);
1183 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001184# endif /* HAVE_CYGWIN */
1185#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001186
1187 snprintf(buf, sizeof buf, "%.200s/%.50s",
1188 _PATH_MAILDIR, pw->pw_name);
1189 child_set_env(&env, &envsize, "MAIL", buf);
1190
1191 /* Normal systems set SHELL by default. */
1192 child_set_env(&env, &envsize, "SHELL", shell);
1193 }
1194 if (getenv("TZ"))
1195 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1196
1197 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001198 if (!options.use_login) {
1199 while (custom_environment) {
1200 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001201 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001202
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001203 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001204 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001205 if (str[i] == '=') {
1206 str[i] = 0;
1207 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001208 }
1209 custom_environment = ce->next;
1210 xfree(ce->s);
1211 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001212 }
Damien Millerb38eff82000-04-01 11:09:21 +10001213 }
1214
Damien Millerf37e2462002-09-19 11:47:55 +10001215 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001216 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001217 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001218 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1219
Damien Miller00111382003-03-10 11:21:17 +11001220 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001221 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001222 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1223 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001224 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1225
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001226 if (s->ttyfd != -1)
1227 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1228 if (s->term)
1229 child_set_env(&env, &envsize, "TERM", s->term);
1230 if (s->display)
1231 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001232 if (original_command)
1233 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1234 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001235
Tim Rice81ed5182002-09-25 17:38:46 -07001236#ifdef _UNICOS
1237 if (cray_tmpdir[0] != '\0')
1238 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1239#endif /* _UNICOS */
1240
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001241 /*
1242 * Since we clear KRB5CCNAME at startup, if it's set now then it
1243 * must have been set by a native authentication method (eg AIX or
1244 * SIA), so copy it to the child.
1245 */
1246 {
1247 char *cp;
1248
1249 if ((cp = getenv("KRB5CCNAME")) != NULL)
1250 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1251 }
1252
Damien Millerb38eff82000-04-01 11:09:21 +10001253#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001254 {
1255 char *cp;
1256
1257 if ((cp = getenv("AUTHSTATE")) != NULL)
1258 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001259 read_environment_file(&env, &envsize, "/etc/environment");
1260 }
Damien Millerb38eff82000-04-01 11:09:21 +10001261#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001262#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001263 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001264 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001265 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001266#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001267#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001268 /*
1269 * Pull in any environment variables that may have
1270 * been set by PAM.
1271 */
Damien Miller4e448a32003-05-14 15:11:48 +10001272 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001273 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001274
Damien Millerc756e9b2003-11-17 21:41:42 +11001275 p = fetch_pam_child_environment();
1276 copy_environment(p, &env, &envsize);
1277 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001278
Damien Millerc756e9b2003-11-17 21:41:42 +11001279 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001280 copy_environment(p, &env, &envsize);
1281 free_pam_environment(p);
1282 }
Damien Millerb38eff82000-04-01 11:09:21 +10001283#endif /* USE_PAM */
1284
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001285 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001286 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001287 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001288
1289 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001290 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001291 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001292 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001293 read_environment_file(&env, &envsize, buf);
1294 }
1295 if (debug_flag) {
1296 /* dump the environment */
1297 fprintf(stderr, "Environment:\n");
1298 for (i = 0; env[i]; i++)
1299 fprintf(stderr, " %.200s\n", env[i]);
1300 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001301 return env;
1302}
1303
1304/*
1305 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1306 * first in this order).
1307 */
1308static void
1309do_rc_files(Session *s, const char *shell)
1310{
1311 FILE *f = NULL;
1312 char cmd[1024];
1313 int do_xauth;
1314 struct stat st;
1315
1316 do_xauth =
1317 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1318
Damien Millera1b48cc2008-03-27 11:02:02 +11001319 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001320 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001321 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001322 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1323 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1324 if (debug_flag)
1325 fprintf(stderr, "Running %s\n", cmd);
1326 f = popen(cmd, "w");
1327 if (f) {
1328 if (do_xauth)
1329 fprintf(f, "%s %s\n", s->auth_proto,
1330 s->auth_data);
1331 pclose(f);
1332 } else
1333 fprintf(stderr, "Could not run %s\n",
1334 _PATH_SSH_USER_RC);
1335 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1336 if (debug_flag)
1337 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1338 _PATH_SSH_SYSTEM_RC);
1339 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1340 if (f) {
1341 if (do_xauth)
1342 fprintf(f, "%s %s\n", s->auth_proto,
1343 s->auth_data);
1344 pclose(f);
1345 } else
1346 fprintf(stderr, "Could not run %s\n",
1347 _PATH_SSH_SYSTEM_RC);
1348 } else if (do_xauth && options.xauth_location != NULL) {
1349 /* Add authority data to .Xauthority if appropriate. */
1350 if (debug_flag) {
1351 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001352 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001353 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001354 fprintf(stderr,
1355 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001356 options.xauth_location, s->auth_display,
1357 s->auth_proto, s->auth_data);
1358 }
1359 snprintf(cmd, sizeof cmd, "%s -q -",
1360 options.xauth_location);
1361 f = popen(cmd, "w");
1362 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001363 fprintf(f, "remove %s\n",
1364 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001365 fprintf(f, "add %s %s %s\n",
1366 s->auth_display, s->auth_proto,
1367 s->auth_data);
1368 pclose(f);
1369 } else {
1370 fprintf(stderr, "Could not run %s\n",
1371 cmd);
1372 }
1373 }
1374}
1375
1376static void
1377do_nologin(struct passwd *pw)
1378{
1379 FILE *f = NULL;
1380 char buf[1024];
1381
1382#ifdef HAVE_LOGIN_CAP
1383 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1384 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1385 _PATH_NOLOGIN), "r");
1386#else
1387 if (pw->pw_uid)
1388 f = fopen(_PATH_NOLOGIN, "r");
1389#endif
1390 if (f) {
1391 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001392 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001393 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001394 while (fgets(buf, sizeof(buf), f))
1395 fputs(buf, stderr);
1396 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001397 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001398 exit(254);
1399 }
1400}
1401
Damien Millerd8cb1f12008-02-10 22:40:12 +11001402/*
1403 * Chroot into a directory after checking it for safety: all path components
1404 * must be root-owned directories with strict permissions.
1405 */
1406static void
1407safely_chroot(const char *path, uid_t uid)
1408{
1409 const char *cp;
1410 char component[MAXPATHLEN];
1411 struct stat st;
1412
1413 if (*path != '/')
1414 fatal("chroot path does not begin at root");
1415 if (strlen(path) >= sizeof(component))
1416 fatal("chroot path too long");
1417
1418 /*
1419 * Descend the path, checking that each component is a
1420 * root-owned directory with strict permissions.
1421 */
1422 for (cp = path; cp != NULL;) {
1423 if ((cp = strchr(cp, '/')) == NULL)
1424 strlcpy(component, path, sizeof(component));
1425 else {
1426 cp++;
1427 memcpy(component, path, cp - path);
1428 component[cp - path] = '\0';
1429 }
1430
1431 debug3("%s: checking '%s'", __func__, component);
1432
1433 if (stat(component, &st) != 0)
1434 fatal("%s: stat(\"%s\"): %s", __func__,
1435 component, strerror(errno));
1436 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1437 fatal("bad ownership or modes for chroot "
1438 "directory %s\"%s\"",
1439 cp == NULL ? "" : "component ", component);
1440 if (!S_ISDIR(st.st_mode))
1441 fatal("chroot path %s\"%s\" is not a directory",
1442 cp == NULL ? "" : "component ", component);
1443
1444 }
1445
1446 if (chdir(path) == -1)
1447 fatal("Unable to chdir to chroot path \"%s\": "
1448 "%s", path, strerror(errno));
1449 if (chroot(path) == -1)
1450 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1451 if (chdir("/") == -1)
1452 fatal("%s: chdir(/) after chroot: %s",
1453 __func__, strerror(errno));
1454 verbose("Changed root directory to \"%s\"", path);
1455}
1456
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001457/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001458void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001459do_setusercontext(struct passwd *pw)
1460{
Damien Miller54e37732008-02-10 22:48:55 +11001461 char *chroot_path, *tmp;
1462
Darren Tuckerb8eb5862008-03-27 07:27:20 +11001463#ifdef WITH_SELINUX
1464 /* Cache selinux status for later use */
1465 (void)ssh_selinux_enabled();
1466#endif
1467
Damien Miller1a3ccb02003-02-24 13:04:01 +11001468#ifndef HAVE_CYGWIN
1469 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001470#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001471 {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001472#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001473# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001474 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001475# endif
Damien Millerd3526362004-01-23 14:16:26 +11001476# ifdef USE_PAM
1477 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001478 do_pam_setcred(use_privsep);
Damien Millerd3526362004-01-23 14:16:26 +11001479 }
1480# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001481 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001482 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001483 perror("unable to set user context");
1484 exit(1);
1485 }
1486#else
1487# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1488 /* Sets login uid for accounting */
1489 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1490 error("setluid: %s", strerror(errno));
1491# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1492
1493 if (setlogin(pw->pw_name) < 0)
1494 error("setlogin failed: %s", strerror(errno));
1495 if (setgid(pw->pw_gid) < 0) {
1496 perror("setgid");
1497 exit(1);
1498 }
1499 /* Initialize the group list. */
1500 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1501 perror("initgroups");
1502 exit(1);
1503 }
1504 endgrent();
1505# ifdef USE_PAM
1506 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001507 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001508 * These will have been wiped by the above initgroups() call.
1509 * Reestablish them here.
1510 */
Damien Miller341c6e62003-09-02 23:18:52 +10001511 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001512 do_pam_setcred(use_privsep);
Damien Miller341c6e62003-09-02 23:18:52 +10001513 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001514# endif /* USE_PAM */
1515# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1516 irix_setusercontext(pw);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001517# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001518# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001519 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001520# endif /* _AIX */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001521# ifdef USE_LIBIAF
Tim Rice2291c002005-08-26 13:15:19 -07001522 if (set_id(pw->pw_name) != 0) {
1523 exit(1);
1524 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001525# endif /* USE_LIBIAF */
1526#endif
1527
1528 if (options.chroot_directory != NULL &&
1529 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001530 tmp = tilde_expand_filename(options.chroot_directory,
1531 pw->pw_uid);
1532 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1533 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001534 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001535 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001536 free(chroot_path);
1537 }
1538
Darren Tucker82edf232009-08-20 16:20:50 +10001539#ifdef HAVE_SETPCRED
1540 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1541 fatal("Failed to set process credentials");
1542#endif /* HAVE_SETPCRED */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001543#ifdef HAVE_LOGIN_CAP
1544 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1545 perror("unable to set user context (setuser)");
1546 exit(1);
1547 }
1548#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001549 /* Permanently switch to the desired uid. */
1550 permanently_set_uid(pw);
1551#endif
1552 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001553
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001554 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1555 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001556
1557#ifdef WITH_SELINUX
1558 ssh_selinux_setup_exec_context(pw->pw_name);
1559#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001560}
1561
Ben Lindstrom08105192002-03-22 02:50:06 +00001562static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001563do_pwchange(Session *s)
1564{
Darren Tucker09991742004-07-17 17:05:14 +10001565 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001566 fprintf(stderr, "WARNING: Your password has expired.\n");
1567 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001568 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001569 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001570#ifdef PASSWD_NEEDS_USERNAME
1571 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1572 (char *)NULL);
1573#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001574 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001575#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001576 perror("passwd");
1577 } else {
1578 fprintf(stderr,
1579 "Password change required but no TTY available.\n");
1580 }
1581 exit(1);
1582}
1583
1584static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001585launch_login(struct passwd *pw, const char *hostname)
1586{
1587 /* Launch login(1). */
1588
Ben Lindstrom378a4172002-06-07 14:49:56 +00001589 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001590#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001591 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001592#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001593#ifdef LOGIN_NO_ENDOPT
1594 "-p", "-f", pw->pw_name, (char *)NULL);
1595#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001596 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001597#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001598
1599 /* Login couldn't be executed, die. */
1600
1601 perror("login");
1602 exit(1);
1603}
1604
Darren Tucker23bc8d02004-02-06 16:24:31 +11001605static void
1606child_close_fds(void)
1607{
1608 int i;
1609
1610 if (packet_get_connection_in() == packet_get_connection_out())
1611 close(packet_get_connection_in());
1612 else {
1613 close(packet_get_connection_in());
1614 close(packet_get_connection_out());
1615 }
1616 /*
1617 * Close all descriptors related to channels. They will still remain
1618 * open in the parent.
1619 */
1620 /* XXX better use close-on-exec? -markus */
1621 channel_close_all();
1622
1623 /*
1624 * Close any extra file descriptors. Note that there may still be
1625 * descriptors left by system functions. They will be closed later.
1626 */
1627 endpwent();
1628
1629 /*
Damien Miller788f2122005-11-05 15:14:59 +11001630 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001631 * hanging around in clients. Note that we want to do this after
1632 * initgroups, because at least on Solaris 2.3 it leaves file
1633 * descriptors open.
1634 */
1635 for (i = 3; i < 64; i++)
1636 close(i);
1637}
1638
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001639/*
1640 * Performs common processing for the child, such as setting up the
1641 * environment, closing extra file descriptors, setting the user and group
1642 * ids, and executing the command or shell.
1643 */
Damien Millerdfc24252008-02-10 22:29:40 +11001644#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001645void
1646do_child(Session *s, const char *command)
1647{
1648 extern char **environ;
1649 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001650 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001651 const char *shell, *shell0, *hostname = NULL;
1652 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001653 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001654
1655 /* remove hostkey from the child's memory */
1656 destroy_sensitive_data();
1657
Darren Tucker23bc8d02004-02-06 16:24:31 +11001658 /* Force a password change */
1659 if (s->authctxt->force_pwchange) {
1660 do_setusercontext(pw);
1661 child_close_fds();
1662 do_pwchange(s);
1663 exit(1);
1664 }
1665
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001666 /* login(1) is only called if we execute the login shell */
1667 if (options.use_login && command != NULL)
1668 options.use_login = 0;
1669
Tim Rice81ed5182002-09-25 17:38:46 -07001670#ifdef _UNICOS
1671 cray_setup(pw->pw_uid, pw->pw_name, command);
1672#endif /* _UNICOS */
1673
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001674 /*
1675 * Login(1) does this as well, and it needs uid 0 for the "-h"
1676 * switch, so we let login(1) to this for us.
1677 */
1678 if (!options.use_login) {
1679#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001680 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001681 if (!check_quietlogin(s, command))
1682 do_motd();
1683#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001684 /* When PAM is enabled we rely on it to do the nologin check */
1685 if (!options.use_pam)
1686 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001687 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001688 /*
1689 * PAM session modules in do_setusercontext may have
1690 * generated messages, so if this in an interactive
1691 * login then display them too.
1692 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001693 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001694 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001695#endif /* HAVE_OSF_SIA */
1696 }
1697
Darren Tucker69687f42004-09-11 22:17:26 +10001698#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001699 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1700 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001701 display_loginmsg();
1702 exit(254);
1703 }
1704#endif
1705
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001706 /*
1707 * Get the shell from the password data. An empty shell field is
1708 * legal, and means /bin/sh.
1709 */
1710 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001711
1712 /*
1713 * Make sure $SHELL points to the shell from the password file,
1714 * even if shell is overridden from login.conf
1715 */
1716 env = do_setup_env(s, shell);
1717
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001718#ifdef HAVE_LOGIN_CAP
1719 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1720#endif
1721
Damien Millerad833b32000-08-23 10:46:23 +10001722 /* we have to stash the hostname before we close our socket. */
1723 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001724 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001725 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001726 /*
1727 * Close the connection descriptors; note that this is the child, and
1728 * the server will still have the socket open, and it is important
1729 * that we do not shutdown it. Note that the descriptors cannot be
1730 * closed before building the environment, as we call
1731 * get_remote_ipaddr there.
1732 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001733 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001734
Damien Millerb38eff82000-04-01 11:09:21 +10001735 /*
Damien Miller05eda432002-02-10 18:32:28 +11001736 * Must take new environment into use so that .ssh/rc,
1737 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001738 */
1739 environ = env;
1740
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001741#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001742 /*
1743 * At this point, we check to see if AFS is active and if we have
1744 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1745 * if we can (and need to) extend the ticket into an AFS token. If
1746 * we don't do this, we run into potential problems if the user's
1747 * home directory is in AFS and it's not world-readable.
1748 */
1749
1750 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001751 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001752 char cell[64];
1753
1754 debug("Getting AFS token");
1755
1756 k_setpag();
1757
1758 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1759 krb5_afslog(s->authctxt->krb5_ctx,
1760 s->authctxt->krb5_fwd_ccache, cell, NULL);
1761
1762 krb5_afslog_home(s->authctxt->krb5_ctx,
1763 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1764 }
1765#endif
1766
Damien Miller788f2122005-11-05 15:14:59 +11001767 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001768 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001769 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001770#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001771 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001772#endif
Damien Miller6051c942008-06-16 07:53:16 +10001773 if (r || options.chroot_directory == NULL)
1774 fprintf(stderr, "Could not chdir to home "
1775 "directory %s: %s\n", pw->pw_dir,
1776 strerror(errno));
1777 if (r)
1778 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001779 }
1780
Damien Millera1939002008-03-15 17:27:58 +11001781 closefrom(STDERR_FILENO + 1);
1782
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001783 if (!options.use_login)
1784 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001785
1786 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001787 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001788
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001789 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1790 printf("This service allows sftp connections only.\n");
1791 fflush(NULL);
1792 exit(1);
1793 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001794 extern int optind, optreset;
1795 int i;
1796 char *p, *args;
1797
Darren Tuckerac46a912009-06-21 17:55:23 +10001798 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001799 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001800 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1801 if (i < ARGV_MAX - 1)
1802 argv[i++] = p;
1803 argv[i] = NULL;
1804 optind = optreset = 1;
1805 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001806#ifdef WITH_SELINUX
1807 ssh_selinux_change_context("sftpd_t");
1808#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001809 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001810 }
1811
Darren Tucker695ed392009-10-07 09:02:18 +11001812 fflush(NULL);
1813
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001814 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001815 launch_login(pw, hostname);
1816 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001817 }
1818
1819 /* Get the last component of the shell name. */
1820 if ((shell0 = strrchr(shell, '/')) != NULL)
1821 shell0++;
1822 else
1823 shell0 = shell;
1824
Damien Millerb38eff82000-04-01 11:09:21 +10001825 /*
1826 * If we have no command, execute the shell. In this case, the shell
1827 * name to be passed in argv[0] is preceded by '-' to indicate that
1828 * this is a login shell.
1829 */
1830 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001831 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001832
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001833 /* Start the shell. Set initial character to '-'. */
1834 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001835
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001836 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1837 >= sizeof(argv0) - 1) {
1838 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001839 perror(shell);
1840 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001841 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001842
1843 /* Execute the shell. */
1844 argv[0] = argv0;
1845 argv[1] = NULL;
1846 execve(shell, argv, env);
1847
1848 /* Executing the shell failed. */
1849 perror(shell);
1850 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001851 }
1852 /*
1853 * Execute the command using the user's shell. This uses the -c
1854 * option to execute the command.
1855 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001856 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001857 argv[1] = "-c";
1858 argv[2] = (char *) command;
1859 argv[3] = NULL;
1860 execve(shell, argv, env);
1861 perror(shell);
1862 exit(1);
1863}
1864
Damien Miller7207f642008-05-19 15:34:50 +10001865void
1866session_unused(int id)
1867{
1868 debug3("%s: session id %d unused", __func__, id);
1869 if (id >= options.max_sessions ||
1870 id >= sessions_nalloc) {
1871 fatal("%s: insane session id %d (max %d nalloc %d)",
1872 __func__, id, options.max_sessions, sessions_nalloc);
1873 }
1874 bzero(&sessions[id], sizeof(*sessions));
1875 sessions[id].self = id;
1876 sessions[id].used = 0;
1877 sessions[id].chanid = -1;
1878 sessions[id].ptyfd = -1;
1879 sessions[id].ttyfd = -1;
1880 sessions[id].ptymaster = -1;
1881 sessions[id].x11_chanids = NULL;
1882 sessions[id].next_unused = sessions_first_unused;
1883 sessions_first_unused = id;
1884}
1885
Damien Millerb38eff82000-04-01 11:09:21 +10001886Session *
1887session_new(void)
1888{
Damien Miller7207f642008-05-19 15:34:50 +10001889 Session *s, *tmp;
1890
1891 if (sessions_first_unused == -1) {
1892 if (sessions_nalloc >= options.max_sessions)
1893 return NULL;
1894 debug2("%s: allocate (allocated %d max %d)",
1895 __func__, sessions_nalloc, options.max_sessions);
1896 tmp = xrealloc(sessions, sessions_nalloc + 1,
1897 sizeof(*sessions));
1898 if (tmp == NULL) {
1899 error("%s: cannot allocate %d sessions",
1900 __func__, sessions_nalloc + 1);
1901 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001902 }
Damien Miller7207f642008-05-19 15:34:50 +10001903 sessions = tmp;
1904 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001905 }
Damien Miller7207f642008-05-19 15:34:50 +10001906
1907 if (sessions_first_unused >= sessions_nalloc ||
1908 sessions_first_unused < 0) {
1909 fatal("%s: insane first_unused %d max %d nalloc %d",
1910 __func__, sessions_first_unused, options.max_sessions,
1911 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001912 }
Damien Miller7207f642008-05-19 15:34:50 +10001913
1914 s = &sessions[sessions_first_unused];
1915 if (s->used) {
1916 fatal("%s: session %d already used",
1917 __func__, sessions_first_unused);
1918 }
1919 sessions_first_unused = s->next_unused;
1920 s->used = 1;
1921 s->next_unused = -1;
1922 debug("session_new: session %d", s->self);
1923
1924 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001925}
1926
Ben Lindstrombba81212001-06-25 05:01:22 +00001927static void
Damien Millerb38eff82000-04-01 11:09:21 +10001928session_dump(void)
1929{
1930 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001931 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001932 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001933
1934 debug("dump: used %d next_unused %d session %d %p "
1935 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001936 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001937 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001938 s->self,
1939 s,
1940 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001941 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001942 }
1943}
1944
Damien Millerefb4afe2000-04-12 18:45:05 +10001945int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001946session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001947{
1948 Session *s = session_new();
1949 debug("session_open: channel %d", chanid);
1950 if (s == NULL) {
1951 error("no more sessions");
1952 return 0;
1953 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001954 s->authctxt = authctxt;
1955 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001956 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001957 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001958 debug("session_open: session %d: link with channel %d", s->self, chanid);
1959 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001960 return 1;
1961}
1962
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001963Session *
1964session_by_tty(char *tty)
1965{
1966 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001967 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001968 Session *s = &sessions[i];
1969 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1970 debug("session_by_tty: session %d tty %s", i, tty);
1971 return s;
1972 }
1973 }
1974 debug("session_by_tty: unknown tty %.100s", tty);
1975 session_dump();
1976 return NULL;
1977}
1978
Ben Lindstrombba81212001-06-25 05:01:22 +00001979static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001980session_by_channel(int id)
1981{
1982 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001983 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001984 Session *s = &sessions[i];
1985 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001986 debug("session_by_channel: session %d channel %d",
1987 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001988 return s;
1989 }
1990 }
1991 debug("session_by_channel: unknown channel %d", id);
1992 session_dump();
1993 return NULL;
1994}
1995
Ben Lindstrombba81212001-06-25 05:01:22 +00001996static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001997session_by_x11_channel(int id)
1998{
1999 int i, j;
2000
Damien Miller7207f642008-05-19 15:34:50 +10002001 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002002 Session *s = &sessions[i];
2003
2004 if (s->x11_chanids == NULL || !s->used)
2005 continue;
2006 for (j = 0; s->x11_chanids[j] != -1; j++) {
2007 if (s->x11_chanids[j] == id) {
2008 debug("session_by_x11_channel: session %d "
2009 "channel %d", s->self, id);
2010 return s;
2011 }
2012 }
2013 }
2014 debug("session_by_x11_channel: unknown channel %d", id);
2015 session_dump();
2016 return NULL;
2017}
2018
2019static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002020session_by_pid(pid_t pid)
2021{
2022 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002023 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002024 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002025 Session *s = &sessions[i];
2026 if (s->used && s->pid == pid)
2027 return s;
2028 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002029 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002030 session_dump();
2031 return NULL;
2032}
2033
Ben Lindstrombba81212001-06-25 05:01:22 +00002034static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002035session_window_change_req(Session *s)
2036{
2037 s->col = packet_get_int();
2038 s->row = packet_get_int();
2039 s->xpixel = packet_get_int();
2040 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002041 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002042 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2043 return 1;
2044}
2045
Ben Lindstrombba81212001-06-25 05:01:22 +00002046static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002047session_pty_req(Session *s)
2048{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002049 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002050 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002051
Ben Lindstrom49c12602001-06-13 04:37:36 +00002052 if (no_pty_flag) {
2053 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002054 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002055 }
2056 if (s->ttyfd != -1) {
2057 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002058 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002059 }
2060
Damien Millerefb4afe2000-04-12 18:45:05 +10002061 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002062
2063 if (compat20) {
2064 s->col = packet_get_int();
2065 s->row = packet_get_int();
2066 } else {
2067 s->row = packet_get_int();
2068 s->col = packet_get_int();
2069 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002070 s->xpixel = packet_get_int();
2071 s->ypixel = packet_get_int();
2072
2073 if (strcmp(s->term, "") == 0) {
2074 xfree(s->term);
2075 s->term = NULL;
2076 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002077
Damien Millerefb4afe2000-04-12 18:45:05 +10002078 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002079 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002080 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2081 sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002082 if (s->term)
2083 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002084 s->term = NULL;
2085 s->ptyfd = -1;
2086 s->ttyfd = -1;
2087 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002088 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002089 }
2090 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002091
2092 /* for SSH1 the tty modes length is not given */
2093 if (!compat20)
2094 n_bytes = packet_remaining();
2095 tty_parse_modes(s->ttyfd, &n_bytes);
2096
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002097 if (!use_privsep)
2098 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002099
2100 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002101 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2102
Damien Miller48b03fc2002-01-22 23:11:40 +11002103 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002104 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002105 return 1;
2106}
2107
Ben Lindstrombba81212001-06-25 05:01:22 +00002108static int
Damien Millerbd483e72000-04-30 10:00:53 +10002109session_subsystem_req(Session *s)
2110{
Damien Millerae452462001-10-10 15:08:06 +10002111 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002112 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002113 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10002114 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10002115 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002116
Damien Miller48b03fc2002-01-22 23:11:40 +11002117 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10002118 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10002119
Damien Millerf6d9e222000-06-18 14:50:44 +10002120 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10002121 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002122 prog = options.subsystem_command[i];
2123 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002124 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11002125 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002126 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11002127 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002128 if (stat(prog, &st) < 0)
2129 debug("subsystem: cannot stat %s: %s",
2130 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11002131 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11002132 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10002133 }
Damien Miller7207f642008-05-19 15:34:50 +10002134 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002135 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002136 }
2137 }
2138
2139 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002140 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002141 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002142
Damien Millerbd483e72000-04-30 10:00:53 +10002143 xfree(subsys);
2144 return success;
2145}
2146
Ben Lindstrombba81212001-06-25 05:01:22 +00002147static int
Damien Millerbd483e72000-04-30 10:00:53 +10002148session_x11_req(Session *s)
2149{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002150 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002151
Damien Miller2b9b0452005-07-17 17:19:24 +10002152 if (s->auth_proto != NULL || s->auth_data != NULL) {
2153 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002154 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002155 return 0;
2156 }
Damien Millerbd483e72000-04-30 10:00:53 +10002157 s->single_connection = packet_get_char();
2158 s->auth_proto = packet_get_string(NULL);
2159 s->auth_data = packet_get_string(NULL);
2160 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002161 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002162
Ben Lindstrom768176b2001-06-09 01:29:12 +00002163 success = session_setup_x11fwd(s);
2164 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10002165 xfree(s->auth_proto);
2166 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002167 s->auth_proto = NULL;
2168 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002169 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002170 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002171}
2172
Ben Lindstrombba81212001-06-25 05:01:22 +00002173static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002174session_shell_req(Session *s)
2175{
Damien Miller48b03fc2002-01-22 23:11:40 +11002176 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002177 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002178}
2179
Ben Lindstrombba81212001-06-25 05:01:22 +00002180static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002181session_exec_req(Session *s)
2182{
Damien Miller7207f642008-05-19 15:34:50 +10002183 u_int len, success;
2184
Damien Millerf6d9e222000-06-18 14:50:44 +10002185 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002186 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002187 success = do_exec(s, command) == 0;
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00002188 xfree(command);
Damien Miller7207f642008-05-19 15:34:50 +10002189 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002190}
2191
Ben Lindstrombba81212001-06-25 05:01:22 +00002192static int
Damien Miller54c45982003-05-15 10:20:13 +10002193session_break_req(Session *s)
2194{
Damien Miller54c45982003-05-15 10:20:13 +10002195
Darren Tucker1f8311c2004-05-13 16:39:33 +10002196 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002197 packet_check_eom();
2198
Damien Miller7207f642008-05-19 15:34:50 +10002199 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002200 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002201 return 1;
2202}
2203
2204static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002205session_env_req(Session *s)
2206{
2207 char *name, *val;
2208 u_int name_len, val_len, i;
2209
2210 name = packet_get_string(&name_len);
2211 val = packet_get_string(&val_len);
2212 packet_check_eom();
2213
2214 /* Don't set too many environment variables */
2215 if (s->num_env > 128) {
2216 debug2("Ignoring env request %s: too many env vars", name);
2217 goto fail;
2218 }
2219
2220 for (i = 0; i < options.num_accept_env; i++) {
2221 if (match_pattern(name, options.accept_env[i])) {
2222 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002223 s->env = xrealloc(s->env, s->num_env + 1,
2224 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002225 s->env[s->num_env].name = name;
2226 s->env[s->num_env].val = val;
2227 s->num_env++;
2228 return (1);
2229 }
2230 }
2231 debug2("Ignoring env request %s: disallowed name", name);
2232
2233 fail:
2234 xfree(name);
2235 xfree(val);
2236 return (0);
2237}
2238
2239static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002240session_auth_agent_req(Session *s)
2241{
2242 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002243 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002244 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002245 debug("session_auth_agent_req: no_agent_forwarding_flag");
2246 return 0;
2247 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002248 if (called) {
2249 return 0;
2250 } else {
2251 called = 1;
2252 return auth_input_request_forwarding(s->pw);
2253 }
2254}
2255
Damien Millerc7ef63d2002-02-05 12:21:42 +11002256int
2257session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002258{
Damien Millerefb4afe2000-04-12 18:45:05 +10002259 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002260 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002261
Damien Millerc7ef63d2002-02-05 12:21:42 +11002262 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002263 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002264 c->self, rtype);
2265 return 0;
2266 }
2267 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002268
2269 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002270 * a session is in LARVAL state until a shell, a command
2271 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002272 */
2273 if (c->type == SSH_CHANNEL_LARVAL) {
2274 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002275 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002276 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002277 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002278 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002279 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002280 } else if (strcmp(rtype, "x11-req") == 0) {
2281 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002282 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2283 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002284 } else if (strcmp(rtype, "subsystem") == 0) {
2285 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002286 } else if (strcmp(rtype, "env") == 0) {
2287 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002288 }
2289 }
2290 if (strcmp(rtype, "window-change") == 0) {
2291 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002292 } else if (strcmp(rtype, "break") == 0) {
2293 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002294 }
Damien Millera6b1d162004-06-30 22:41:07 +10002295
Damien Millerc7ef63d2002-02-05 12:21:42 +11002296 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002297}
2298
2299void
Darren Tuckered3cdc02008-06-16 23:29:18 +10002300session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002301{
2302 if (!compat20)
2303 fatal("session_set_fds: called for proto != 2.0");
2304 /*
2305 * now that have a child and a pipe to the child,
2306 * we can activate our channel and register the fd's
2307 */
2308 if (s->chanid == -1)
2309 fatal("no channel for session %d", s->self);
2310 channel_set_fds(s->chanid,
2311 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002312 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002313 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002314}
2315
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002316/*
2317 * Function to perform pty cleanup. Also called if we get aborted abnormally
2318 * (e.g., due to a dropped connection).
2319 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002320void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002321session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002322{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002323 if (s == NULL) {
2324 error("session_pty_cleanup: no session");
2325 return;
2326 }
2327 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002328 return;
2329
Kevin Steves43cdef32001-02-11 14:12:08 +00002330 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002331
Damien Millerb38eff82000-04-01 11:09:21 +10002332 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002333 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002334 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002335
2336 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002337 if (getuid() == 0)
2338 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002339
2340 /*
2341 * Close the server side of the socket pairs. We must do this after
2342 * the pty cleanup, so that another process doesn't get this pty
2343 * while we're still cleaning up.
2344 */
Damien Miller7207f642008-05-19 15:34:50 +10002345 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2346 error("close(s->ptymaster/%d): %s",
2347 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002348
2349 /* unlink pty from session */
2350 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002351}
Damien Millerefb4afe2000-04-12 18:45:05 +10002352
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002353void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002354session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002355{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002356 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002357}
2358
Damien Miller5a80bba2002-09-04 16:39:02 +10002359static char *
2360sig2name(int sig)
2361{
2362#define SSH_SIG(x) if (sig == SIG ## x) return #x
2363 SSH_SIG(ABRT);
2364 SSH_SIG(ALRM);
2365 SSH_SIG(FPE);
2366 SSH_SIG(HUP);
2367 SSH_SIG(ILL);
2368 SSH_SIG(INT);
2369 SSH_SIG(KILL);
2370 SSH_SIG(PIPE);
2371 SSH_SIG(QUIT);
2372 SSH_SIG(SEGV);
2373 SSH_SIG(TERM);
2374 SSH_SIG(USR1);
2375 SSH_SIG(USR2);
2376#undef SSH_SIG
2377 return "SIG@openssh.com";
2378}
2379
Ben Lindstrombba81212001-06-25 05:01:22 +00002380static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002381session_close_x11(int id)
2382{
2383 Channel *c;
2384
Damien Millerd47c62a2005-12-13 19:33:57 +11002385 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002386 debug("session_close_x11: x11 channel %d missing", id);
2387 } else {
2388 /* Detach X11 listener */
2389 debug("session_close_x11: detach x11 channel %d", id);
2390 channel_cancel_cleanup(id);
2391 if (c->ostate != CHAN_OUTPUT_CLOSED)
2392 chan_mark_dead(c);
2393 }
2394}
2395
2396static void
2397session_close_single_x11(int id, void *arg)
2398{
2399 Session *s;
2400 u_int i;
2401
2402 debug3("session_close_single_x11: channel %d", id);
2403 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002404 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002405 fatal("session_close_single_x11: no x11 channel %d", id);
2406 for (i = 0; s->x11_chanids[i] != -1; i++) {
2407 debug("session_close_single_x11: session %d: "
2408 "closing channel %d", s->self, s->x11_chanids[i]);
2409 /*
2410 * The channel "id" is already closing, but make sure we
2411 * close all of its siblings.
2412 */
2413 if (s->x11_chanids[i] != id)
2414 session_close_x11(s->x11_chanids[i]);
2415 }
2416 xfree(s->x11_chanids);
2417 s->x11_chanids = NULL;
2418 if (s->display) {
2419 xfree(s->display);
2420 s->display = NULL;
2421 }
2422 if (s->auth_proto) {
2423 xfree(s->auth_proto);
2424 s->auth_proto = NULL;
2425 }
2426 if (s->auth_data) {
2427 xfree(s->auth_data);
2428 s->auth_data = NULL;
2429 }
2430 if (s->auth_display) {
2431 xfree(s->auth_display);
2432 s->auth_display = NULL;
2433 }
2434}
2435
2436static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002437session_exit_message(Session *s, int status)
2438{
2439 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002440
2441 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002442 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002443 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002444 debug("session_exit_message: session %d channel %d pid %ld",
2445 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002446
2447 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002448 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002449 packet_put_int(WEXITSTATUS(status));
2450 packet_send();
2451 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002452 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002453 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002454#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002455 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002456#else /* WCOREDUMP */
2457 packet_put_char(0);
2458#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002459 packet_put_cstring("");
2460 packet_put_cstring("");
2461 packet_send();
2462 } else {
2463 /* Some weird exit cause. Just exit. */
2464 packet_disconnect("wait returned status %04x.", status);
2465 }
2466
2467 /* disconnect channel */
2468 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002469
2470 /*
2471 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002472 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002473 * by session_close_by_channel when the childs close their fds.
2474 */
2475 channel_register_cleanup(c->self, session_close_by_channel, 1);
2476
Damien Miller166fca82000-04-20 07:42:21 +10002477 /*
2478 * emulate a write failure with 'chan_write_failed', nobody will be
2479 * interested in data we write.
2480 * Note that we must not call 'chan_read_failed', since there could
2481 * be some more data waiting in the pipe.
2482 */
Damien Millerbd483e72000-04-30 10:00:53 +10002483 if (c->ostate != CHAN_OUTPUT_CLOSED)
2484 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002485}
2486
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002487void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002488session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002489{
Damien Millereccb9de2005-06-17 12:59:34 +10002490 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002491
Ben Lindstromce0f6342002-06-11 16:42:49 +00002492 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002493 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002494 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002495 if (s->term)
2496 xfree(s->term);
2497 if (s->display)
2498 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002499 if (s->x11_chanids)
2500 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002501 if (s->auth_display)
2502 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002503 if (s->auth_data)
2504 xfree(s->auth_data);
2505 if (s->auth_proto)
2506 xfree(s->auth_proto);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002507 if (s->env != NULL) {
2508 for (i = 0; i < s->num_env; i++) {
2509 xfree(s->env[i].name);
2510 xfree(s->env[i].val);
2511 }
Darren Tucker46bc0752004-05-02 22:11:30 +10002512 xfree(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002513 }
Damien Millere247cc42000-05-07 12:03:14 +10002514 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002515 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002516}
2517
2518void
2519session_close_by_pid(pid_t pid, int status)
2520{
2521 Session *s = session_by_pid(pid);
2522 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002523 debug("session_close_by_pid: no session for pid %ld",
2524 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002525 return;
2526 }
2527 if (s->chanid != -1)
2528 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002529 if (s->ttyfd != -1)
2530 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002531 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002532}
2533
2534/*
2535 * this is called when a channel dies before
2536 * the session 'child' itself dies
2537 */
2538void
2539session_close_by_channel(int id, void *arg)
2540{
2541 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002542 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002543
Damien Millerefb4afe2000-04-12 18:45:05 +10002544 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002545 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002546 return;
2547 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002548 debug("session_close_by_channel: channel %d child %ld",
2549 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002550 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002551 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002552 /*
2553 * delay detach of session, but release pty, since
2554 * the fd's to the child are already closed
2555 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002556 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002557 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002558 return;
2559 }
2560 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002561 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002562
2563 /* Close any X11 listeners associated with this session */
2564 if (s->x11_chanids != NULL) {
2565 for (i = 0; s->x11_chanids[i] != -1; i++) {
2566 session_close_x11(s->x11_chanids[i]);
2567 s->x11_chanids[i] = -1;
2568 }
2569 }
2570
Damien Millerefb4afe2000-04-12 18:45:05 +10002571 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002572 session_close(s);
2573}
2574
2575void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002576session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002577{
2578 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002579 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002580 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002581 if (s->used) {
2582 if (closefunc != NULL)
2583 closefunc(s);
2584 else
2585 session_close(s);
2586 }
Damien Miller52b77be2001-10-10 15:14:37 +10002587 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002588}
2589
Ben Lindstrombba81212001-06-25 05:01:22 +00002590static char *
Damien Millere247cc42000-05-07 12:03:14 +10002591session_tty_list(void)
2592{
2593 static char buf[1024];
2594 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002595 char *cp;
2596
Damien Millere247cc42000-05-07 12:03:14 +10002597 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002598 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002599 Session *s = &sessions[i];
2600 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002601
Damien Millera8ed44b2003-01-10 09:53:12 +11002602 if (strncmp(s->tty, "/dev/", 5) != 0) {
2603 cp = strrchr(s->tty, '/');
2604 cp = (cp == NULL) ? s->tty : cp + 1;
2605 } else
2606 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002607
Damien Millere247cc42000-05-07 12:03:14 +10002608 if (buf[0] != '\0')
2609 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002610 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002611 }
2612 }
2613 if (buf[0] == '\0')
2614 strlcpy(buf, "notty", sizeof buf);
2615 return buf;
2616}
2617
2618void
2619session_proctitle(Session *s)
2620{
2621 if (s->pw == NULL)
2622 error("no user for session %d", s->self);
2623 else
2624 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2625}
2626
Ben Lindstrom768176b2001-06-09 01:29:12 +00002627int
2628session_setup_x11fwd(Session *s)
2629{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002630 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002631 char display[512], auth_display[512];
2632 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002633 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002634
2635 if (no_x11_forwarding_flag) {
2636 packet_send_debug("X11 forwarding disabled in user configuration file.");
2637 return 0;
2638 }
2639 if (!options.x11_forwarding) {
2640 debug("X11 forwarding disabled in server configuration file.");
2641 return 0;
2642 }
2643 if (!options.xauth_location ||
2644 (stat(options.xauth_location, &st) == -1)) {
2645 packet_send_debug("No xauth program; cannot forward with spoofing.");
2646 return 0;
2647 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002648 if (options.use_login) {
2649 packet_send_debug("X11 forwarding disabled; "
2650 "not compatible with UseLogin=yes.");
2651 return 0;
2652 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002653 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002654 debug("X11 display already set.");
2655 return 0;
2656 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002657 if (x11_create_display_inet(options.x11_display_offset,
2658 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002659 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002660 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002661 return 0;
2662 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002663 for (i = 0; s->x11_chanids[i] != -1; i++) {
2664 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002665 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002666 }
Kevin Steves366298c2001-12-19 17:58:01 +00002667
2668 /* Set up a suitable value for the DISPLAY variable. */
2669 if (gethostname(hostname, sizeof(hostname)) < 0)
2670 fatal("gethostname: %.100s", strerror(errno));
2671 /*
2672 * auth_display must be used as the displayname when the
2673 * authorization entry is added with xauth(1). This will be
2674 * different than the DISPLAY string for localhost displays.
2675 */
Damien Miller95c249f2002-02-05 12:11:34 +11002676 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002677 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002678 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002679 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002680 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002681 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002682 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002683 } else {
2684#ifdef IPADDR_IN_DISPLAY
2685 struct hostent *he;
2686 struct in_addr my_addr;
2687
2688 he = gethostbyname(hostname);
2689 if (he == NULL) {
2690 error("Can't get IP address for X11 DISPLAY.");
2691 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2692 return 0;
2693 }
2694 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002695 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002696 s->display_number, s->screen);
2697#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002698 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002699 s->display_number, s->screen);
2700#endif
2701 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002702 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002703 }
2704
Ben Lindstrom768176b2001-06-09 01:29:12 +00002705 return 1;
2706}
2707
Ben Lindstrombba81212001-06-25 05:01:22 +00002708static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002709do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002710{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002711 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002712}
2713
2714void
2715do_cleanup(Authctxt *authctxt)
2716{
2717 static int called = 0;
2718
2719 debug("do_cleanup");
2720
2721 /* no cleanup if we're in the child for login shell */
2722 if (is_child)
2723 return;
2724
2725 /* avoid double cleanup */
2726 if (called)
2727 return;
2728 called = 1;
2729
Darren Tucker9142e1c2007-08-16 23:28:04 +10002730 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002731 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002732
2733#ifdef USE_PAM
2734 if (options.use_pam) {
2735 sshpam_cleanup();
2736 sshpam_thread_cleanup();
2737 }
2738#endif
2739
2740 if (!authctxt->authenticated)
2741 return;
2742
Darren Tucker3e33cec2003-10-02 16:12:36 +10002743#ifdef KRB5
2744 if (options.kerberos_ticket_cleanup &&
2745 authctxt->krb5_ctx)
2746 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002747#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002748
2749#ifdef GSSAPI
2750 if (compat20 && options.gss_cleanup_creds)
2751 ssh_gssapi_cleanup_creds();
2752#endif
2753
2754 /* remove agent socket */
2755 auth_sock_cleanup_proc(authctxt->pw);
2756
2757 /*
2758 * Cleanup ptys/utmp only if privsep is disabled,
2759 * or if running in monitor.
2760 */
2761 if (!use_privsep || mm_is_monitor())
2762 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002763}