blob: 7a97ae8d6a54da95ad01e6a2243405e954e673dd [file] [log] [blame]
Damien Miller767087b2008-03-07 18:32:42 +11001/* $OpenBSD: session.c,v 1.229 2008/02/20 15:25:26 markus Exp $ */
Damien Millerb38eff82000-04-01 11:09:21 +10002/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 *
Damien Millerefb4afe2000-04-12 18:45:05 +100012 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100034 */
Damien Millerb38eff82000-04-01 11:09:21 +100035
36#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110037
38#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100039#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110040#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100045#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110046
Damien Miller1cdde6f2006-07-24 14:07:35 +100047#include <arpa/inet.h>
48
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien 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 Millerd7834352006-08-05 12:39:39 +100062#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100063#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000064#include "ssh1.h"
65#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000066#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100067#include "packet.h"
68#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100069#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100070#include "uidswap.h"
71#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000072#include "channels.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "key.h"
74#include "cipher.h"
75#ifdef GSSAPI
76#include "ssh-gss.h"
77#endif
78#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100079#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100080#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "pathnames.h"
82#include "log.h"
83#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000084#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000085#include "serverloop.h"
86#include "canohost.h"
Damien Millerd8cb1f12008-02-10 22:40:12 +110087#include "misc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000088#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100089#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110091#include "sftp.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100092
Darren Tucker3c78c5e2004-01-23 22:03:10 +110093#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110094#include <kafs.h>
95#endif
96
Damien Millerb38eff82000-04-01 11:09:21 +100097/* func */
98
99Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000100void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000101void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000102void session_proctitle(Session *);
103int session_setup_x11fwd(Session *);
104void do_exec_pty(Session *, const char *);
105void do_exec_no_pty(Session *, const char *);
106void do_exec(Session *, const char *);
107void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000108#ifdef LOGIN_NEEDS_UTMPX
109static void do_pre_login(Session *s);
110#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000111void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000112void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000113int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000114
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static void do_authenticated1(Authctxt *);
116static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000117
Ben Lindstrombba81212001-06-25 05:01:22 +0000118static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000119
Damien Millerb38eff82000-04-01 11:09:21 +1000120/* import */
121extern ServerOptions options;
122extern char *__progname;
123extern int log_stderr;
124extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000125extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000126extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000127extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000128extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000129
Damien Miller7b28dc52000-09-05 13:34:53 +1100130/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000131const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100132
Damien Millerb38eff82000-04-01 11:09:21 +1000133/* data */
Damien Millerd8cb1f12008-02-10 22:40:12 +1100134#define MAX_SESSIONS 20
Damien Millerb38eff82000-04-01 11:09:21 +1000135Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100136
Damien Millerdfc24252008-02-10 22:29:40 +1100137#define SUBSYSTEM_NONE 0
138#define SUBSYSTEM_EXT 1
139#define SUBSYSTEM_INT_SFTP 2
140
Damien Millerad833b32000-08-23 10:46:23 +1000141#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000142login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000143#endif
144
Darren Tucker3e33cec2003-10-02 16:12:36 +1000145static int is_child = 0;
146
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000147/* Name and directory of socket for authentication agent forwarding. */
148static char *auth_sock_name = NULL;
149static char *auth_sock_dir = NULL;
150
151/* removes the agent forwarding socket */
152
153static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000154auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000155{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000156 if (auth_sock_name != NULL) {
157 temporarily_use_uid(pw);
158 unlink(auth_sock_name);
159 rmdir(auth_sock_dir);
160 auth_sock_name = NULL;
161 restore_uid();
162 }
163}
164
165static int
166auth_input_request_forwarding(struct passwd * pw)
167{
168 Channel *nc;
169 int sock;
170 struct sockaddr_un sunaddr;
171
172 if (auth_sock_name != NULL) {
173 error("authentication forwarding requested twice.");
174 return 0;
175 }
176
177 /* Temporarily drop privileged uid for mkdir/bind. */
178 temporarily_use_uid(pw);
179
180 /* Allocate a buffer for the socket name, and format the name. */
181 auth_sock_name = xmalloc(MAXPATHLEN);
182 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000183 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000184
185 /* Create private directory for socket */
186 if (mkdtemp(auth_sock_dir) == NULL) {
187 packet_send_debug("Agent forwarding disabled: "
188 "mkdtemp() failed: %.100s", strerror(errno));
189 restore_uid();
190 xfree(auth_sock_name);
191 xfree(auth_sock_dir);
192 auth_sock_name = NULL;
193 auth_sock_dir = NULL;
194 return 0;
195 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000196 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
197 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000198
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000199 /* Create the socket. */
200 sock = socket(AF_UNIX, SOCK_STREAM, 0);
201 if (sock < 0)
202 packet_disconnect("socket: %.100s", strerror(errno));
203
204 /* Bind it to the name. */
205 memset(&sunaddr, 0, sizeof(sunaddr));
206 sunaddr.sun_family = AF_UNIX;
207 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
208
Damien Miller90967402006-03-26 14:07:26 +1100209 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000210 packet_disconnect("bind: %.100s", strerror(errno));
211
212 /* Restore the privileged uid. */
213 restore_uid();
214
215 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100216 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000217 packet_disconnect("listen: %.100s", strerror(errno));
218
219 /* Allocate a channel for the authentication agent socket. */
220 nc = channel_new("auth socket",
221 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
222 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000223 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000224 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
225 return 1;
226}
227
Darren Tucker1921ed92004-02-10 13:23:28 +1100228static void
229display_loginmsg(void)
230{
Damien Miller46d38de2005-07-17 17:02:09 +1000231 if (buffer_len(&loginmsg) > 0) {
232 buffer_append(&loginmsg, "\0", 1);
233 printf("%s", (char *)buffer_ptr(&loginmsg));
234 buffer_clear(&loginmsg);
235 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100236}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000237
Ben Lindstromb31783d2001-03-22 02:02:12 +0000238void
239do_authenticated(Authctxt *authctxt)
240{
Damien Miller97f39ae2003-02-24 11:57:01 +1100241 setproctitle("%s", authctxt->pw->pw_name);
242
Ben Lindstromb31783d2001-03-22 02:02:12 +0000243 /* setup the channel layer */
244 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
245 channel_permit_all_opens();
246
247 if (compat20)
248 do_authenticated2(authctxt);
249 else
250 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000251
Darren Tucker3e33cec2003-10-02 16:12:36 +1000252 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000253}
254
Damien Millerb38eff82000-04-01 11:09:21 +1000255/*
Damien Millerb38eff82000-04-01 11:09:21 +1000256 * Prepares for an interactive session. This is called after the user has
257 * been successfully authenticated. During this message exchange, pseudo
258 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
259 * are requested, etc.
260 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000261static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000262do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000263{
264 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000265 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100266 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000267 int enable_compression_after_reply = 0;
268 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000269
270 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100271 if (s == NULL) {
272 error("no more sessions");
273 return;
274 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000275 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000276 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000277
Damien Millerb38eff82000-04-01 11:09:21 +1000278 /*
279 * We stay in this loop until the client requests to execute a shell
280 * or a command.
281 */
282 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000283 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000284
285 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100286 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000287
288 /* Process the packet. */
289 switch (type) {
290 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000291 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100292 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000293 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000294 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100295 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000296 break;
297 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000298 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000299 debug2("compression disabled");
300 break;
301 }
Damien Millerb38eff82000-04-01 11:09:21 +1000302 /* Enable compression after we have responded with SUCCESS. */
303 enable_compression_after_reply = 1;
304 success = 1;
305 break;
306
307 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000308 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000309 break;
310
311 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000312 s->auth_proto = packet_get_string(&proto_len);
313 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000314
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000315 screen_flag = packet_get_protocol_flags() &
316 SSH_PROTOFLAG_SCREEN_NUMBER;
317 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
318
319 if (packet_remaining() == 4) {
320 if (!screen_flag)
321 debug2("Buggy client: "
322 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000323 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000324 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000325 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000326 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100327 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000328 success = session_setup_x11fwd(s);
329 if (!success) {
330 xfree(s->auth_proto);
331 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000332 s->auth_proto = NULL;
333 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000334 }
Damien Millerb38eff82000-04-01 11:09:21 +1000335 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000336
337 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
338 if (no_agent_forwarding_flag || compat13) {
339 debug("Authentication agent forwarding not permitted for this authentication.");
340 break;
341 }
342 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000343 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000344 break;
345
346 case SSH_CMSG_PORT_FORWARD_REQUEST:
347 if (no_port_forwarding_flag) {
348 debug("Port forwarding not permitted for this authentication.");
349 break;
350 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100351 if (!options.allow_tcp_forwarding) {
352 debug("Port forwarding not permitted.");
353 break;
354 }
Damien Millerb38eff82000-04-01 11:09:21 +1000355 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000356 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
357 options.gateway_ports) < 0) {
358 debug("Port forwarding failed.");
359 break;
360 }
Damien Millerb38eff82000-04-01 11:09:21 +1000361 success = 1;
362 break;
363
364 case SSH_CMSG_MAX_PACKET_SIZE:
365 if (packet_set_maxsize(packet_get_int()) > 0)
366 success = 1;
367 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100368
Damien Millerb38eff82000-04-01 11:09:21 +1000369 case SSH_CMSG_EXEC_SHELL:
370 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000371 if (type == SSH_CMSG_EXEC_CMD) {
372 command = packet_get_string(&dlen);
373 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000374 do_exec(s, command);
375 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000376 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000377 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000378 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100379 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000380 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000381 return;
382
383 default:
384 /*
385 * Any unknown messages in this phase are ignored,
386 * and a failure message is returned.
387 */
Damien Miller996acd22003-04-09 20:59:48 +1000388 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000389 }
390 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
391 packet_send();
392 packet_write_wait();
393
394 /* Enable compression now that we have replied if appropriate. */
395 if (enable_compression_after_reply) {
396 enable_compression_after_reply = 0;
397 packet_start_compression(compression_level);
398 }
399 }
400}
401
402/*
403 * This is called to fork and execute a command when we have no tty. This
404 * will call do_child from the child, and server_loop from the parent after
405 * setting up file descriptors and such.
406 */
Damien Miller4af51302000-04-16 11:18:38 +1000407void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000408do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000409{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000410 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000411
412#ifdef USE_PIPES
413 int pin[2], pout[2], perr[2];
414 /* Allocate pipes for communicating with the program. */
415 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
416 packet_disconnect("Could not create pipes: %.100s",
417 strerror(errno));
418#else /* USE_PIPES */
419 int inout[2], err[2];
420 /* Uses socket pairs to communicate with the program. */
421 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
422 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
423 packet_disconnect("Could not create socket pairs: %.100s",
424 strerror(errno));
425#endif /* USE_PIPES */
426 if (s == NULL)
427 fatal("do_exec_no_pty: no session");
428
Damien Millere247cc42000-05-07 12:03:14 +1000429 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000430
Damien Millerc5946332001-02-28 11:46:11 +1100431#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100432 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000433 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000434#endif /* USE_PAM */
435
Damien Millerb38eff82000-04-01 11:09:21 +1000436 /* Fork the child. */
437 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000438 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000439
Damien Millerb38eff82000-04-01 11:09:21 +1000440 /* Child. Reinitialize the log since the pid has changed. */
441 log_init(__progname, options.log_level, options.log_facility, log_stderr);
442
443 /*
444 * Create a new session and process group since the 4.4BSD
445 * setlogin() affects the entire process group.
446 */
447 if (setsid() < 0)
448 error("setsid failed: %.100s", strerror(errno));
449
450#ifdef USE_PIPES
451 /*
452 * Redirect stdin. We close the parent side of the socket
453 * pair, and make the child side the standard input.
454 */
455 close(pin[1]);
456 if (dup2(pin[0], 0) < 0)
457 perror("dup2 stdin");
458 close(pin[0]);
459
460 /* Redirect stdout. */
461 close(pout[0]);
462 if (dup2(pout[1], 1) < 0)
463 perror("dup2 stdout");
464 close(pout[1]);
465
466 /* Redirect stderr. */
467 close(perr[0]);
468 if (dup2(perr[1], 2) < 0)
469 perror("dup2 stderr");
470 close(perr[1]);
471#else /* USE_PIPES */
472 /*
473 * Redirect stdin, stdout, and stderr. Stdin and stdout will
474 * use the same socket, as some programs (particularly rdist)
475 * seem to depend on it.
476 */
477 close(inout[1]);
478 close(err[1]);
479 if (dup2(inout[0], 0) < 0) /* stdin */
480 perror("dup2 stdin");
481 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
482 perror("dup2 stdout");
483 if (dup2(err[0], 2) < 0) /* stderr */
484 perror("dup2 stderr");
485#endif /* USE_PIPES */
486
Tim Rice81ed5182002-09-25 17:38:46 -0700487#ifdef _UNICOS
488 cray_init_job(s->pw); /* set up cray jid and tmpdir */
489#endif
490
Damien Miller76e95da2008-03-07 18:31:24 +1100491 closefrom(STDERR_FILENO + 1);
492
Damien Millerb38eff82000-04-01 11:09:21 +1000493 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000494 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000495 /* NOTREACHED */
496 }
Tim Rice81ed5182002-09-25 17:38:46 -0700497#ifdef _UNICOS
498 signal(WJSIGNAL, cray_job_termination_handler);
499#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100500#ifdef HAVE_CYGWIN
501 if (is_winnt)
502 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
503#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000504 if (pid < 0)
505 packet_disconnect("fork failed: %.100s", strerror(errno));
506 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000507 /* Set interactive/non-interactive mode. */
508 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000509#ifdef USE_PIPES
510 /* We are the parent. Close the child sides of the pipes. */
511 close(pin[0]);
512 close(pout[1]);
513 close(perr[1]);
514
Damien Millerefb4afe2000-04-12 18:45:05 +1000515 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000516 if (s->is_subsystem) {
517 close(perr[0]);
518 perr[0] = -1;
519 }
520 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000521 } else {
522 /* Enter the interactive session. */
523 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000524 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000525 }
Damien Millerb38eff82000-04-01 11:09:21 +1000526#else /* USE_PIPES */
527 /* We are the parent. Close the child sides of the socket pairs. */
528 close(inout[0]);
529 close(err[0]);
530
531 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100532 * Clear loginmsg, since it's the child's responsibility to display
533 * it to the user, otherwise multiple sessions may accumulate
534 * multiple copies of the login messages.
535 */
536 buffer_clear(&loginmsg);
537
538 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000539 * Enter the interactive session. Note: server_loop must be able to
540 * handle the case that fdin and fdout are the same.
541 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000542 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000543 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000544 } else {
545 server_loop(pid, inout[1], inout[1], err[1]);
546 /* server_loop has closed inout[1] and err[1]. */
547 }
Damien Millerb38eff82000-04-01 11:09:21 +1000548#endif /* USE_PIPES */
549}
550
551/*
552 * This is called to fork and execute a command when we have a tty. This
553 * will call do_child from the child, and server_loop from the parent after
554 * setting up file descriptors, controlling tty, updating wtmp, utmp,
555 * lastlog, and other such operations.
556 */
Damien Miller4af51302000-04-16 11:18:38 +1000557void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000558do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000559{
Damien Millerb38eff82000-04-01 11:09:21 +1000560 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000561 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000562
563 if (s == NULL)
564 fatal("do_exec_pty: no session");
565 ptyfd = s->ptyfd;
566 ttyfd = s->ttyfd;
567
Damien Millerc5946332001-02-28 11:46:11 +1100568#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000569 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000570 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100571 if (!use_privsep)
572 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000573 }
Damien Miller5a761312001-02-27 09:28:23 +1100574#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000575
Damien Millerb38eff82000-04-01 11:09:21 +1000576 /* Fork the child. */
577 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000578 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000579
Damien Miller942da032000-08-18 13:59:06 +1000580 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000581 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000582 /* Close the master side of the pseudo tty. */
583 close(ptyfd);
584
585 /* Make the pseudo tty our controlling tty. */
586 pty_make_controlling_tty(&ttyfd, s->tty);
587
Damien Miller9c751422001-10-10 15:02:46 +1000588 /* Redirect stdin/stdout/stderr from the pseudo tty. */
589 if (dup2(ttyfd, 0) < 0)
590 error("dup2 stdin: %s", strerror(errno));
591 if (dup2(ttyfd, 1) < 0)
592 error("dup2 stdout: %s", strerror(errno));
593 if (dup2(ttyfd, 2) < 0)
594 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000595
596 /* Close the extra descriptor for the pseudo tty. */
597 close(ttyfd);
598
Damien Miller942da032000-08-18 13:59:06 +1000599 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000600#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700601 if (!(options.use_login && command == NULL)) {
602#ifdef _UNICOS
603 cray_init_job(s->pw); /* set up cray jid and tmpdir */
604#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100605 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700606 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000607# ifdef LOGIN_NEEDS_UTMPX
608 else
609 do_pre_login(s);
610# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000611#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000612
Damien Miller76e95da2008-03-07 18:31:24 +1100613 closefrom(STDERR_FILENO + 1);
614
Damien Millerb38eff82000-04-01 11:09:21 +1000615 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000616 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000617 /* NOTREACHED */
618 }
Tim Rice81ed5182002-09-25 17:38:46 -0700619#ifdef _UNICOS
620 signal(WJSIGNAL, cray_job_termination_handler);
621#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100622#ifdef HAVE_CYGWIN
623 if (is_winnt)
624 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
625#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000626 if (pid < 0)
627 packet_disconnect("fork failed: %.100s", strerror(errno));
628 s->pid = pid;
629
630 /* Parent. Close the slave side of the pseudo tty. */
631 close(ttyfd);
632
633 /*
634 * Create another descriptor of the pty master side for use as the
635 * standard input. We could use the original descriptor, but this
636 * simplifies code in server_loop. The descriptor is bidirectional.
637 */
638 fdout = dup(ptyfd);
639 if (fdout < 0)
640 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
641
642 /* we keep a reference to the pty master */
643 ptymaster = dup(ptyfd);
644 if (ptymaster < 0)
645 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
646 s->ptymaster = ptymaster;
647
648 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000649 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000650 if (compat20) {
651 session_set_fds(s, ptyfd, fdout, -1);
652 } else {
653 server_loop(pid, ptyfd, fdout, -1);
654 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000655 }
Damien Millerb38eff82000-04-01 11:09:21 +1000656}
657
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000658#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000659static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000660do_pre_login(Session *s)
661{
662 socklen_t fromlen;
663 struct sockaddr_storage from;
664 pid_t pid = getpid();
665
666 /*
667 * Get IP address of client. If the connection is not a socket, let
668 * the address be 0.0.0.0.
669 */
670 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000671 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000672 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000673 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100674 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000675 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000676 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000677 }
678 }
679
680 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000681 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000682 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000683}
684#endif
685
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000686/*
687 * This is called to fork and execute a command. If another command is
688 * to be forced, execute that instead.
689 */
690void
691do_exec(Session *s, const char *command)
692{
Damien Millere2754432006-07-24 14:06:47 +1000693 if (options.adm_forced_command) {
694 original_command = command;
695 command = options.adm_forced_command;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100696 if (strcmp(INTERNAL_SFTP_NAME, command) == 0)
697 s->is_subsystem = SUBSYSTEM_INT_SFTP;
698 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100699 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000700 debug("Forced command (config) '%.900s'", command);
701 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000702 original_command = command;
703 command = forced_command;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100704 if (strcmp(INTERNAL_SFTP_NAME, command) == 0)
705 s->is_subsystem = SUBSYSTEM_INT_SFTP;
706 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100707 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000708 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000709 }
710
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100711#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100712 if (command != NULL)
713 PRIVSEP(audit_run_command(command));
714 else if (s->ttyfd == -1) {
715 char *shell = s->pw->pw_shell;
716
717 if (shell[0] == '\0') /* empty shell means /bin/sh */
718 shell =_PATH_BSHELL;
719 PRIVSEP(audit_run_command(shell));
720 }
721#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000722 if (s->ttyfd != -1)
723 do_exec_pty(s, command);
724 else
725 do_exec_no_pty(s, command);
726
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000727 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000728
Darren Tucker09991742004-07-17 17:05:14 +1000729 /*
730 * Clear loginmsg: it's the child's responsibility to display
731 * it to the user, otherwise multiple sessions may accumulate
732 * multiple copies of the login messages.
733 */
734 buffer_clear(&loginmsg);
735}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000736
Damien Miller942da032000-08-18 13:59:06 +1000737/* administrative, login(1)-like work */
738void
Damien Miller69b69aa2000-10-28 14:19:58 +1100739do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000740{
Damien Miller942da032000-08-18 13:59:06 +1000741 socklen_t fromlen;
742 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000743 struct passwd * pw = s->pw;
744 pid_t pid = getpid();
745
746 /*
747 * Get IP address of client. If the connection is not a socket, let
748 * the address be 0.0.0.0.
749 */
750 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000751 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000752 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000753 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000754 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000755 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000756 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000757 }
758 }
759
760 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000761 if (!use_privsep)
762 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
763 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000764 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000765 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000766
Kevin Steves092f2ef2000-10-14 13:36:13 +0000767#ifdef USE_PAM
768 /*
769 * If password change is needed, do it now.
770 * This needs to occur before the ~/.hushlogin check.
771 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100772 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
773 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000774 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100775 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000776 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000777 }
778#endif
779
Damien Millercf205e82001-04-16 18:29:15 +1000780 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000781 return;
782
Darren Tucker1921ed92004-02-10 13:23:28 +1100783 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000784
Damien Millercf205e82001-04-16 18:29:15 +1000785 do_motd();
786}
787
788/*
789 * Display the message of the day.
790 */
791void
792do_motd(void)
793{
794 FILE *f;
795 char buf[256];
796
Damien Miller942da032000-08-18 13:59:06 +1000797 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000798#ifdef HAVE_LOGIN_CAP
799 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
800 "/etc/motd"), "r");
801#else
Damien Miller942da032000-08-18 13:59:06 +1000802 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000803#endif
Damien Miller942da032000-08-18 13:59:06 +1000804 if (f) {
805 while (fgets(buf, sizeof(buf), f))
806 fputs(buf, stdout);
807 fclose(f);
808 }
809 }
810}
811
Kevin Steves8f63caa2001-07-04 18:23:02 +0000812
813/*
814 * Check for quiet login, either .hushlogin or command given.
815 */
816int
817check_quietlogin(Session *s, const char *command)
818{
819 char buf[256];
820 struct passwd *pw = s->pw;
821 struct stat st;
822
823 /* Return 1 if .hushlogin exists or a command given. */
824 if (command != NULL)
825 return 1;
826 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
827#ifdef HAVE_LOGIN_CAP
828 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
829 return 1;
830#else
831 if (stat(buf, &st) >= 0)
832 return 1;
833#endif
834 return 0;
835}
836
Damien Millerb38eff82000-04-01 11:09:21 +1000837/*
838 * Sets the value of the given variable in the environment. If the variable
839 * already exists, its value is overriden.
840 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000841void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000842child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100843 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000844{
Damien Millerb38eff82000-04-01 11:09:21 +1000845 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000846 u_int envsize;
847 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000848
849 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000850 * If we're passed an uninitialized list, allocate a single null
851 * entry before continuing.
852 */
853 if (*envp == NULL && *envsizep == 0) {
854 *envp = xmalloc(sizeof(char *));
855 *envp[0] = NULL;
856 *envsizep = 1;
857 }
858
859 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000860 * Find the slot where the value should be stored. If the variable
861 * already exists, we reuse the slot; otherwise we append a new slot
862 * at the end of the array, expanding if necessary.
863 */
864 env = *envp;
865 namelen = strlen(name);
866 for (i = 0; env[i]; i++)
867 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
868 break;
869 if (env[i]) {
870 /* Reuse the slot. */
871 xfree(env[i]);
872 } else {
873 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000874 envsize = *envsizep;
875 if (i >= envsize - 1) {
876 if (envsize >= 1000)
877 fatal("child_set_env: too many env vars");
878 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100879 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000880 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000881 }
882 /* Need to set the NULL pointer at end of array beyond the new slot. */
883 env[i + 1] = NULL;
884 }
885
886 /* Allocate space and format the variable in the appropriate slot. */
887 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
888 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
889}
890
891/*
892 * Reads environment variables from the given file and adds/overrides them
893 * into the environment. If the file does not exist, this does nothing.
894 * Otherwise, it must consist of empty lines, comments (line starts with '#')
895 * and assignments of the form name=value. No other forms are allowed.
896 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000897static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000898read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100899 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000900{
901 FILE *f;
902 char buf[4096];
903 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000904 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000905
906 f = fopen(filename, "r");
907 if (!f)
908 return;
909
910 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000911 if (++lineno > 1000)
912 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000913 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
914 ;
915 if (!*cp || *cp == '#' || *cp == '\n')
916 continue;
Damien Miller14b017d2007-09-17 16:09:15 +1000917
918 cp[strcspn(cp, "\n")] = '\0';
919
Damien Millerb38eff82000-04-01 11:09:21 +1000920 value = strchr(cp, '=');
921 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000922 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
923 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000924 continue;
925 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000926 /*
927 * Replace the equals sign by nul, and advance value to
928 * the value string.
929 */
Damien Millerb38eff82000-04-01 11:09:21 +1000930 *value = '\0';
931 value++;
932 child_set_env(env, envsize, cp, value);
933 }
934 fclose(f);
935}
936
Darren Tuckere1a790d2003-09-16 11:52:19 +1000937#ifdef HAVE_ETC_DEFAULT_LOGIN
938/*
939 * Return named variable from specified environment, or NULL if not present.
940 */
941static char *
942child_get_env(char **env, const char *name)
943{
944 int i;
945 size_t len;
946
947 len = strlen(name);
948 for (i=0; env[i] != NULL; i++)
949 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
950 return(env[i] + len + 1);
951 return NULL;
952}
953
954/*
955 * Read /etc/default/login.
956 * We pick up the PATH (or SUPATH for root) and UMASK.
957 */
958static void
959read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
960{
961 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000962 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000963 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000964
965 /*
966 * We don't want to copy the whole file to the child's environment,
967 * so we use a temporary environment and copy the variables we're
968 * interested in.
969 */
970 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
971
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000972 if (tmpenv == NULL)
973 return;
974
Darren Tuckere1a790d2003-09-16 11:52:19 +1000975 if (uid == 0)
976 var = child_get_env(tmpenv, "SUPATH");
977 else
978 var = child_get_env(tmpenv, "PATH");
979 if (var != NULL)
980 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100981
Darren Tuckere1a790d2003-09-16 11:52:19 +1000982 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
983 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000984 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100985
Darren Tuckere1a790d2003-09-16 11:52:19 +1000986 for (i = 0; tmpenv[i] != NULL; i++)
987 xfree(tmpenv[i]);
988 xfree(tmpenv);
989}
990#endif /* HAVE_ETC_DEFAULT_LOGIN */
991
Damien Miller7dff8692005-05-26 11:34:51 +1000992void
993copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000994{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100995 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000996 int i;
997
Damien Millerbb9ffc12002-01-08 10:59:32 +1100998 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000999 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001000
Damien Millerbb9ffc12002-01-08 10:59:32 +11001001 for(i = 0; source[i] != NULL; i++) {
1002 var_name = xstrdup(source[i]);
1003 if ((var_val = strstr(var_name, "=")) == NULL) {
1004 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001005 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001006 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001007 *var_val++ = '\0';
1008
1009 debug3("Copy environment: %s=%s", var_name, var_val);
1010 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001011
Damien Millerbb9ffc12002-01-08 10:59:32 +11001012 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001013 }
1014}
Damien Millercb5e44a2000-09-29 12:12:36 +11001015
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001016static char **
1017do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001018{
Damien Millerb38eff82000-04-01 11:09:21 +10001019 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001020 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001021 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001022 struct passwd *pw = s->pw;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001023#ifndef HAVE_LOGIN_CAP
1024 char *path = NULL;
1025#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001026
Damien Millerb38eff82000-04-01 11:09:21 +10001027 /* Initialize the environment. */
1028 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001029 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001030 env[0] = NULL;
1031
Damien Millerbac2d8a2000-09-05 16:13:06 +11001032#ifdef HAVE_CYGWIN
1033 /*
1034 * The Windows environment contains some setting which are
1035 * important for a running system. They must not be dropped.
1036 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001037 {
1038 char **p;
1039
1040 p = fetch_windows_environment();
1041 copy_environment(p, &env, &envsize);
1042 free_windows_environment(p);
1043 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001044#endif
1045
Darren Tucker0efd1552003-08-26 11:49:55 +10001046#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001047 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001048 * the childs environment as they see fit
1049 */
1050 ssh_gssapi_do_child(&env, &envsize);
1051#endif
1052
Damien Millerb38eff82000-04-01 11:09:21 +10001053 if (!options.use_login) {
1054 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001055 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001056 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001057 s->env[i].val);
1058
Damien Millerb38eff82000-04-01 11:09:21 +10001059 child_set_env(&env, &envsize, "USER", pw->pw_name);
1060 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001061#ifdef _AIX
1062 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1063#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001064 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001065#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001066 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1067 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1068 else
1069 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001070#else /* HAVE_LOGIN_CAP */
1071# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001072 /*
1073 * There's no standard path on Windows. The path contains
1074 * important components pointing to the system directories,
1075 * needed for loading shared libraries. So the path better
1076 * remains intact here.
1077 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001078# ifdef HAVE_ETC_DEFAULT_LOGIN
1079 read_etc_default_login(&env, &envsize, pw->pw_uid);
1080 path = child_get_env(env, "PATH");
1081# endif /* HAVE_ETC_DEFAULT_LOGIN */
1082 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001083 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001084 s->pw->pw_uid == 0 ?
1085 SUPERUSER_PATH : _PATH_STDPATH);
1086 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001087# endif /* HAVE_CYGWIN */
1088#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001089
1090 snprintf(buf, sizeof buf, "%.200s/%.50s",
1091 _PATH_MAILDIR, pw->pw_name);
1092 child_set_env(&env, &envsize, "MAIL", buf);
1093
1094 /* Normal systems set SHELL by default. */
1095 child_set_env(&env, &envsize, "SHELL", shell);
1096 }
1097 if (getenv("TZ"))
1098 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1099
1100 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001101 if (!options.use_login) {
1102 while (custom_environment) {
1103 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001104 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001105
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001106 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001107 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001108 if (str[i] == '=') {
1109 str[i] = 0;
1110 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001111 }
1112 custom_environment = ce->next;
1113 xfree(ce->s);
1114 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001115 }
Damien Millerb38eff82000-04-01 11:09:21 +10001116 }
1117
Damien Millerf37e2462002-09-19 11:47:55 +10001118 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001119 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001120 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001121 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1122
Damien Miller00111382003-03-10 11:21:17 +11001123 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001124 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001125 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1126 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001127 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1128
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001129 if (s->ttyfd != -1)
1130 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1131 if (s->term)
1132 child_set_env(&env, &envsize, "TERM", s->term);
1133 if (s->display)
1134 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001135 if (original_command)
1136 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1137 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001138
Tim Rice81ed5182002-09-25 17:38:46 -07001139#ifdef _UNICOS
1140 if (cray_tmpdir[0] != '\0')
1141 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1142#endif /* _UNICOS */
1143
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001144 /*
1145 * Since we clear KRB5CCNAME at startup, if it's set now then it
1146 * must have been set by a native authentication method (eg AIX or
1147 * SIA), so copy it to the child.
1148 */
1149 {
1150 char *cp;
1151
1152 if ((cp = getenv("KRB5CCNAME")) != NULL)
1153 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1154 }
1155
Damien Millerb38eff82000-04-01 11:09:21 +10001156#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001157 {
1158 char *cp;
1159
1160 if ((cp = getenv("AUTHSTATE")) != NULL)
1161 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001162 read_environment_file(&env, &envsize, "/etc/environment");
1163 }
Damien Millerb38eff82000-04-01 11:09:21 +10001164#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001165#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001166 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001167 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001168 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001169#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001170#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001171 /*
1172 * Pull in any environment variables that may have
1173 * been set by PAM.
1174 */
Damien Miller4e448a32003-05-14 15:11:48 +10001175 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001176 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001177
Damien Millerc756e9b2003-11-17 21:41:42 +11001178 p = fetch_pam_child_environment();
1179 copy_environment(p, &env, &envsize);
1180 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001181
Damien Millerc756e9b2003-11-17 21:41:42 +11001182 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001183 copy_environment(p, &env, &envsize);
1184 free_pam_environment(p);
1185 }
Damien Millerb38eff82000-04-01 11:09:21 +10001186#endif /* USE_PAM */
1187
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001188 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001189 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001190 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001191
1192 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001193 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001194 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001195 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001196 read_environment_file(&env, &envsize, buf);
1197 }
1198 if (debug_flag) {
1199 /* dump the environment */
1200 fprintf(stderr, "Environment:\n");
1201 for (i = 0; env[i]; i++)
1202 fprintf(stderr, " %.200s\n", env[i]);
1203 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001204 return env;
1205}
1206
1207/*
1208 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1209 * first in this order).
1210 */
1211static void
1212do_rc_files(Session *s, const char *shell)
1213{
1214 FILE *f = NULL;
1215 char cmd[1024];
1216 int do_xauth;
1217 struct stat st;
1218
1219 do_xauth =
1220 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1221
1222 /* ignore _PATH_SSH_USER_RC for subsystems */
1223 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1224 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1225 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1226 if (debug_flag)
1227 fprintf(stderr, "Running %s\n", cmd);
1228 f = popen(cmd, "w");
1229 if (f) {
1230 if (do_xauth)
1231 fprintf(f, "%s %s\n", s->auth_proto,
1232 s->auth_data);
1233 pclose(f);
1234 } else
1235 fprintf(stderr, "Could not run %s\n",
1236 _PATH_SSH_USER_RC);
1237 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1238 if (debug_flag)
1239 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1240 _PATH_SSH_SYSTEM_RC);
1241 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1242 if (f) {
1243 if (do_xauth)
1244 fprintf(f, "%s %s\n", s->auth_proto,
1245 s->auth_data);
1246 pclose(f);
1247 } else
1248 fprintf(stderr, "Could not run %s\n",
1249 _PATH_SSH_SYSTEM_RC);
1250 } else if (do_xauth && options.xauth_location != NULL) {
1251 /* Add authority data to .Xauthority if appropriate. */
1252 if (debug_flag) {
1253 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001254 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001255 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001256 fprintf(stderr,
1257 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001258 options.xauth_location, s->auth_display,
1259 s->auth_proto, s->auth_data);
1260 }
1261 snprintf(cmd, sizeof cmd, "%s -q -",
1262 options.xauth_location);
1263 f = popen(cmd, "w");
1264 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001265 fprintf(f, "remove %s\n",
1266 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001267 fprintf(f, "add %s %s %s\n",
1268 s->auth_display, s->auth_proto,
1269 s->auth_data);
1270 pclose(f);
1271 } else {
1272 fprintf(stderr, "Could not run %s\n",
1273 cmd);
1274 }
1275 }
1276}
1277
1278static void
1279do_nologin(struct passwd *pw)
1280{
1281 FILE *f = NULL;
1282 char buf[1024];
1283
1284#ifdef HAVE_LOGIN_CAP
1285 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1286 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1287 _PATH_NOLOGIN), "r");
1288#else
1289 if (pw->pw_uid)
1290 f = fopen(_PATH_NOLOGIN, "r");
1291#endif
1292 if (f) {
1293 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001294 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001295 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001296 while (fgets(buf, sizeof(buf), f))
1297 fputs(buf, stderr);
1298 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001299 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001300 exit(254);
1301 }
1302}
1303
Damien Millerd8cb1f12008-02-10 22:40:12 +11001304/*
1305 * Chroot into a directory after checking it for safety: all path components
1306 * must be root-owned directories with strict permissions.
1307 */
1308static void
1309safely_chroot(const char *path, uid_t uid)
1310{
1311 const char *cp;
1312 char component[MAXPATHLEN];
1313 struct stat st;
1314
1315 if (*path != '/')
1316 fatal("chroot path does not begin at root");
1317 if (strlen(path) >= sizeof(component))
1318 fatal("chroot path too long");
1319
1320 /*
1321 * Descend the path, checking that each component is a
1322 * root-owned directory with strict permissions.
1323 */
1324 for (cp = path; cp != NULL;) {
1325 if ((cp = strchr(cp, '/')) == NULL)
1326 strlcpy(component, path, sizeof(component));
1327 else {
1328 cp++;
1329 memcpy(component, path, cp - path);
1330 component[cp - path] = '\0';
1331 }
1332
1333 debug3("%s: checking '%s'", __func__, component);
1334
1335 if (stat(component, &st) != 0)
1336 fatal("%s: stat(\"%s\"): %s", __func__,
1337 component, strerror(errno));
1338 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1339 fatal("bad ownership or modes for chroot "
1340 "directory %s\"%s\"",
1341 cp == NULL ? "" : "component ", component);
1342 if (!S_ISDIR(st.st_mode))
1343 fatal("chroot path %s\"%s\" is not a directory",
1344 cp == NULL ? "" : "component ", component);
1345
1346 }
1347
1348 if (chdir(path) == -1)
1349 fatal("Unable to chdir to chroot path \"%s\": "
1350 "%s", path, strerror(errno));
1351 if (chroot(path) == -1)
1352 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1353 if (chdir("/") == -1)
1354 fatal("%s: chdir(/) after chroot: %s",
1355 __func__, strerror(errno));
1356 verbose("Changed root directory to \"%s\"", path);
1357}
1358
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001359/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001360void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001361do_setusercontext(struct passwd *pw)
1362{
Damien Miller54e37732008-02-10 22:48:55 +11001363 char *chroot_path, *tmp;
1364
Damien Miller1a3ccb02003-02-24 13:04:01 +11001365#ifndef HAVE_CYGWIN
1366 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001367#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001368 {
1369
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001370#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001371 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1372 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001373#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001374#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001375# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001376 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001377# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001378#ifdef GSSAPI
1379 if (options.gss_authentication) {
1380 temporarily_use_uid(pw);
1381 ssh_gssapi_storecreds();
1382 restore_uid();
1383 }
1384#endif
Damien Millerd3526362004-01-23 14:16:26 +11001385# ifdef USE_PAM
1386 if (options.use_pam) {
1387 do_pam_session();
Darren Tucker2d963642007-08-13 23:11:56 +10001388 do_pam_setcred(use_privsep);
Damien Millerd3526362004-01-23 14:16:26 +11001389 }
1390# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001391 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001392 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001393 perror("unable to set user context");
1394 exit(1);
1395 }
1396#else
1397# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1398 /* Sets login uid for accounting */
1399 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1400 error("setluid: %s", strerror(errno));
1401# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1402
1403 if (setlogin(pw->pw_name) < 0)
1404 error("setlogin failed: %s", strerror(errno));
1405 if (setgid(pw->pw_gid) < 0) {
1406 perror("setgid");
1407 exit(1);
1408 }
1409 /* Initialize the group list. */
1410 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1411 perror("initgroups");
1412 exit(1);
1413 }
1414 endgrent();
Damien Millerd8cb1f12008-02-10 22:40:12 +11001415# ifdef GSSAPI
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001416 if (options.gss_authentication) {
1417 temporarily_use_uid(pw);
1418 ssh_gssapi_storecreds();
1419 restore_uid();
1420 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001421# endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001422# ifdef USE_PAM
1423 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001424 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001425 * These will have been wiped by the above initgroups() call.
1426 * Reestablish them here.
1427 */
Damien Miller341c6e62003-09-02 23:18:52 +10001428 if (options.use_pam) {
1429 do_pam_session();
Darren Tucker2d963642007-08-13 23:11:56 +10001430 do_pam_setcred(use_privsep);
Damien Miller341c6e62003-09-02 23:18:52 +10001431 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001432# endif /* USE_PAM */
1433# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1434 irix_setusercontext(pw);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001435# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001436# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001437 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001438# endif /* _AIX */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001439# ifdef USE_LIBIAF
Tim Rice2291c002005-08-26 13:15:19 -07001440 if (set_id(pw->pw_name) != 0) {
1441 exit(1);
1442 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001443# endif /* USE_LIBIAF */
1444#endif
1445
1446 if (options.chroot_directory != NULL &&
1447 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001448 tmp = tilde_expand_filename(options.chroot_directory,
1449 pw->pw_uid);
1450 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1451 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001452 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001453 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001454 free(chroot_path);
1455 }
1456
1457#ifdef HAVE_LOGIN_CAP
1458 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1459 perror("unable to set user context (setuser)");
1460 exit(1);
1461 }
1462#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001463 /* Permanently switch to the desired uid. */
1464 permanently_set_uid(pw);
1465#endif
1466 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001467
1468#ifdef HAVE_CYGWIN
1469 if (is_winnt)
1470#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001471 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1472 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001473
1474#ifdef WITH_SELINUX
1475 ssh_selinux_setup_exec_context(pw->pw_name);
1476#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001477}
1478
Ben Lindstrom08105192002-03-22 02:50:06 +00001479static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001480do_pwchange(Session *s)
1481{
Darren Tucker09991742004-07-17 17:05:14 +10001482 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001483 fprintf(stderr, "WARNING: Your password has expired.\n");
1484 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001485 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001486 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001487#ifdef PASSWD_NEEDS_USERNAME
1488 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1489 (char *)NULL);
1490#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001491 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001492#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001493 perror("passwd");
1494 } else {
1495 fprintf(stderr,
1496 "Password change required but no TTY available.\n");
1497 }
1498 exit(1);
1499}
1500
1501static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001502launch_login(struct passwd *pw, const char *hostname)
1503{
1504 /* Launch login(1). */
1505
Ben Lindstrom378a4172002-06-07 14:49:56 +00001506 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001507#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001508 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001509#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001510#ifdef LOGIN_NO_ENDOPT
1511 "-p", "-f", pw->pw_name, (char *)NULL);
1512#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001513 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001514#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001515
1516 /* Login couldn't be executed, die. */
1517
1518 perror("login");
1519 exit(1);
1520}
1521
Darren Tucker23bc8d02004-02-06 16:24:31 +11001522static void
1523child_close_fds(void)
1524{
1525 int i;
1526
1527 if (packet_get_connection_in() == packet_get_connection_out())
1528 close(packet_get_connection_in());
1529 else {
1530 close(packet_get_connection_in());
1531 close(packet_get_connection_out());
1532 }
1533 /*
1534 * Close all descriptors related to channels. They will still remain
1535 * open in the parent.
1536 */
1537 /* XXX better use close-on-exec? -markus */
1538 channel_close_all();
1539
1540 /*
1541 * Close any extra file descriptors. Note that there may still be
1542 * descriptors left by system functions. They will be closed later.
1543 */
1544 endpwent();
1545
1546 /*
Damien Miller788f2122005-11-05 15:14:59 +11001547 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001548 * hanging around in clients. Note that we want to do this after
1549 * initgroups, because at least on Solaris 2.3 it leaves file
1550 * descriptors open.
1551 */
1552 for (i = 3; i < 64; i++)
1553 close(i);
1554}
1555
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001556/*
1557 * Performs common processing for the child, such as setting up the
1558 * environment, closing extra file descriptors, setting the user and group
1559 * ids, and executing the command or shell.
1560 */
Damien Millerdfc24252008-02-10 22:29:40 +11001561#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001562void
1563do_child(Session *s, const char *command)
1564{
1565 extern char **environ;
1566 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001567 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001568 const char *shell, *shell0, *hostname = NULL;
1569 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001570
1571 /* remove hostkey from the child's memory */
1572 destroy_sensitive_data();
1573
Darren Tucker23bc8d02004-02-06 16:24:31 +11001574 /* Force a password change */
1575 if (s->authctxt->force_pwchange) {
1576 do_setusercontext(pw);
1577 child_close_fds();
1578 do_pwchange(s);
1579 exit(1);
1580 }
1581
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001582 /* login(1) is only called if we execute the login shell */
1583 if (options.use_login && command != NULL)
1584 options.use_login = 0;
1585
Tim Rice81ed5182002-09-25 17:38:46 -07001586#ifdef _UNICOS
1587 cray_setup(pw->pw_uid, pw->pw_name, command);
1588#endif /* _UNICOS */
1589
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001590 /*
1591 * Login(1) does this as well, and it needs uid 0 for the "-h"
1592 * switch, so we let login(1) to this for us.
1593 */
1594 if (!options.use_login) {
1595#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001596 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001597 if (!check_quietlogin(s, command))
1598 do_motd();
1599#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001600 /* When PAM is enabled we rely on it to do the nologin check */
1601 if (!options.use_pam)
1602 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001603 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001604 /*
1605 * PAM session modules in do_setusercontext may have
1606 * generated messages, so if this in an interactive
1607 * login then display them too.
1608 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001609 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001610 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001611#endif /* HAVE_OSF_SIA */
1612 }
1613
Darren Tucker69687f42004-09-11 22:17:26 +10001614#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001615 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1616 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001617 display_loginmsg();
1618 exit(254);
1619 }
1620#endif
1621
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001622 /*
1623 * Get the shell from the password data. An empty shell field is
1624 * legal, and means /bin/sh.
1625 */
1626 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001627
1628 /*
1629 * Make sure $SHELL points to the shell from the password file,
1630 * even if shell is overridden from login.conf
1631 */
1632 env = do_setup_env(s, shell);
1633
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001634#ifdef HAVE_LOGIN_CAP
1635 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1636#endif
1637
Damien Millerad833b32000-08-23 10:46:23 +10001638 /* we have to stash the hostname before we close our socket. */
1639 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001640 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001641 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001642 /*
1643 * Close the connection descriptors; note that this is the child, and
1644 * the server will still have the socket open, and it is important
1645 * that we do not shutdown it. Note that the descriptors cannot be
1646 * closed before building the environment, as we call
1647 * get_remote_ipaddr there.
1648 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001649 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001650
Damien Millerb38eff82000-04-01 11:09:21 +10001651 /*
Damien Miller05eda432002-02-10 18:32:28 +11001652 * Must take new environment into use so that .ssh/rc,
1653 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001654 */
1655 environ = env;
1656
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001657#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001658 /*
1659 * At this point, we check to see if AFS is active and if we have
1660 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1661 * if we can (and need to) extend the ticket into an AFS token. If
1662 * we don't do this, we run into potential problems if the user's
1663 * home directory is in AFS and it's not world-readable.
1664 */
1665
1666 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001667 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001668 char cell[64];
1669
1670 debug("Getting AFS token");
1671
1672 k_setpag();
1673
1674 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1675 krb5_afslog(s->authctxt->krb5_ctx,
1676 s->authctxt->krb5_fwd_ccache, cell, NULL);
1677
1678 krb5_afslog_home(s->authctxt->krb5_ctx,
1679 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1680 }
1681#endif
1682
Damien Miller788f2122005-11-05 15:14:59 +11001683 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001684 if (chdir(pw->pw_dir) < 0) {
1685 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1686 pw->pw_dir, strerror(errno));
1687#ifdef HAVE_LOGIN_CAP
1688 if (login_getcapbool(lc, "requirehome", 0))
1689 exit(1);
1690#endif
1691 }
1692
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001693 if (!options.use_login)
1694 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001695
1696 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001697 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001698
Damien Millerdfc24252008-02-10 22:29:40 +11001699 if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1700 extern int optind, optreset;
1701 int i;
1702 char *p, *args;
1703
1704 setproctitle("%s@internal-sftp-server", s->pw->pw_name);
1705 args = strdup(command ? command : "sftp-server");
1706 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1707 if (i < ARGV_MAX - 1)
1708 argv[i++] = p;
1709 argv[i] = NULL;
1710 optind = optreset = 1;
1711 __progname = argv[0];
Damien Millerd8cb1f12008-02-10 22:40:12 +11001712 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001713 }
1714
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001715 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001716 launch_login(pw, hostname);
1717 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001718 }
1719
1720 /* Get the last component of the shell name. */
1721 if ((shell0 = strrchr(shell, '/')) != NULL)
1722 shell0++;
1723 else
1724 shell0 = shell;
1725
Damien Millerb38eff82000-04-01 11:09:21 +10001726 /*
1727 * If we have no command, execute the shell. In this case, the shell
1728 * name to be passed in argv[0] is preceded by '-' to indicate that
1729 * this is a login shell.
1730 */
1731 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001732 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001733
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001734 /* Start the shell. Set initial character to '-'. */
1735 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001736
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001737 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1738 >= sizeof(argv0) - 1) {
1739 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001740 perror(shell);
1741 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001742 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001743
1744 /* Execute the shell. */
1745 argv[0] = argv0;
1746 argv[1] = NULL;
1747 execve(shell, argv, env);
1748
1749 /* Executing the shell failed. */
1750 perror(shell);
1751 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001752 }
1753 /*
1754 * Execute the command using the user's shell. This uses the -c
1755 * option to execute the command.
1756 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001757 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001758 argv[1] = "-c";
1759 argv[2] = (char *) command;
1760 argv[3] = NULL;
1761 execve(shell, argv, env);
1762 perror(shell);
1763 exit(1);
1764}
1765
1766Session *
1767session_new(void)
1768{
1769 int i;
1770 static int did_init = 0;
1771 if (!did_init) {
1772 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001773 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001774 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001775 }
1776 did_init = 1;
1777 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001778 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001779 Session *s = &sessions[i];
1780 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001781 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001782 s->chanid = -1;
1783 s->ptyfd = -1;
1784 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001785 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001786 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001787 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001788 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001789 return s;
1790 }
1791 }
1792 return NULL;
1793}
1794
Ben Lindstrombba81212001-06-25 05:01:22 +00001795static void
Damien Millerb38eff82000-04-01 11:09:21 +10001796session_dump(void)
1797{
1798 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001799 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001800 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001801 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001802 s->used,
1803 s->self,
1804 s,
1805 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001806 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001807 }
1808}
1809
Damien Millerefb4afe2000-04-12 18:45:05 +10001810int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001811session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001812{
1813 Session *s = session_new();
1814 debug("session_open: channel %d", chanid);
1815 if (s == NULL) {
1816 error("no more sessions");
1817 return 0;
1818 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001819 s->authctxt = authctxt;
1820 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001821 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001822 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001823 debug("session_open: session %d: link with channel %d", s->self, chanid);
1824 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001825 return 1;
1826}
1827
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001828Session *
1829session_by_tty(char *tty)
1830{
1831 int i;
1832 for (i = 0; i < MAX_SESSIONS; i++) {
1833 Session *s = &sessions[i];
1834 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1835 debug("session_by_tty: session %d tty %s", i, tty);
1836 return s;
1837 }
1838 }
1839 debug("session_by_tty: unknown tty %.100s", tty);
1840 session_dump();
1841 return NULL;
1842}
1843
Ben Lindstrombba81212001-06-25 05:01:22 +00001844static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001845session_by_channel(int id)
1846{
1847 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001848 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001849 Session *s = &sessions[i];
1850 if (s->used && s->chanid == id) {
1851 debug("session_by_channel: session %d channel %d", i, id);
1852 return s;
1853 }
1854 }
1855 debug("session_by_channel: unknown channel %d", id);
1856 session_dump();
1857 return NULL;
1858}
1859
Ben Lindstrombba81212001-06-25 05:01:22 +00001860static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001861session_by_x11_channel(int id)
1862{
1863 int i, j;
1864
1865 for (i = 0; i < MAX_SESSIONS; i++) {
1866 Session *s = &sessions[i];
1867
1868 if (s->x11_chanids == NULL || !s->used)
1869 continue;
1870 for (j = 0; s->x11_chanids[j] != -1; j++) {
1871 if (s->x11_chanids[j] == id) {
1872 debug("session_by_x11_channel: session %d "
1873 "channel %d", s->self, id);
1874 return s;
1875 }
1876 }
1877 }
1878 debug("session_by_x11_channel: unknown channel %d", id);
1879 session_dump();
1880 return NULL;
1881}
1882
1883static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001884session_by_pid(pid_t pid)
1885{
1886 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001887 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001888 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001889 Session *s = &sessions[i];
1890 if (s->used && s->pid == pid)
1891 return s;
1892 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001893 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001894 session_dump();
1895 return NULL;
1896}
1897
Ben Lindstrombba81212001-06-25 05:01:22 +00001898static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001899session_window_change_req(Session *s)
1900{
1901 s->col = packet_get_int();
1902 s->row = packet_get_int();
1903 s->xpixel = packet_get_int();
1904 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001905 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001906 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1907 return 1;
1908}
1909
Ben Lindstrombba81212001-06-25 05:01:22 +00001910static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001911session_pty_req(Session *s)
1912{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001913 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001914 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001915
Ben Lindstrom49c12602001-06-13 04:37:36 +00001916 if (no_pty_flag) {
1917 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001918 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001919 }
1920 if (s->ttyfd != -1) {
1921 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001922 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001923 }
1924
Damien Millerefb4afe2000-04-12 18:45:05 +10001925 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001926
1927 if (compat20) {
1928 s->col = packet_get_int();
1929 s->row = packet_get_int();
1930 } else {
1931 s->row = packet_get_int();
1932 s->col = packet_get_int();
1933 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001934 s->xpixel = packet_get_int();
1935 s->ypixel = packet_get_int();
1936
1937 if (strcmp(s->term, "") == 0) {
1938 xfree(s->term);
1939 s->term = NULL;
1940 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001941
Damien Millerefb4afe2000-04-12 18:45:05 +10001942 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001943 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001944 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001945 if (s->term)
1946 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001947 s->term = NULL;
1948 s->ptyfd = -1;
1949 s->ttyfd = -1;
1950 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001951 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001952 }
1953 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001954
1955 /* for SSH1 the tty modes length is not given */
1956 if (!compat20)
1957 n_bytes = packet_remaining();
1958 tty_parse_modes(s->ttyfd, &n_bytes);
1959
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001960 if (!use_privsep)
1961 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001962
1963 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001964 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1965
Damien Miller48b03fc2002-01-22 23:11:40 +11001966 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001967 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001968 return 1;
1969}
1970
Ben Lindstrombba81212001-06-25 05:01:22 +00001971static int
Damien Millerbd483e72000-04-30 10:00:53 +10001972session_subsystem_req(Session *s)
1973{
Damien Millerae452462001-10-10 15:08:06 +10001974 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001975 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001976 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10001977 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001978 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001979
Damien Miller48b03fc2002-01-22 23:11:40 +11001980 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001981 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001982
Damien Millerf6d9e222000-06-18 14:50:44 +10001983 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001984 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10001985 prog = options.subsystem_command[i];
1986 cmd = options.subsystem_args[i];
Damien Millerd8cb1f12008-02-10 22:40:12 +11001987 if (!strcmp(INTERNAL_SFTP_NAME, prog)) {
Damien Millerdfc24252008-02-10 22:29:40 +11001988 s->is_subsystem = SUBSYSTEM_INT_SFTP;
1989 } else if (stat(prog, &st) < 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10001990 error("subsystem: cannot stat %s: %s", prog,
Damien Millerae452462001-10-10 15:08:06 +10001991 strerror(errno));
1992 break;
Damien Millerdfc24252008-02-10 22:29:40 +11001993 } else {
1994 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millerae452462001-10-10 15:08:06 +10001995 }
1996 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10001997 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001998 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001999 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002000 }
2001 }
2002
2003 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002004 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002005 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002006
Damien Millerbd483e72000-04-30 10:00:53 +10002007 xfree(subsys);
2008 return success;
2009}
2010
Ben Lindstrombba81212001-06-25 05:01:22 +00002011static int
Damien Millerbd483e72000-04-30 10:00:53 +10002012session_x11_req(Session *s)
2013{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002014 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002015
Damien Miller2b9b0452005-07-17 17:19:24 +10002016 if (s->auth_proto != NULL || s->auth_data != NULL) {
2017 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002018 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002019 return 0;
2020 }
Damien Millerbd483e72000-04-30 10:00:53 +10002021 s->single_connection = packet_get_char();
2022 s->auth_proto = packet_get_string(NULL);
2023 s->auth_data = packet_get_string(NULL);
2024 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002025 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002026
Ben Lindstrom768176b2001-06-09 01:29:12 +00002027 success = session_setup_x11fwd(s);
2028 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10002029 xfree(s->auth_proto);
2030 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002031 s->auth_proto = NULL;
2032 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002033 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002034 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002035}
2036
Ben Lindstrombba81212001-06-25 05:01:22 +00002037static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002038session_shell_req(Session *s)
2039{
Damien Miller48b03fc2002-01-22 23:11:40 +11002040 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00002041 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10002042 return 1;
2043}
2044
Ben Lindstrombba81212001-06-25 05:01:22 +00002045static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002046session_exec_req(Session *s)
2047{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002048 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10002049 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002050 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00002051 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00002052 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10002053 return 1;
2054}
2055
Ben Lindstrombba81212001-06-25 05:01:22 +00002056static int
Damien Miller54c45982003-05-15 10:20:13 +10002057session_break_req(Session *s)
2058{
Damien Miller54c45982003-05-15 10:20:13 +10002059
Darren Tucker1f8311c2004-05-13 16:39:33 +10002060 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002061 packet_check_eom();
2062
Darren Tucker3bdbd842003-08-13 20:31:05 +10002063 if (s->ttyfd == -1 ||
2064 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002065 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002066 return 1;
2067}
2068
2069static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002070session_env_req(Session *s)
2071{
2072 char *name, *val;
2073 u_int name_len, val_len, i;
2074
2075 name = packet_get_string(&name_len);
2076 val = packet_get_string(&val_len);
2077 packet_check_eom();
2078
2079 /* Don't set too many environment variables */
2080 if (s->num_env > 128) {
2081 debug2("Ignoring env request %s: too many env vars", name);
2082 goto fail;
2083 }
2084
2085 for (i = 0; i < options.num_accept_env; i++) {
2086 if (match_pattern(name, options.accept_env[i])) {
2087 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002088 s->env = xrealloc(s->env, s->num_env + 1,
2089 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002090 s->env[s->num_env].name = name;
2091 s->env[s->num_env].val = val;
2092 s->num_env++;
2093 return (1);
2094 }
2095 }
2096 debug2("Ignoring env request %s: disallowed name", name);
2097
2098 fail:
2099 xfree(name);
2100 xfree(val);
2101 return (0);
2102}
2103
2104static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002105session_auth_agent_req(Session *s)
2106{
2107 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002108 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00002109 if (no_agent_forwarding_flag) {
2110 debug("session_auth_agent_req: no_agent_forwarding_flag");
2111 return 0;
2112 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002113 if (called) {
2114 return 0;
2115 } else {
2116 called = 1;
2117 return auth_input_request_forwarding(s->pw);
2118 }
2119}
2120
Damien Millerc7ef63d2002-02-05 12:21:42 +11002121int
2122session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002123{
Damien Millerefb4afe2000-04-12 18:45:05 +10002124 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002125 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002126
Damien Millerc7ef63d2002-02-05 12:21:42 +11002127 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002128 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002129 c->self, rtype);
2130 return 0;
2131 }
2132 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002133
2134 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002135 * a session is in LARVAL state until a shell, a command
2136 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002137 */
2138 if (c->type == SSH_CHANNEL_LARVAL) {
2139 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002140 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002141 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002142 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002143 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002144 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002145 } else if (strcmp(rtype, "x11-req") == 0) {
2146 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002147 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2148 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002149 } else if (strcmp(rtype, "subsystem") == 0) {
2150 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002151 } else if (strcmp(rtype, "env") == 0) {
2152 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002153 }
2154 }
2155 if (strcmp(rtype, "window-change") == 0) {
2156 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002157 } else if (strcmp(rtype, "break") == 0) {
2158 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002159 }
Damien Millera6b1d162004-06-30 22:41:07 +10002160
Damien Millerc7ef63d2002-02-05 12:21:42 +11002161 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002162}
2163
2164void
2165session_set_fds(Session *s, int fdin, int fdout, int fderr)
2166{
2167 if (!compat20)
2168 fatal("session_set_fds: called for proto != 2.0");
2169 /*
2170 * now that have a child and a pipe to the child,
2171 * we can activate our channel and register the fd's
2172 */
2173 if (s->chanid == -1)
2174 fatal("no channel for session %d", s->self);
2175 channel_set_fds(s->chanid,
2176 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002177 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002178 1,
2179 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002180}
2181
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002182/*
2183 * Function to perform pty cleanup. Also called if we get aborted abnormally
2184 * (e.g., due to a dropped connection).
2185 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002186void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002187session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002188{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002189 if (s == NULL) {
2190 error("session_pty_cleanup: no session");
2191 return;
2192 }
2193 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002194 return;
2195
Kevin Steves43cdef32001-02-11 14:12:08 +00002196 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002197
Damien Millerb38eff82000-04-01 11:09:21 +10002198 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002199 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002200 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002201
2202 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002203 if (getuid() == 0)
2204 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002205
2206 /*
2207 * Close the server side of the socket pairs. We must do this after
2208 * the pty cleanup, so that another process doesn't get this pty
2209 * while we're still cleaning up.
2210 */
2211 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002212 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002213
2214 /* unlink pty from session */
2215 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002216}
Damien Millerefb4afe2000-04-12 18:45:05 +10002217
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002218void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002219session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002220{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002221 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002222}
2223
Damien Miller5a80bba2002-09-04 16:39:02 +10002224static char *
2225sig2name(int sig)
2226{
2227#define SSH_SIG(x) if (sig == SIG ## x) return #x
2228 SSH_SIG(ABRT);
2229 SSH_SIG(ALRM);
2230 SSH_SIG(FPE);
2231 SSH_SIG(HUP);
2232 SSH_SIG(ILL);
2233 SSH_SIG(INT);
2234 SSH_SIG(KILL);
2235 SSH_SIG(PIPE);
2236 SSH_SIG(QUIT);
2237 SSH_SIG(SEGV);
2238 SSH_SIG(TERM);
2239 SSH_SIG(USR1);
2240 SSH_SIG(USR2);
2241#undef SSH_SIG
2242 return "SIG@openssh.com";
2243}
2244
Ben Lindstrombba81212001-06-25 05:01:22 +00002245static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002246session_close_x11(int id)
2247{
2248 Channel *c;
2249
Damien Millerd47c62a2005-12-13 19:33:57 +11002250 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002251 debug("session_close_x11: x11 channel %d missing", id);
2252 } else {
2253 /* Detach X11 listener */
2254 debug("session_close_x11: detach x11 channel %d", id);
2255 channel_cancel_cleanup(id);
2256 if (c->ostate != CHAN_OUTPUT_CLOSED)
2257 chan_mark_dead(c);
2258 }
2259}
2260
2261static void
2262session_close_single_x11(int id, void *arg)
2263{
2264 Session *s;
2265 u_int i;
2266
2267 debug3("session_close_single_x11: channel %d", id);
2268 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002269 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002270 fatal("session_close_single_x11: no x11 channel %d", id);
2271 for (i = 0; s->x11_chanids[i] != -1; i++) {
2272 debug("session_close_single_x11: session %d: "
2273 "closing channel %d", s->self, s->x11_chanids[i]);
2274 /*
2275 * The channel "id" is already closing, but make sure we
2276 * close all of its siblings.
2277 */
2278 if (s->x11_chanids[i] != id)
2279 session_close_x11(s->x11_chanids[i]);
2280 }
2281 xfree(s->x11_chanids);
2282 s->x11_chanids = NULL;
2283 if (s->display) {
2284 xfree(s->display);
2285 s->display = NULL;
2286 }
2287 if (s->auth_proto) {
2288 xfree(s->auth_proto);
2289 s->auth_proto = NULL;
2290 }
2291 if (s->auth_data) {
2292 xfree(s->auth_data);
2293 s->auth_data = NULL;
2294 }
2295 if (s->auth_display) {
2296 xfree(s->auth_display);
2297 s->auth_display = NULL;
2298 }
2299}
2300
2301static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002302session_exit_message(Session *s, int status)
2303{
2304 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002305
2306 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002307 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002308 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002309 debug("session_exit_message: session %d channel %d pid %ld",
2310 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002311
2312 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002313 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002314 packet_put_int(WEXITSTATUS(status));
2315 packet_send();
2316 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002317 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002318 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002319#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002320 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002321#else /* WCOREDUMP */
2322 packet_put_char(0);
2323#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002324 packet_put_cstring("");
2325 packet_put_cstring("");
2326 packet_send();
2327 } else {
2328 /* Some weird exit cause. Just exit. */
2329 packet_disconnect("wait returned status %04x.", status);
2330 }
2331
2332 /* disconnect channel */
2333 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002334
2335 /*
2336 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002337 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002338 * by session_close_by_channel when the childs close their fds.
2339 */
2340 channel_register_cleanup(c->self, session_close_by_channel, 1);
2341
Damien Miller166fca82000-04-20 07:42:21 +10002342 /*
2343 * emulate a write failure with 'chan_write_failed', nobody will be
2344 * interested in data we write.
2345 * Note that we must not call 'chan_read_failed', since there could
2346 * be some more data waiting in the pipe.
2347 */
Damien Millerbd483e72000-04-30 10:00:53 +10002348 if (c->ostate != CHAN_OUTPUT_CLOSED)
2349 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002350}
2351
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002352void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002353session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002354{
Damien Millereccb9de2005-06-17 12:59:34 +10002355 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002356
Ben Lindstromce0f6342002-06-11 16:42:49 +00002357 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002358 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002359 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002360 if (s->term)
2361 xfree(s->term);
2362 if (s->display)
2363 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002364 if (s->x11_chanids)
2365 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002366 if (s->auth_display)
2367 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002368 if (s->auth_data)
2369 xfree(s->auth_data);
2370 if (s->auth_proto)
2371 xfree(s->auth_proto);
2372 s->used = 0;
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002373 if (s->env != NULL) {
2374 for (i = 0; i < s->num_env; i++) {
2375 xfree(s->env[i].name);
2376 xfree(s->env[i].val);
2377 }
Darren Tucker46bc0752004-05-02 22:11:30 +10002378 xfree(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002379 }
Damien Millere247cc42000-05-07 12:03:14 +10002380 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002381}
2382
2383void
2384session_close_by_pid(pid_t pid, int status)
2385{
2386 Session *s = session_by_pid(pid);
2387 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002388 debug("session_close_by_pid: no session for pid %ld",
2389 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002390 return;
2391 }
2392 if (s->chanid != -1)
2393 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002394 if (s->ttyfd != -1)
2395 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002396 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002397}
2398
2399/*
2400 * this is called when a channel dies before
2401 * the session 'child' itself dies
2402 */
2403void
2404session_close_by_channel(int id, void *arg)
2405{
2406 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002407 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002408
Damien Millerefb4afe2000-04-12 18:45:05 +10002409 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002410 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002411 return;
2412 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002413 debug("session_close_by_channel: channel %d child %ld",
2414 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002415 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002416 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002417 /*
2418 * delay detach of session, but release pty, since
2419 * the fd's to the child are already closed
2420 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002421 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002422 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002423 return;
2424 }
2425 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002426 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002427
2428 /* Close any X11 listeners associated with this session */
2429 if (s->x11_chanids != NULL) {
2430 for (i = 0; s->x11_chanids[i] != -1; i++) {
2431 session_close_x11(s->x11_chanids[i]);
2432 s->x11_chanids[i] = -1;
2433 }
2434 }
2435
Damien Millerefb4afe2000-04-12 18:45:05 +10002436 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002437 session_close(s);
2438}
2439
2440void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002441session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002442{
2443 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002444 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002445 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002446 if (s->used) {
2447 if (closefunc != NULL)
2448 closefunc(s);
2449 else
2450 session_close(s);
2451 }
Damien Miller52b77be2001-10-10 15:14:37 +10002452 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002453}
2454
Ben Lindstrombba81212001-06-25 05:01:22 +00002455static char *
Damien Millere247cc42000-05-07 12:03:14 +10002456session_tty_list(void)
2457{
2458 static char buf[1024];
2459 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002460 char *cp;
2461
Damien Millere247cc42000-05-07 12:03:14 +10002462 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002463 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002464 Session *s = &sessions[i];
2465 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002466
Damien Millera8ed44b2003-01-10 09:53:12 +11002467 if (strncmp(s->tty, "/dev/", 5) != 0) {
2468 cp = strrchr(s->tty, '/');
2469 cp = (cp == NULL) ? s->tty : cp + 1;
2470 } else
2471 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002472
Damien Millere247cc42000-05-07 12:03:14 +10002473 if (buf[0] != '\0')
2474 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002475 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002476 }
2477 }
2478 if (buf[0] == '\0')
2479 strlcpy(buf, "notty", sizeof buf);
2480 return buf;
2481}
2482
2483void
2484session_proctitle(Session *s)
2485{
2486 if (s->pw == NULL)
2487 error("no user for session %d", s->self);
2488 else
2489 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2490}
2491
Ben Lindstrom768176b2001-06-09 01:29:12 +00002492int
2493session_setup_x11fwd(Session *s)
2494{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002495 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002496 char display[512], auth_display[512];
2497 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002498 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002499
2500 if (no_x11_forwarding_flag) {
2501 packet_send_debug("X11 forwarding disabled in user configuration file.");
2502 return 0;
2503 }
2504 if (!options.x11_forwarding) {
2505 debug("X11 forwarding disabled in server configuration file.");
2506 return 0;
2507 }
2508 if (!options.xauth_location ||
2509 (stat(options.xauth_location, &st) == -1)) {
2510 packet_send_debug("No xauth program; cannot forward with spoofing.");
2511 return 0;
2512 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002513 if (options.use_login) {
2514 packet_send_debug("X11 forwarding disabled; "
2515 "not compatible with UseLogin=yes.");
2516 return 0;
2517 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002518 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002519 debug("X11 display already set.");
2520 return 0;
2521 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002522 if (x11_create_display_inet(options.x11_display_offset,
2523 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002524 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002525 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002526 return 0;
2527 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002528 for (i = 0; s->x11_chanids[i] != -1; i++) {
2529 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002530 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002531 }
Kevin Steves366298c2001-12-19 17:58:01 +00002532
2533 /* Set up a suitable value for the DISPLAY variable. */
2534 if (gethostname(hostname, sizeof(hostname)) < 0)
2535 fatal("gethostname: %.100s", strerror(errno));
2536 /*
2537 * auth_display must be used as the displayname when the
2538 * authorization entry is added with xauth(1). This will be
2539 * different than the DISPLAY string for localhost displays.
2540 */
Damien Miller95c249f2002-02-05 12:11:34 +11002541 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002542 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002543 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002544 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002545 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002546 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002547 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002548 } else {
2549#ifdef IPADDR_IN_DISPLAY
2550 struct hostent *he;
2551 struct in_addr my_addr;
2552
2553 he = gethostbyname(hostname);
2554 if (he == NULL) {
2555 error("Can't get IP address for X11 DISPLAY.");
2556 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2557 return 0;
2558 }
2559 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002560 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002561 s->display_number, s->screen);
2562#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002563 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002564 s->display_number, s->screen);
2565#endif
2566 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002567 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002568 }
2569
Ben Lindstrom768176b2001-06-09 01:29:12 +00002570 return 1;
2571}
2572
Ben Lindstrombba81212001-06-25 05:01:22 +00002573static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002574do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002575{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002576 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002577}
2578
2579void
2580do_cleanup(Authctxt *authctxt)
2581{
2582 static int called = 0;
2583
2584 debug("do_cleanup");
2585
2586 /* no cleanup if we're in the child for login shell */
2587 if (is_child)
2588 return;
2589
2590 /* avoid double cleanup */
2591 if (called)
2592 return;
2593 called = 1;
2594
Darren Tucker9142e1c2007-08-16 23:28:04 +10002595 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002596 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002597
2598#ifdef USE_PAM
2599 if (options.use_pam) {
2600 sshpam_cleanup();
2601 sshpam_thread_cleanup();
2602 }
2603#endif
2604
2605 if (!authctxt->authenticated)
2606 return;
2607
Darren Tucker3e33cec2003-10-02 16:12:36 +10002608#ifdef KRB5
2609 if (options.kerberos_ticket_cleanup &&
2610 authctxt->krb5_ctx)
2611 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002612#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002613
2614#ifdef GSSAPI
2615 if (compat20 && options.gss_cleanup_creds)
2616 ssh_gssapi_cleanup_creds();
2617#endif
2618
2619 /* remove agent socket */
2620 auth_sock_cleanup_proc(authctxt->pw);
2621
2622 /*
2623 * Cleanup ptys/utmp only if privsep is disabled,
2624 * or if running in monitor.
2625 */
2626 if (!use_privsep || mm_is_monitor())
2627 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002628}