blob: 5441a47624cf3ee5ae49dc5f9597e00fe49d7798 [file] [log] [blame]
Darren Tucker39972492006-07-12 22:22:46 +10001/* $OpenBSD: session.c,v 1.209 2006/07/11 20:07:25 stevesk 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 Millerf17883e2006-03-15 11:45:54 +110039#ifdef HAVE_SYS_STAT_H
40# include <sys/stat.h>
41#endif
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/socket.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110043#include <sys/wait.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller03e20032006-03-15 11:16:59 +110045
Darren Tucker39972492006-07-12 22:22:46 +100046#include <errno.h>
Damien Miller427a1d52006-07-10 20:20:33 +100047#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110048#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110049#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110050#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100051#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110052#include <signal.h>
Damien Millerefc04e72006-07-10 20:26:27 +100053#include <arpa/inet.h>
Damien Millerb38eff82000-04-01 11:09:21 +100054
Damien Millerb38eff82000-04-01 11:09:21 +100055#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "ssh1.h"
57#include "ssh2.h"
58#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000059#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100060#include "packet.h"
61#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100062#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100063#include "uidswap.h"
64#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000065#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100067#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100068#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "pathnames.h"
70#include "log.h"
71#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000072#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "serverloop.h"
74#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000075#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100076#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000077#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100078
Darren Tucker3c78c5e2004-01-23 22:03:10 +110079#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110080#include <kafs.h>
81#endif
82
Darren Tucker0efd1552003-08-26 11:49:55 +100083#ifdef GSSAPI
84#include "ssh-gss.h"
85#endif
86
Damien Millerb38eff82000-04-01 11:09:21 +100087/* func */
88
89Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000090void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100091void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000092void session_proctitle(Session *);
93int session_setup_x11fwd(Session *);
94void do_exec_pty(Session *, const char *);
95void do_exec_no_pty(Session *, const char *);
96void do_exec(Session *, const char *);
97void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000098#ifdef LOGIN_NEEDS_UTMPX
99static void do_pre_login(Session *s);
100#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000101void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000102void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000103int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000104
Ben Lindstrombba81212001-06-25 05:01:22 +0000105static void do_authenticated1(Authctxt *);
106static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000109
Damien Millerb38eff82000-04-01 11:09:21 +1000110/* import */
111extern ServerOptions options;
112extern char *__progname;
113extern int log_stderr;
114extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000115extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000116extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000117extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000118extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000119
Damien Miller7b28dc52000-09-05 13:34:53 +1100120/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000121const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100122
Damien Millerb38eff82000-04-01 11:09:21 +1000123/* data */
124#define MAX_SESSIONS 10
125Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100126
Damien Millerad833b32000-08-23 10:46:23 +1000127#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000128login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000129#endif
130
Darren Tucker3e33cec2003-10-02 16:12:36 +1000131static int is_child = 0;
132
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000133/* Name and directory of socket for authentication agent forwarding. */
134static char *auth_sock_name = NULL;
135static char *auth_sock_dir = NULL;
136
137/* removes the agent forwarding socket */
138
139static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000140auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000141{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000142 if (auth_sock_name != NULL) {
143 temporarily_use_uid(pw);
144 unlink(auth_sock_name);
145 rmdir(auth_sock_dir);
146 auth_sock_name = NULL;
147 restore_uid();
148 }
149}
150
151static int
152auth_input_request_forwarding(struct passwd * pw)
153{
154 Channel *nc;
155 int sock;
156 struct sockaddr_un sunaddr;
157
158 if (auth_sock_name != NULL) {
159 error("authentication forwarding requested twice.");
160 return 0;
161 }
162
163 /* Temporarily drop privileged uid for mkdir/bind. */
164 temporarily_use_uid(pw);
165
166 /* Allocate a buffer for the socket name, and format the name. */
167 auth_sock_name = xmalloc(MAXPATHLEN);
168 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000169 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000170
171 /* Create private directory for socket */
172 if (mkdtemp(auth_sock_dir) == NULL) {
173 packet_send_debug("Agent forwarding disabled: "
174 "mkdtemp() failed: %.100s", strerror(errno));
175 restore_uid();
176 xfree(auth_sock_name);
177 xfree(auth_sock_dir);
178 auth_sock_name = NULL;
179 auth_sock_dir = NULL;
180 return 0;
181 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000182 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
183 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000184
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000185 /* Create the socket. */
186 sock = socket(AF_UNIX, SOCK_STREAM, 0);
187 if (sock < 0)
188 packet_disconnect("socket: %.100s", strerror(errno));
189
190 /* Bind it to the name. */
191 memset(&sunaddr, 0, sizeof(sunaddr));
192 sunaddr.sun_family = AF_UNIX;
193 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
194
Damien Miller90967402006-03-26 14:07:26 +1100195 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000196 packet_disconnect("bind: %.100s", strerror(errno));
197
198 /* Restore the privileged uid. */
199 restore_uid();
200
201 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100202 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000203 packet_disconnect("listen: %.100s", strerror(errno));
204
205 /* Allocate a channel for the authentication agent socket. */
206 nc = channel_new("auth socket",
207 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
208 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000209 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000210 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
211 return 1;
212}
213
Darren Tucker1921ed92004-02-10 13:23:28 +1100214static void
215display_loginmsg(void)
216{
Damien Miller46d38de2005-07-17 17:02:09 +1000217 if (buffer_len(&loginmsg) > 0) {
218 buffer_append(&loginmsg, "\0", 1);
219 printf("%s", (char *)buffer_ptr(&loginmsg));
220 buffer_clear(&loginmsg);
221 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100222}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000223
Ben Lindstromb31783d2001-03-22 02:02:12 +0000224void
225do_authenticated(Authctxt *authctxt)
226{
Damien Miller97f39ae2003-02-24 11:57:01 +1100227 setproctitle("%s", authctxt->pw->pw_name);
228
Ben Lindstromb31783d2001-03-22 02:02:12 +0000229 /* setup the channel layer */
230 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
231 channel_permit_all_opens();
232
233 if (compat20)
234 do_authenticated2(authctxt);
235 else
236 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000237
Darren Tucker3e33cec2003-10-02 16:12:36 +1000238 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000239}
240
Damien Millerb38eff82000-04-01 11:09:21 +1000241/*
Damien Millerb38eff82000-04-01 11:09:21 +1000242 * Prepares for an interactive session. This is called after the user has
243 * been successfully authenticated. During this message exchange, pseudo
244 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
245 * are requested, etc.
246 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000247static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000248do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000249{
250 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000251 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100252 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000253 int enable_compression_after_reply = 0;
254 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000255
256 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100257 if (s == NULL) {
258 error("no more sessions");
259 return;
260 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000261 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000262 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000263
Damien Millerb38eff82000-04-01 11:09:21 +1000264 /*
265 * We stay in this loop until the client requests to execute a shell
266 * or a command.
267 */
268 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000269 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000270
271 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100272 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000273
274 /* Process the packet. */
275 switch (type) {
276 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000277 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100278 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000279 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000280 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100281 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000282 break;
283 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000284 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000285 debug2("compression disabled");
286 break;
287 }
Damien Millerb38eff82000-04-01 11:09:21 +1000288 /* Enable compression after we have responded with SUCCESS. */
289 enable_compression_after_reply = 1;
290 success = 1;
291 break;
292
293 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000294 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000295 break;
296
297 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000298 s->auth_proto = packet_get_string(&proto_len);
299 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000300
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000301 screen_flag = packet_get_protocol_flags() &
302 SSH_PROTOFLAG_SCREEN_NUMBER;
303 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
304
305 if (packet_remaining() == 4) {
306 if (!screen_flag)
307 debug2("Buggy client: "
308 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000309 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000310 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000311 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000312 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100313 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000314 success = session_setup_x11fwd(s);
315 if (!success) {
316 xfree(s->auth_proto);
317 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000318 s->auth_proto = NULL;
319 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000320 }
Damien Millerb38eff82000-04-01 11:09:21 +1000321 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000322
323 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
324 if (no_agent_forwarding_flag || compat13) {
325 debug("Authentication agent forwarding not permitted for this authentication.");
326 break;
327 }
328 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000329 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000330 break;
331
332 case SSH_CMSG_PORT_FORWARD_REQUEST:
333 if (no_port_forwarding_flag) {
334 debug("Port forwarding not permitted for this authentication.");
335 break;
336 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100337 if (!options.allow_tcp_forwarding) {
338 debug("Port forwarding not permitted.");
339 break;
340 }
Damien Millerb38eff82000-04-01 11:09:21 +1000341 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000342 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
343 options.gateway_ports) < 0) {
344 debug("Port forwarding failed.");
345 break;
346 }
Damien Millerb38eff82000-04-01 11:09:21 +1000347 success = 1;
348 break;
349
350 case SSH_CMSG_MAX_PACKET_SIZE:
351 if (packet_set_maxsize(packet_get_int()) > 0)
352 success = 1;
353 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100354
Damien Millerb38eff82000-04-01 11:09:21 +1000355 case SSH_CMSG_EXEC_SHELL:
356 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000357 if (type == SSH_CMSG_EXEC_CMD) {
358 command = packet_get_string(&dlen);
359 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000360 do_exec(s, command);
361 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000362 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000363 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000364 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100365 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000366 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000367 return;
368
369 default:
370 /*
371 * Any unknown messages in this phase are ignored,
372 * and a failure message is returned.
373 */
Damien Miller996acd22003-04-09 20:59:48 +1000374 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000375 }
376 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
377 packet_send();
378 packet_write_wait();
379
380 /* Enable compression now that we have replied if appropriate. */
381 if (enable_compression_after_reply) {
382 enable_compression_after_reply = 0;
383 packet_start_compression(compression_level);
384 }
385 }
386}
387
388/*
389 * This is called to fork and execute a command when we have no tty. This
390 * will call do_child from the child, and server_loop from the parent after
391 * setting up file descriptors and such.
392 */
Damien Miller4af51302000-04-16 11:18:38 +1000393void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000394do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000395{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000396 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000397
398#ifdef USE_PIPES
399 int pin[2], pout[2], perr[2];
400 /* Allocate pipes for communicating with the program. */
401 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
402 packet_disconnect("Could not create pipes: %.100s",
403 strerror(errno));
404#else /* USE_PIPES */
405 int inout[2], err[2];
406 /* Uses socket pairs to communicate with the program. */
407 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
408 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
409 packet_disconnect("Could not create socket pairs: %.100s",
410 strerror(errno));
411#endif /* USE_PIPES */
412 if (s == NULL)
413 fatal("do_exec_no_pty: no session");
414
Damien Millere247cc42000-05-07 12:03:14 +1000415 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000416
Damien Millerc5946332001-02-28 11:46:11 +1100417#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100418 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000419 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000420#endif /* USE_PAM */
421
Damien Millerb38eff82000-04-01 11:09:21 +1000422 /* Fork the child. */
423 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000424 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000425
Damien Millerb38eff82000-04-01 11:09:21 +1000426 /* Child. Reinitialize the log since the pid has changed. */
427 log_init(__progname, options.log_level, options.log_facility, log_stderr);
428
429 /*
430 * Create a new session and process group since the 4.4BSD
431 * setlogin() affects the entire process group.
432 */
433 if (setsid() < 0)
434 error("setsid failed: %.100s", strerror(errno));
435
436#ifdef USE_PIPES
437 /*
438 * Redirect stdin. We close the parent side of the socket
439 * pair, and make the child side the standard input.
440 */
441 close(pin[1]);
442 if (dup2(pin[0], 0) < 0)
443 perror("dup2 stdin");
444 close(pin[0]);
445
446 /* Redirect stdout. */
447 close(pout[0]);
448 if (dup2(pout[1], 1) < 0)
449 perror("dup2 stdout");
450 close(pout[1]);
451
452 /* Redirect stderr. */
453 close(perr[0]);
454 if (dup2(perr[1], 2) < 0)
455 perror("dup2 stderr");
456 close(perr[1]);
457#else /* USE_PIPES */
458 /*
459 * Redirect stdin, stdout, and stderr. Stdin and stdout will
460 * use the same socket, as some programs (particularly rdist)
461 * seem to depend on it.
462 */
463 close(inout[1]);
464 close(err[1]);
465 if (dup2(inout[0], 0) < 0) /* stdin */
466 perror("dup2 stdin");
467 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
468 perror("dup2 stdout");
469 if (dup2(err[0], 2) < 0) /* stderr */
470 perror("dup2 stderr");
471#endif /* USE_PIPES */
472
Tim Rice81ed5182002-09-25 17:38:46 -0700473#ifdef _UNICOS
474 cray_init_job(s->pw); /* set up cray jid and tmpdir */
475#endif
476
Damien Millerb38eff82000-04-01 11:09:21 +1000477 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000478 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000479 /* NOTREACHED */
480 }
Tim Rice81ed5182002-09-25 17:38:46 -0700481#ifdef _UNICOS
482 signal(WJSIGNAL, cray_job_termination_handler);
483#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100484#ifdef HAVE_CYGWIN
485 if (is_winnt)
486 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
487#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000488 if (pid < 0)
489 packet_disconnect("fork failed: %.100s", strerror(errno));
490 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000491 /* Set interactive/non-interactive mode. */
492 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000493#ifdef USE_PIPES
494 /* We are the parent. Close the child sides of the pipes. */
495 close(pin[0]);
496 close(pout[1]);
497 close(perr[1]);
498
Damien Millerefb4afe2000-04-12 18:45:05 +1000499 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000500 if (s->is_subsystem) {
501 close(perr[0]);
502 perr[0] = -1;
503 }
504 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000505 } else {
506 /* Enter the interactive session. */
507 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000508 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000509 }
Damien Millerb38eff82000-04-01 11:09:21 +1000510#else /* USE_PIPES */
511 /* We are the parent. Close the child sides of the socket pairs. */
512 close(inout[0]);
513 close(err[0]);
514
515 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100516 * Clear loginmsg, since it's the child's responsibility to display
517 * it to the user, otherwise multiple sessions may accumulate
518 * multiple copies of the login messages.
519 */
520 buffer_clear(&loginmsg);
521
522 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000523 * Enter the interactive session. Note: server_loop must be able to
524 * handle the case that fdin and fdout are the same.
525 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000526 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000527 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000528 } else {
529 server_loop(pid, inout[1], inout[1], err[1]);
530 /* server_loop has closed inout[1] and err[1]. */
531 }
Damien Millerb38eff82000-04-01 11:09:21 +1000532#endif /* USE_PIPES */
533}
534
535/*
536 * This is called to fork and execute a command when we have a tty. This
537 * will call do_child from the child, and server_loop from the parent after
538 * setting up file descriptors, controlling tty, updating wtmp, utmp,
539 * lastlog, and other such operations.
540 */
Damien Miller4af51302000-04-16 11:18:38 +1000541void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000542do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000543{
Damien Millerb38eff82000-04-01 11:09:21 +1000544 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000545 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000546
547 if (s == NULL)
548 fatal("do_exec_pty: no session");
549 ptyfd = s->ptyfd;
550 ttyfd = s->ttyfd;
551
Damien Millerc5946332001-02-28 11:46:11 +1100552#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000553 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000554 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100555 if (!use_privsep)
556 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000557 }
Damien Miller5a761312001-02-27 09:28:23 +1100558#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000559
Damien Millerb38eff82000-04-01 11:09:21 +1000560 /* Fork the child. */
561 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000562 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000563
Damien Miller942da032000-08-18 13:59:06 +1000564 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000565 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000566 /* Close the master side of the pseudo tty. */
567 close(ptyfd);
568
569 /* Make the pseudo tty our controlling tty. */
570 pty_make_controlling_tty(&ttyfd, s->tty);
571
Damien Miller9c751422001-10-10 15:02:46 +1000572 /* Redirect stdin/stdout/stderr from the pseudo tty. */
573 if (dup2(ttyfd, 0) < 0)
574 error("dup2 stdin: %s", strerror(errno));
575 if (dup2(ttyfd, 1) < 0)
576 error("dup2 stdout: %s", strerror(errno));
577 if (dup2(ttyfd, 2) < 0)
578 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000579
580 /* Close the extra descriptor for the pseudo tty. */
581 close(ttyfd);
582
Damien Miller942da032000-08-18 13:59:06 +1000583 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000584#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700585 if (!(options.use_login && command == NULL)) {
586#ifdef _UNICOS
587 cray_init_job(s->pw); /* set up cray jid and tmpdir */
588#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100589 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700590 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000591# ifdef LOGIN_NEEDS_UTMPX
592 else
593 do_pre_login(s);
594# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000595#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000596
Damien Millerb38eff82000-04-01 11:09:21 +1000597 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000598 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000599 /* NOTREACHED */
600 }
Tim Rice81ed5182002-09-25 17:38:46 -0700601#ifdef _UNICOS
602 signal(WJSIGNAL, cray_job_termination_handler);
603#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100604#ifdef HAVE_CYGWIN
605 if (is_winnt)
606 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
607#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000608 if (pid < 0)
609 packet_disconnect("fork failed: %.100s", strerror(errno));
610 s->pid = pid;
611
612 /* Parent. Close the slave side of the pseudo tty. */
613 close(ttyfd);
614
615 /*
616 * Create another descriptor of the pty master side for use as the
617 * standard input. We could use the original descriptor, but this
618 * simplifies code in server_loop. The descriptor is bidirectional.
619 */
620 fdout = dup(ptyfd);
621 if (fdout < 0)
622 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
623
624 /* we keep a reference to the pty master */
625 ptymaster = dup(ptyfd);
626 if (ptymaster < 0)
627 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
628 s->ptymaster = ptymaster;
629
630 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000631 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000632 if (compat20) {
633 session_set_fds(s, ptyfd, fdout, -1);
634 } else {
635 server_loop(pid, ptyfd, fdout, -1);
636 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000637 }
Damien Millerb38eff82000-04-01 11:09:21 +1000638}
639
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000640#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000641static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000642do_pre_login(Session *s)
643{
644 socklen_t fromlen;
645 struct sockaddr_storage from;
646 pid_t pid = getpid();
647
648 /*
649 * Get IP address of client. If the connection is not a socket, let
650 * the address be 0.0.0.0.
651 */
652 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000653 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000654 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000655 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100656 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000657 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000658 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000659 }
660 }
661
662 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000663 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000664 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000665}
666#endif
667
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000668/*
669 * This is called to fork and execute a command. If another command is
670 * to be forced, execute that instead.
671 */
672void
673do_exec(Session *s, const char *command)
674{
675 if (forced_command) {
676 original_command = command;
677 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000678 debug("Forced command '%.900s'", command);
679 }
680
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100681#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100682 if (command != NULL)
683 PRIVSEP(audit_run_command(command));
684 else if (s->ttyfd == -1) {
685 char *shell = s->pw->pw_shell;
686
687 if (shell[0] == '\0') /* empty shell means /bin/sh */
688 shell =_PATH_BSHELL;
689 PRIVSEP(audit_run_command(shell));
690 }
691#endif
692
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000693 if (s->ttyfd != -1)
694 do_exec_pty(s, command);
695 else
696 do_exec_no_pty(s, command);
697
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000698 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000699
Darren Tucker09991742004-07-17 17:05:14 +1000700 /*
701 * Clear loginmsg: it's the child's responsibility to display
702 * it to the user, otherwise multiple sessions may accumulate
703 * multiple copies of the login messages.
704 */
705 buffer_clear(&loginmsg);
706}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000707
Damien Miller942da032000-08-18 13:59:06 +1000708/* administrative, login(1)-like work */
709void
Damien Miller69b69aa2000-10-28 14:19:58 +1100710do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000711{
Damien Miller942da032000-08-18 13:59:06 +1000712 socklen_t fromlen;
713 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000714 struct passwd * pw = s->pw;
715 pid_t pid = getpid();
716
717 /*
718 * Get IP address of client. If the connection is not a socket, let
719 * the address be 0.0.0.0.
720 */
721 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000722 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000723 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000724 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000725 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000726 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000727 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000728 }
729 }
730
731 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000732 if (!use_privsep)
733 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
734 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000735 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000736 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000737
Kevin Steves092f2ef2000-10-14 13:36:13 +0000738#ifdef USE_PAM
739 /*
740 * If password change is needed, do it now.
741 * This needs to occur before the ~/.hushlogin check.
742 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100743 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
744 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000745 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100746 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000747 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000748 }
749#endif
750
Damien Millercf205e82001-04-16 18:29:15 +1000751 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000752 return;
753
Darren Tucker1921ed92004-02-10 13:23:28 +1100754 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000755
Damien Millercf205e82001-04-16 18:29:15 +1000756 do_motd();
757}
758
759/*
760 * Display the message of the day.
761 */
762void
763do_motd(void)
764{
765 FILE *f;
766 char buf[256];
767
Damien Miller942da032000-08-18 13:59:06 +1000768 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000769#ifdef HAVE_LOGIN_CAP
770 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
771 "/etc/motd"), "r");
772#else
Damien Miller942da032000-08-18 13:59:06 +1000773 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000774#endif
Damien Miller942da032000-08-18 13:59:06 +1000775 if (f) {
776 while (fgets(buf, sizeof(buf), f))
777 fputs(buf, stdout);
778 fclose(f);
779 }
780 }
781}
782
Kevin Steves8f63caa2001-07-04 18:23:02 +0000783
784/*
785 * Check for quiet login, either .hushlogin or command given.
786 */
787int
788check_quietlogin(Session *s, const char *command)
789{
790 char buf[256];
791 struct passwd *pw = s->pw;
792 struct stat st;
793
794 /* Return 1 if .hushlogin exists or a command given. */
795 if (command != NULL)
796 return 1;
797 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
798#ifdef HAVE_LOGIN_CAP
799 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
800 return 1;
801#else
802 if (stat(buf, &st) >= 0)
803 return 1;
804#endif
805 return 0;
806}
807
Damien Millerb38eff82000-04-01 11:09:21 +1000808/*
809 * Sets the value of the given variable in the environment. If the variable
810 * already exists, its value is overriden.
811 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000812void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000813child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100814 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
Damien Millerb38eff82000-04-01 11:09:21 +1000816 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000817 u_int envsize;
818 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000819
820 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000821 * If we're passed an uninitialized list, allocate a single null
822 * entry before continuing.
823 */
824 if (*envp == NULL && *envsizep == 0) {
825 *envp = xmalloc(sizeof(char *));
826 *envp[0] = NULL;
827 *envsizep = 1;
828 }
829
830 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000831 * Find the slot where the value should be stored. If the variable
832 * already exists, we reuse the slot; otherwise we append a new slot
833 * at the end of the array, expanding if necessary.
834 */
835 env = *envp;
836 namelen = strlen(name);
837 for (i = 0; env[i]; i++)
838 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
839 break;
840 if (env[i]) {
841 /* Reuse the slot. */
842 xfree(env[i]);
843 } else {
844 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000845 envsize = *envsizep;
846 if (i >= envsize - 1) {
847 if (envsize >= 1000)
848 fatal("child_set_env: too many env vars");
849 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100850 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000851 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000852 }
853 /* Need to set the NULL pointer at end of array beyond the new slot. */
854 env[i + 1] = NULL;
855 }
856
857 /* Allocate space and format the variable in the appropriate slot. */
858 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
859 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
860}
861
862/*
863 * Reads environment variables from the given file and adds/overrides them
864 * into the environment. If the file does not exist, this does nothing.
865 * Otherwise, it must consist of empty lines, comments (line starts with '#')
866 * and assignments of the form name=value. No other forms are allowed.
867 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000869read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100870 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000871{
872 FILE *f;
873 char buf[4096];
874 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000875 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000876
877 f = fopen(filename, "r");
878 if (!f)
879 return;
880
881 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000882 if (++lineno > 1000)
883 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000884 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
885 ;
886 if (!*cp || *cp == '#' || *cp == '\n')
887 continue;
888 if (strchr(cp, '\n'))
889 *strchr(cp, '\n') = '\0';
890 value = strchr(cp, '=');
891 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000892 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
893 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000894 continue;
895 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000896 /*
897 * Replace the equals sign by nul, and advance value to
898 * the value string.
899 */
Damien Millerb38eff82000-04-01 11:09:21 +1000900 *value = '\0';
901 value++;
902 child_set_env(env, envsize, cp, value);
903 }
904 fclose(f);
905}
906
Darren Tuckere1a790d2003-09-16 11:52:19 +1000907#ifdef HAVE_ETC_DEFAULT_LOGIN
908/*
909 * Return named variable from specified environment, or NULL if not present.
910 */
911static char *
912child_get_env(char **env, const char *name)
913{
914 int i;
915 size_t len;
916
917 len = strlen(name);
918 for (i=0; env[i] != NULL; i++)
919 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
920 return(env[i] + len + 1);
921 return NULL;
922}
923
924/*
925 * Read /etc/default/login.
926 * We pick up the PATH (or SUPATH for root) and UMASK.
927 */
928static void
929read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
930{
931 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000932 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000933 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000934
935 /*
936 * We don't want to copy the whole file to the child's environment,
937 * so we use a temporary environment and copy the variables we're
938 * interested in.
939 */
940 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
941
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000942 if (tmpenv == NULL)
943 return;
944
Darren Tuckere1a790d2003-09-16 11:52:19 +1000945 if (uid == 0)
946 var = child_get_env(tmpenv, "SUPATH");
947 else
948 var = child_get_env(tmpenv, "PATH");
949 if (var != NULL)
950 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100951
Darren Tuckere1a790d2003-09-16 11:52:19 +1000952 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
953 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000954 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100955
Darren Tuckere1a790d2003-09-16 11:52:19 +1000956 for (i = 0; tmpenv[i] != NULL; i++)
957 xfree(tmpenv[i]);
958 xfree(tmpenv);
959}
960#endif /* HAVE_ETC_DEFAULT_LOGIN */
961
Damien Miller7dff8692005-05-26 11:34:51 +1000962void
963copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000964{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100965 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000966 int i;
967
Damien Millerbb9ffc12002-01-08 10:59:32 +1100968 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000969 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000970
Damien Millerbb9ffc12002-01-08 10:59:32 +1100971 for(i = 0; source[i] != NULL; i++) {
972 var_name = xstrdup(source[i]);
973 if ((var_val = strstr(var_name, "=")) == NULL) {
974 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000975 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000976 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100977 *var_val++ = '\0';
978
979 debug3("Copy environment: %s=%s", var_name, var_val);
980 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100981
Damien Millerbb9ffc12002-01-08 10:59:32 +1100982 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000983 }
984}
Damien Millercb5e44a2000-09-29 12:12:36 +1100985
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000986static char **
987do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000988{
Damien Millerb38eff82000-04-01 11:09:21 +1000989 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000990 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000991 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000992 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000993
Damien Millerb38eff82000-04-01 11:09:21 +1000994 /* Initialize the environment. */
995 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +1000996 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +1000997 env[0] = NULL;
998
Damien Millerbac2d8a2000-09-05 16:13:06 +1100999#ifdef HAVE_CYGWIN
1000 /*
1001 * The Windows environment contains some setting which are
1002 * important for a running system. They must not be dropped.
1003 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001004 {
1005 char **p;
1006
1007 p = fetch_windows_environment();
1008 copy_environment(p, &env, &envsize);
1009 free_windows_environment(p);
1010 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001011#endif
1012
Darren Tucker0efd1552003-08-26 11:49:55 +10001013#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001014 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001015 * the childs environment as they see fit
1016 */
1017 ssh_gssapi_do_child(&env, &envsize);
1018#endif
1019
Damien Millerb38eff82000-04-01 11:09:21 +10001020 if (!options.use_login) {
1021 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001022 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001023 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001024 s->env[i].val);
1025
Damien Millerb38eff82000-04-01 11:09:21 +10001026 child_set_env(&env, &envsize, "USER", pw->pw_name);
1027 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001028#ifdef _AIX
1029 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1030#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001031 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001032#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001033 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1034 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1035 else
1036 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001037#else /* HAVE_LOGIN_CAP */
1038# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001039 /*
1040 * There's no standard path on Windows. The path contains
1041 * important components pointing to the system directories,
1042 * needed for loading shared libraries. So the path better
1043 * remains intact here.
1044 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001045# ifdef HAVE_ETC_DEFAULT_LOGIN
1046 read_etc_default_login(&env, &envsize, pw->pw_uid);
1047 path = child_get_env(env, "PATH");
1048# endif /* HAVE_ETC_DEFAULT_LOGIN */
1049 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001050 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001051 s->pw->pw_uid == 0 ?
1052 SUPERUSER_PATH : _PATH_STDPATH);
1053 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001054# endif /* HAVE_CYGWIN */
1055#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001056
1057 snprintf(buf, sizeof buf, "%.200s/%.50s",
1058 _PATH_MAILDIR, pw->pw_name);
1059 child_set_env(&env, &envsize, "MAIL", buf);
1060
1061 /* Normal systems set SHELL by default. */
1062 child_set_env(&env, &envsize, "SHELL", shell);
1063 }
1064 if (getenv("TZ"))
1065 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1066
1067 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001068 if (!options.use_login) {
1069 while (custom_environment) {
1070 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001071 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001072
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001073 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001074 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001075 if (str[i] == '=') {
1076 str[i] = 0;
1077 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001078 }
1079 custom_environment = ce->next;
1080 xfree(ce->s);
1081 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001082 }
Damien Millerb38eff82000-04-01 11:09:21 +10001083 }
1084
Damien Millerf37e2462002-09-19 11:47:55 +10001085 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001086 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001087 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001088 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1089
Damien Miller00111382003-03-10 11:21:17 +11001090 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001091 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001092 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1093 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001094 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1095
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001096 if (s->ttyfd != -1)
1097 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1098 if (s->term)
1099 child_set_env(&env, &envsize, "TERM", s->term);
1100 if (s->display)
1101 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001102 if (original_command)
1103 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1104 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001105
Tim Rice81ed5182002-09-25 17:38:46 -07001106#ifdef _UNICOS
1107 if (cray_tmpdir[0] != '\0')
1108 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1109#endif /* _UNICOS */
1110
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001111 /*
1112 * Since we clear KRB5CCNAME at startup, if it's set now then it
1113 * must have been set by a native authentication method (eg AIX or
1114 * SIA), so copy it to the child.
1115 */
1116 {
1117 char *cp;
1118
1119 if ((cp = getenv("KRB5CCNAME")) != NULL)
1120 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1121 }
1122
Damien Millerb38eff82000-04-01 11:09:21 +10001123#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001124 {
1125 char *cp;
1126
1127 if ((cp = getenv("AUTHSTATE")) != NULL)
1128 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001129 read_environment_file(&env, &envsize, "/etc/environment");
1130 }
Damien Millerb38eff82000-04-01 11:09:21 +10001131#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001132#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001133 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001134 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001135 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001136#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001137#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001138 /*
1139 * Pull in any environment variables that may have
1140 * been set by PAM.
1141 */
Damien Miller4e448a32003-05-14 15:11:48 +10001142 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001143 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001144
Damien Millerc756e9b2003-11-17 21:41:42 +11001145 p = fetch_pam_child_environment();
1146 copy_environment(p, &env, &envsize);
1147 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001148
Damien Millerc756e9b2003-11-17 21:41:42 +11001149 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001150 copy_environment(p, &env, &envsize);
1151 free_pam_environment(p);
1152 }
Damien Millerb38eff82000-04-01 11:09:21 +10001153#endif /* USE_PAM */
1154
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001155 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001156 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001157 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001158
1159 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001160 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001161 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001162 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001163 read_environment_file(&env, &envsize, buf);
1164 }
1165 if (debug_flag) {
1166 /* dump the environment */
1167 fprintf(stderr, "Environment:\n");
1168 for (i = 0; env[i]; i++)
1169 fprintf(stderr, " %.200s\n", env[i]);
1170 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001171 return env;
1172}
1173
1174/*
1175 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1176 * first in this order).
1177 */
1178static void
1179do_rc_files(Session *s, const char *shell)
1180{
1181 FILE *f = NULL;
1182 char cmd[1024];
1183 int do_xauth;
1184 struct stat st;
1185
1186 do_xauth =
1187 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1188
1189 /* ignore _PATH_SSH_USER_RC for subsystems */
1190 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1191 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1192 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1193 if (debug_flag)
1194 fprintf(stderr, "Running %s\n", cmd);
1195 f = popen(cmd, "w");
1196 if (f) {
1197 if (do_xauth)
1198 fprintf(f, "%s %s\n", s->auth_proto,
1199 s->auth_data);
1200 pclose(f);
1201 } else
1202 fprintf(stderr, "Could not run %s\n",
1203 _PATH_SSH_USER_RC);
1204 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1205 if (debug_flag)
1206 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1207 _PATH_SSH_SYSTEM_RC);
1208 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1209 if (f) {
1210 if (do_xauth)
1211 fprintf(f, "%s %s\n", s->auth_proto,
1212 s->auth_data);
1213 pclose(f);
1214 } else
1215 fprintf(stderr, "Could not run %s\n",
1216 _PATH_SSH_SYSTEM_RC);
1217 } else if (do_xauth && options.xauth_location != NULL) {
1218 /* Add authority data to .Xauthority if appropriate. */
1219 if (debug_flag) {
1220 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001221 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001222 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001223 fprintf(stderr,
1224 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001225 options.xauth_location, s->auth_display,
1226 s->auth_proto, s->auth_data);
1227 }
1228 snprintf(cmd, sizeof cmd, "%s -q -",
1229 options.xauth_location);
1230 f = popen(cmd, "w");
1231 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001232 fprintf(f, "remove %s\n",
1233 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001234 fprintf(f, "add %s %s %s\n",
1235 s->auth_display, s->auth_proto,
1236 s->auth_data);
1237 pclose(f);
1238 } else {
1239 fprintf(stderr, "Could not run %s\n",
1240 cmd);
1241 }
1242 }
1243}
1244
1245static void
1246do_nologin(struct passwd *pw)
1247{
1248 FILE *f = NULL;
1249 char buf[1024];
1250
1251#ifdef HAVE_LOGIN_CAP
1252 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1253 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1254 _PATH_NOLOGIN), "r");
1255#else
1256 if (pw->pw_uid)
1257 f = fopen(_PATH_NOLOGIN, "r");
1258#endif
1259 if (f) {
1260 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001261 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001262 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001263 while (fgets(buf, sizeof(buf), f))
1264 fputs(buf, stderr);
1265 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001266 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001267 exit(254);
1268 }
1269}
1270
1271/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001272void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001273do_setusercontext(struct passwd *pw)
1274{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001275#ifndef HAVE_CYGWIN
1276 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001277#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001278 {
1279
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001280#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001281 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1282 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001283#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001284#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001285# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001286 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001287# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001288#ifdef GSSAPI
1289 if (options.gss_authentication) {
1290 temporarily_use_uid(pw);
1291 ssh_gssapi_storecreds();
1292 restore_uid();
1293 }
1294#endif
Damien Millerd3526362004-01-23 14:16:26 +11001295# ifdef USE_PAM
1296 if (options.use_pam) {
1297 do_pam_session();
1298 do_pam_setcred(0);
1299 }
1300# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001301 if (setusercontext(lc, pw, pw->pw_uid,
1302 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1303 perror("unable to set user context");
1304 exit(1);
1305 }
1306#else
1307# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1308 /* Sets login uid for accounting */
1309 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1310 error("setluid: %s", strerror(errno));
1311# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1312
1313 if (setlogin(pw->pw_name) < 0)
1314 error("setlogin failed: %s", strerror(errno));
1315 if (setgid(pw->pw_gid) < 0) {
1316 perror("setgid");
1317 exit(1);
1318 }
1319 /* Initialize the group list. */
1320 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1321 perror("initgroups");
1322 exit(1);
1323 }
1324 endgrent();
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001325#ifdef GSSAPI
1326 if (options.gss_authentication) {
1327 temporarily_use_uid(pw);
1328 ssh_gssapi_storecreds();
1329 restore_uid();
1330 }
1331#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001332# ifdef USE_PAM
1333 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001334 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001335 * These will have been wiped by the above initgroups() call.
1336 * Reestablish them here.
1337 */
Damien Miller341c6e62003-09-02 23:18:52 +10001338 if (options.use_pam) {
1339 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001340 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001341 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001342# endif /* USE_PAM */
1343# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1344 irix_setusercontext(pw);
1345# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001346# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001347 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001348# endif /* _AIX */
Tim Rice66fd2172005-08-31 09:59:49 -07001349#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -07001350 if (set_id(pw->pw_name) != 0) {
1351 exit(1);
1352 }
Tim Rice66fd2172005-08-31 09:59:49 -07001353#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001354 /* Permanently switch to the desired uid. */
1355 permanently_set_uid(pw);
1356#endif
1357 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001358
1359#ifdef HAVE_CYGWIN
1360 if (is_winnt)
1361#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001362 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1363 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001364
1365#ifdef WITH_SELINUX
1366 ssh_selinux_setup_exec_context(pw->pw_name);
1367#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001368}
1369
Ben Lindstrom08105192002-03-22 02:50:06 +00001370static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001371do_pwchange(Session *s)
1372{
Darren Tucker09991742004-07-17 17:05:14 +10001373 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001374 fprintf(stderr, "WARNING: Your password has expired.\n");
1375 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001376 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001377 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001378#ifdef PASSWD_NEEDS_USERNAME
1379 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1380 (char *)NULL);
1381#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001382 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001383#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001384 perror("passwd");
1385 } else {
1386 fprintf(stderr,
1387 "Password change required but no TTY available.\n");
1388 }
1389 exit(1);
1390}
1391
1392static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001393launch_login(struct passwd *pw, const char *hostname)
1394{
1395 /* Launch login(1). */
1396
Ben Lindstrom378a4172002-06-07 14:49:56 +00001397 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001398#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001399 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001400#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001401#ifdef LOGIN_NO_ENDOPT
1402 "-p", "-f", pw->pw_name, (char *)NULL);
1403#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001404 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001405#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001406
1407 /* Login couldn't be executed, die. */
1408
1409 perror("login");
1410 exit(1);
1411}
1412
Darren Tucker23bc8d02004-02-06 16:24:31 +11001413static void
1414child_close_fds(void)
1415{
1416 int i;
1417
1418 if (packet_get_connection_in() == packet_get_connection_out())
1419 close(packet_get_connection_in());
1420 else {
1421 close(packet_get_connection_in());
1422 close(packet_get_connection_out());
1423 }
1424 /*
1425 * Close all descriptors related to channels. They will still remain
1426 * open in the parent.
1427 */
1428 /* XXX better use close-on-exec? -markus */
1429 channel_close_all();
1430
1431 /*
1432 * Close any extra file descriptors. Note that there may still be
1433 * descriptors left by system functions. They will be closed later.
1434 */
1435 endpwent();
1436
1437 /*
Damien Miller788f2122005-11-05 15:14:59 +11001438 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001439 * hanging around in clients. Note that we want to do this after
1440 * initgroups, because at least on Solaris 2.3 it leaves file
1441 * descriptors open.
1442 */
1443 for (i = 3; i < 64; i++)
1444 close(i);
1445}
1446
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001447/*
1448 * Performs common processing for the child, such as setting up the
1449 * environment, closing extra file descriptors, setting the user and group
1450 * ids, and executing the command or shell.
1451 */
1452void
1453do_child(Session *s, const char *command)
1454{
1455 extern char **environ;
1456 char **env;
1457 char *argv[10];
1458 const char *shell, *shell0, *hostname = NULL;
1459 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001460
1461 /* remove hostkey from the child's memory */
1462 destroy_sensitive_data();
1463
Darren Tucker23bc8d02004-02-06 16:24:31 +11001464 /* Force a password change */
1465 if (s->authctxt->force_pwchange) {
1466 do_setusercontext(pw);
1467 child_close_fds();
1468 do_pwchange(s);
1469 exit(1);
1470 }
1471
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001472 /* login(1) is only called if we execute the login shell */
1473 if (options.use_login && command != NULL)
1474 options.use_login = 0;
1475
Tim Rice81ed5182002-09-25 17:38:46 -07001476#ifdef _UNICOS
1477 cray_setup(pw->pw_uid, pw->pw_name, command);
1478#endif /* _UNICOS */
1479
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001480 /*
1481 * Login(1) does this as well, and it needs uid 0 for the "-h"
1482 * switch, so we let login(1) to this for us.
1483 */
1484 if (!options.use_login) {
1485#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001486 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001487 if (!check_quietlogin(s, command))
1488 do_motd();
1489#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001490 /* When PAM is enabled we rely on it to do the nologin check */
1491 if (!options.use_pam)
1492 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001493 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001494 /*
1495 * PAM session modules in do_setusercontext may have
1496 * generated messages, so if this in an interactive
1497 * login then display them too.
1498 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001499 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001500 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001501#endif /* HAVE_OSF_SIA */
1502 }
1503
Darren Tucker69687f42004-09-11 22:17:26 +10001504#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001505 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1506 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001507 display_loginmsg();
1508 exit(254);
1509 }
1510#endif
1511
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001512 /*
1513 * Get the shell from the password data. An empty shell field is
1514 * legal, and means /bin/sh.
1515 */
1516 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001517
1518 /*
1519 * Make sure $SHELL points to the shell from the password file,
1520 * even if shell is overridden from login.conf
1521 */
1522 env = do_setup_env(s, shell);
1523
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001524#ifdef HAVE_LOGIN_CAP
1525 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1526#endif
1527
Damien Millerad833b32000-08-23 10:46:23 +10001528 /* we have to stash the hostname before we close our socket. */
1529 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001530 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001531 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001532 /*
1533 * Close the connection descriptors; note that this is the child, and
1534 * the server will still have the socket open, and it is important
1535 * that we do not shutdown it. Note that the descriptors cannot be
1536 * closed before building the environment, as we call
1537 * get_remote_ipaddr there.
1538 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001539 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001540
Damien Millerb38eff82000-04-01 11:09:21 +10001541 /*
Damien Miller05eda432002-02-10 18:32:28 +11001542 * Must take new environment into use so that .ssh/rc,
1543 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001544 */
1545 environ = env;
1546
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001547#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001548 /*
1549 * At this point, we check to see if AFS is active and if we have
1550 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1551 * if we can (and need to) extend the ticket into an AFS token. If
1552 * we don't do this, we run into potential problems if the user's
1553 * home directory is in AFS and it's not world-readable.
1554 */
1555
1556 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001557 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001558 char cell[64];
1559
1560 debug("Getting AFS token");
1561
1562 k_setpag();
1563
1564 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1565 krb5_afslog(s->authctxt->krb5_ctx,
1566 s->authctxt->krb5_fwd_ccache, cell, NULL);
1567
1568 krb5_afslog_home(s->authctxt->krb5_ctx,
1569 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1570 }
1571#endif
1572
Damien Miller788f2122005-11-05 15:14:59 +11001573 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001574 if (chdir(pw->pw_dir) < 0) {
1575 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1576 pw->pw_dir, strerror(errno));
1577#ifdef HAVE_LOGIN_CAP
1578 if (login_getcapbool(lc, "requirehome", 0))
1579 exit(1);
1580#endif
1581 }
1582
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001583 if (!options.use_login)
1584 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001585
1586 /* restore SIGPIPE for child */
1587 signal(SIGPIPE, SIG_DFL);
1588
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001589 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001590 launch_login(pw, hostname);
1591 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001592 }
1593
1594 /* Get the last component of the shell name. */
1595 if ((shell0 = strrchr(shell, '/')) != NULL)
1596 shell0++;
1597 else
1598 shell0 = shell;
1599
Damien Millerb38eff82000-04-01 11:09:21 +10001600 /*
1601 * If we have no command, execute the shell. In this case, the shell
1602 * name to be passed in argv[0] is preceded by '-' to indicate that
1603 * this is a login shell.
1604 */
1605 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001606 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001607
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001608 /* Start the shell. Set initial character to '-'. */
1609 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001610
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001611 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1612 >= sizeof(argv0) - 1) {
1613 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001614 perror(shell);
1615 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001616 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001617
1618 /* Execute the shell. */
1619 argv[0] = argv0;
1620 argv[1] = NULL;
1621 execve(shell, argv, env);
1622
1623 /* Executing the shell failed. */
1624 perror(shell);
1625 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001626 }
1627 /*
1628 * Execute the command using the user's shell. This uses the -c
1629 * option to execute the command.
1630 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001631 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001632 argv[1] = "-c";
1633 argv[2] = (char *) command;
1634 argv[3] = NULL;
1635 execve(shell, argv, env);
1636 perror(shell);
1637 exit(1);
1638}
1639
1640Session *
1641session_new(void)
1642{
1643 int i;
1644 static int did_init = 0;
1645 if (!did_init) {
1646 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001647 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001648 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001649 }
1650 did_init = 1;
1651 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001652 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001653 Session *s = &sessions[i];
1654 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001655 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001656 s->chanid = -1;
1657 s->ptyfd = -1;
1658 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001659 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001660 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001661 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001662 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001663 return s;
1664 }
1665 }
1666 return NULL;
1667}
1668
Ben Lindstrombba81212001-06-25 05:01:22 +00001669static void
Damien Millerb38eff82000-04-01 11:09:21 +10001670session_dump(void)
1671{
1672 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001673 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001674 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001675 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001676 s->used,
1677 s->self,
1678 s,
1679 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001680 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001681 }
1682}
1683
Damien Millerefb4afe2000-04-12 18:45:05 +10001684int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001685session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001686{
1687 Session *s = session_new();
1688 debug("session_open: channel %d", chanid);
1689 if (s == NULL) {
1690 error("no more sessions");
1691 return 0;
1692 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001693 s->authctxt = authctxt;
1694 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001695 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001696 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001697 debug("session_open: session %d: link with channel %d", s->self, chanid);
1698 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001699 return 1;
1700}
1701
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001702Session *
1703session_by_tty(char *tty)
1704{
1705 int i;
1706 for (i = 0; i < MAX_SESSIONS; i++) {
1707 Session *s = &sessions[i];
1708 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1709 debug("session_by_tty: session %d tty %s", i, tty);
1710 return s;
1711 }
1712 }
1713 debug("session_by_tty: unknown tty %.100s", tty);
1714 session_dump();
1715 return NULL;
1716}
1717
Ben Lindstrombba81212001-06-25 05:01:22 +00001718static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001719session_by_channel(int id)
1720{
1721 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001722 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001723 Session *s = &sessions[i];
1724 if (s->used && s->chanid == id) {
1725 debug("session_by_channel: session %d channel %d", i, id);
1726 return s;
1727 }
1728 }
1729 debug("session_by_channel: unknown channel %d", id);
1730 session_dump();
1731 return NULL;
1732}
1733
Ben Lindstrombba81212001-06-25 05:01:22 +00001734static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001735session_by_x11_channel(int id)
1736{
1737 int i, j;
1738
1739 for (i = 0; i < MAX_SESSIONS; i++) {
1740 Session *s = &sessions[i];
1741
1742 if (s->x11_chanids == NULL || !s->used)
1743 continue;
1744 for (j = 0; s->x11_chanids[j] != -1; j++) {
1745 if (s->x11_chanids[j] == id) {
1746 debug("session_by_x11_channel: session %d "
1747 "channel %d", s->self, id);
1748 return s;
1749 }
1750 }
1751 }
1752 debug("session_by_x11_channel: unknown channel %d", id);
1753 session_dump();
1754 return NULL;
1755}
1756
1757static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001758session_by_pid(pid_t pid)
1759{
1760 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001761 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001762 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001763 Session *s = &sessions[i];
1764 if (s->used && s->pid == pid)
1765 return s;
1766 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001767 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001768 session_dump();
1769 return NULL;
1770}
1771
Ben Lindstrombba81212001-06-25 05:01:22 +00001772static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001773session_window_change_req(Session *s)
1774{
1775 s->col = packet_get_int();
1776 s->row = packet_get_int();
1777 s->xpixel = packet_get_int();
1778 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001779 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001780 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1781 return 1;
1782}
1783
Ben Lindstrombba81212001-06-25 05:01:22 +00001784static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001785session_pty_req(Session *s)
1786{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001787 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001788 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001789
Ben Lindstrom49c12602001-06-13 04:37:36 +00001790 if (no_pty_flag) {
1791 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001792 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001793 }
1794 if (s->ttyfd != -1) {
1795 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001796 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001797 }
1798
Damien Millerefb4afe2000-04-12 18:45:05 +10001799 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001800
1801 if (compat20) {
1802 s->col = packet_get_int();
1803 s->row = packet_get_int();
1804 } else {
1805 s->row = packet_get_int();
1806 s->col = packet_get_int();
1807 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001808 s->xpixel = packet_get_int();
1809 s->ypixel = packet_get_int();
1810
1811 if (strcmp(s->term, "") == 0) {
1812 xfree(s->term);
1813 s->term = NULL;
1814 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001815
Damien Millerefb4afe2000-04-12 18:45:05 +10001816 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001817 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001818 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001819 if (s->term)
1820 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001821 s->term = NULL;
1822 s->ptyfd = -1;
1823 s->ttyfd = -1;
1824 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001825 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001826 }
1827 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001828
1829 /* for SSH1 the tty modes length is not given */
1830 if (!compat20)
1831 n_bytes = packet_remaining();
1832 tty_parse_modes(s->ttyfd, &n_bytes);
1833
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001834 if (!use_privsep)
1835 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001836
1837 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001838 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1839
Damien Miller48b03fc2002-01-22 23:11:40 +11001840 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001841 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001842 return 1;
1843}
1844
Ben Lindstrombba81212001-06-25 05:01:22 +00001845static int
Damien Millerbd483e72000-04-30 10:00:53 +10001846session_subsystem_req(Session *s)
1847{
Damien Millerae452462001-10-10 15:08:06 +10001848 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001849 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001850 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10001851 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001852 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001853
Damien Miller48b03fc2002-01-22 23:11:40 +11001854 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001855 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001856
Damien Millerf6d9e222000-06-18 14:50:44 +10001857 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001858 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10001859 prog = options.subsystem_command[i];
1860 cmd = options.subsystem_args[i];
1861 if (stat(prog, &st) < 0) {
1862 error("subsystem: cannot stat %s: %s", prog,
Damien Millerae452462001-10-10 15:08:06 +10001863 strerror(errno));
1864 break;
1865 }
1866 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001867 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001868 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001869 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001870 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001871 }
1872 }
1873
1874 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001875 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001876 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001877
Damien Millerbd483e72000-04-30 10:00:53 +10001878 xfree(subsys);
1879 return success;
1880}
1881
Ben Lindstrombba81212001-06-25 05:01:22 +00001882static int
Damien Millerbd483e72000-04-30 10:00:53 +10001883session_x11_req(Session *s)
1884{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001885 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001886
Damien Miller2b9b0452005-07-17 17:19:24 +10001887 if (s->auth_proto != NULL || s->auth_data != NULL) {
1888 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11001889 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10001890 return 0;
1891 }
Damien Millerbd483e72000-04-30 10:00:53 +10001892 s->single_connection = packet_get_char();
1893 s->auth_proto = packet_get_string(NULL);
1894 s->auth_data = packet_get_string(NULL);
1895 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001896 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001897
Ben Lindstrom768176b2001-06-09 01:29:12 +00001898 success = session_setup_x11fwd(s);
1899 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001900 xfree(s->auth_proto);
1901 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001902 s->auth_proto = NULL;
1903 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001904 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001905 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001906}
1907
Ben Lindstrombba81212001-06-25 05:01:22 +00001908static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001909session_shell_req(Session *s)
1910{
Damien Miller48b03fc2002-01-22 23:11:40 +11001911 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001912 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001913 return 1;
1914}
1915
Ben Lindstrombba81212001-06-25 05:01:22 +00001916static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001917session_exec_req(Session *s)
1918{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001919 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001920 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001921 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001922 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001923 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001924 return 1;
1925}
1926
Ben Lindstrombba81212001-06-25 05:01:22 +00001927static int
Damien Miller54c45982003-05-15 10:20:13 +10001928session_break_req(Session *s)
1929{
Damien Miller54c45982003-05-15 10:20:13 +10001930
Darren Tucker1f8311c2004-05-13 16:39:33 +10001931 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001932 packet_check_eom();
1933
Darren Tucker3bdbd842003-08-13 20:31:05 +10001934 if (s->ttyfd == -1 ||
1935 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001936 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001937 return 1;
1938}
1939
1940static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001941session_env_req(Session *s)
1942{
1943 char *name, *val;
1944 u_int name_len, val_len, i;
1945
1946 name = packet_get_string(&name_len);
1947 val = packet_get_string(&val_len);
1948 packet_check_eom();
1949
1950 /* Don't set too many environment variables */
1951 if (s->num_env > 128) {
1952 debug2("Ignoring env request %s: too many env vars", name);
1953 goto fail;
1954 }
1955
1956 for (i = 0; i < options.num_accept_env; i++) {
1957 if (match_pattern(name, options.accept_env[i])) {
1958 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11001959 s->env = xrealloc(s->env, s->num_env + 1,
1960 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10001961 s->env[s->num_env].name = name;
1962 s->env[s->num_env].val = val;
1963 s->num_env++;
1964 return (1);
1965 }
1966 }
1967 debug2("Ignoring env request %s: disallowed name", name);
1968
1969 fail:
1970 xfree(name);
1971 xfree(val);
1972 return (0);
1973}
1974
1975static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001976session_auth_agent_req(Session *s)
1977{
1978 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001979 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001980 if (no_agent_forwarding_flag) {
1981 debug("session_auth_agent_req: no_agent_forwarding_flag");
1982 return 0;
1983 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001984 if (called) {
1985 return 0;
1986 } else {
1987 called = 1;
1988 return auth_input_request_forwarding(s->pw);
1989 }
1990}
1991
Damien Millerc7ef63d2002-02-05 12:21:42 +11001992int
1993session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001994{
Damien Millerefb4afe2000-04-12 18:45:05 +10001995 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001996 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001997
Damien Millerc7ef63d2002-02-05 12:21:42 +11001998 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001999 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002000 c->self, rtype);
2001 return 0;
2002 }
2003 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002004
2005 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002006 * a session is in LARVAL state until a shell, a command
2007 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002008 */
2009 if (c->type == SSH_CHANNEL_LARVAL) {
2010 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002011 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002012 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002013 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002014 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10002015 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002016 } else if (strcmp(rtype, "x11-req") == 0) {
2017 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002018 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2019 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002020 } else if (strcmp(rtype, "subsystem") == 0) {
2021 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002022 } else if (strcmp(rtype, "env") == 0) {
2023 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002024 }
2025 }
2026 if (strcmp(rtype, "window-change") == 0) {
2027 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002028 } else if (strcmp(rtype, "break") == 0) {
2029 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002030 }
Damien Millera6b1d162004-06-30 22:41:07 +10002031
Damien Millerc7ef63d2002-02-05 12:21:42 +11002032 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002033}
2034
2035void
2036session_set_fds(Session *s, int fdin, int fdout, int fderr)
2037{
2038 if (!compat20)
2039 fatal("session_set_fds: called for proto != 2.0");
2040 /*
2041 * now that have a child and a pipe to the child,
2042 * we can activate our channel and register the fd's
2043 */
2044 if (s->chanid == -1)
2045 fatal("no channel for session %d", s->self);
2046 channel_set_fds(s->chanid,
2047 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002048 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002049 1,
2050 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002051}
2052
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002053/*
2054 * Function to perform pty cleanup. Also called if we get aborted abnormally
2055 * (e.g., due to a dropped connection).
2056 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002057void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002058session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002059{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002060 if (s == NULL) {
2061 error("session_pty_cleanup: no session");
2062 return;
2063 }
2064 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002065 return;
2066
Kevin Steves43cdef32001-02-11 14:12:08 +00002067 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002068
Damien Millerb38eff82000-04-01 11:09:21 +10002069 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002070 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002071 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002072
2073 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002074 if (getuid() == 0)
2075 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002076
2077 /*
2078 * Close the server side of the socket pairs. We must do this after
2079 * the pty cleanup, so that another process doesn't get this pty
2080 * while we're still cleaning up.
2081 */
2082 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002083 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002084
2085 /* unlink pty from session */
2086 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002087}
Damien Millerefb4afe2000-04-12 18:45:05 +10002088
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002089void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002090session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002091{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002092 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002093}
2094
Damien Miller5a80bba2002-09-04 16:39:02 +10002095static char *
2096sig2name(int sig)
2097{
2098#define SSH_SIG(x) if (sig == SIG ## x) return #x
2099 SSH_SIG(ABRT);
2100 SSH_SIG(ALRM);
2101 SSH_SIG(FPE);
2102 SSH_SIG(HUP);
2103 SSH_SIG(ILL);
2104 SSH_SIG(INT);
2105 SSH_SIG(KILL);
2106 SSH_SIG(PIPE);
2107 SSH_SIG(QUIT);
2108 SSH_SIG(SEGV);
2109 SSH_SIG(TERM);
2110 SSH_SIG(USR1);
2111 SSH_SIG(USR2);
2112#undef SSH_SIG
2113 return "SIG@openssh.com";
2114}
2115
Ben Lindstrombba81212001-06-25 05:01:22 +00002116static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002117session_close_x11(int id)
2118{
2119 Channel *c;
2120
Damien Millerd47c62a2005-12-13 19:33:57 +11002121 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002122 debug("session_close_x11: x11 channel %d missing", id);
2123 } else {
2124 /* Detach X11 listener */
2125 debug("session_close_x11: detach x11 channel %d", id);
2126 channel_cancel_cleanup(id);
2127 if (c->ostate != CHAN_OUTPUT_CLOSED)
2128 chan_mark_dead(c);
2129 }
2130}
2131
2132static void
2133session_close_single_x11(int id, void *arg)
2134{
2135 Session *s;
2136 u_int i;
2137
2138 debug3("session_close_single_x11: channel %d", id);
2139 channel_cancel_cleanup(id);
2140 if ((s = session_by_x11_channel(id)) == NULL)
2141 fatal("session_close_single_x11: no x11 channel %d", id);
2142 for (i = 0; s->x11_chanids[i] != -1; i++) {
2143 debug("session_close_single_x11: session %d: "
2144 "closing channel %d", s->self, s->x11_chanids[i]);
2145 /*
2146 * The channel "id" is already closing, but make sure we
2147 * close all of its siblings.
2148 */
2149 if (s->x11_chanids[i] != id)
2150 session_close_x11(s->x11_chanids[i]);
2151 }
2152 xfree(s->x11_chanids);
2153 s->x11_chanids = NULL;
2154 if (s->display) {
2155 xfree(s->display);
2156 s->display = NULL;
2157 }
2158 if (s->auth_proto) {
2159 xfree(s->auth_proto);
2160 s->auth_proto = NULL;
2161 }
2162 if (s->auth_data) {
2163 xfree(s->auth_data);
2164 s->auth_data = NULL;
2165 }
2166 if (s->auth_display) {
2167 xfree(s->auth_display);
2168 s->auth_display = NULL;
2169 }
2170}
2171
2172static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002173session_exit_message(Session *s, int status)
2174{
2175 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002176
2177 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002178 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002179 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002180 debug("session_exit_message: session %d channel %d pid %ld",
2181 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002182
2183 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002184 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002185 packet_put_int(WEXITSTATUS(status));
2186 packet_send();
2187 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002188 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002189 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002190#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002191 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002192#else /* WCOREDUMP */
2193 packet_put_char(0);
2194#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002195 packet_put_cstring("");
2196 packet_put_cstring("");
2197 packet_send();
2198 } else {
2199 /* Some weird exit cause. Just exit. */
2200 packet_disconnect("wait returned status %04x.", status);
2201 }
2202
2203 /* disconnect channel */
2204 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002205
2206 /*
2207 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002208 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002209 * by session_close_by_channel when the childs close their fds.
2210 */
2211 channel_register_cleanup(c->self, session_close_by_channel, 1);
2212
Damien Miller166fca82000-04-20 07:42:21 +10002213 /*
2214 * emulate a write failure with 'chan_write_failed', nobody will be
2215 * interested in data we write.
2216 * Note that we must not call 'chan_read_failed', since there could
2217 * be some more data waiting in the pipe.
2218 */
Damien Millerbd483e72000-04-30 10:00:53 +10002219 if (c->ostate != CHAN_OUTPUT_CLOSED)
2220 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002221}
2222
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002223void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002224session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002225{
Damien Millereccb9de2005-06-17 12:59:34 +10002226 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002227
Ben Lindstromce0f6342002-06-11 16:42:49 +00002228 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002229 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002230 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002231 if (s->term)
2232 xfree(s->term);
2233 if (s->display)
2234 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002235 if (s->x11_chanids)
2236 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002237 if (s->auth_display)
2238 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002239 if (s->auth_data)
2240 xfree(s->auth_data);
2241 if (s->auth_proto)
2242 xfree(s->auth_proto);
2243 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002244 for (i = 0; i < s->num_env; i++) {
2245 xfree(s->env[i].name);
2246 xfree(s->env[i].val);
2247 }
2248 if (s->env != NULL)
2249 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002250 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002251}
2252
2253void
2254session_close_by_pid(pid_t pid, int status)
2255{
2256 Session *s = session_by_pid(pid);
2257 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002258 debug("session_close_by_pid: no session for pid %ld",
2259 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002260 return;
2261 }
2262 if (s->chanid != -1)
2263 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002264 if (s->ttyfd != -1)
2265 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002266 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002267}
2268
2269/*
2270 * this is called when a channel dies before
2271 * the session 'child' itself dies
2272 */
2273void
2274session_close_by_channel(int id, void *arg)
2275{
2276 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002277 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002278
Damien Millerefb4afe2000-04-12 18:45:05 +10002279 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002280 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002281 return;
2282 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002283 debug("session_close_by_channel: channel %d child %ld",
2284 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002285 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002286 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002287 /*
2288 * delay detach of session, but release pty, since
2289 * the fd's to the child are already closed
2290 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002291 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002292 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002293 return;
2294 }
2295 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002296 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002297
2298 /* Close any X11 listeners associated with this session */
2299 if (s->x11_chanids != NULL) {
2300 for (i = 0; s->x11_chanids[i] != -1; i++) {
2301 session_close_x11(s->x11_chanids[i]);
2302 s->x11_chanids[i] = -1;
2303 }
2304 }
2305
Damien Millerefb4afe2000-04-12 18:45:05 +10002306 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002307 session_close(s);
2308}
2309
2310void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002311session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002312{
2313 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002314 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002315 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002316 if (s->used) {
2317 if (closefunc != NULL)
2318 closefunc(s);
2319 else
2320 session_close(s);
2321 }
Damien Miller52b77be2001-10-10 15:14:37 +10002322 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002323}
2324
Ben Lindstrombba81212001-06-25 05:01:22 +00002325static char *
Damien Millere247cc42000-05-07 12:03:14 +10002326session_tty_list(void)
2327{
2328 static char buf[1024];
2329 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002330 char *cp;
2331
Damien Millere247cc42000-05-07 12:03:14 +10002332 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002333 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002334 Session *s = &sessions[i];
2335 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002336
Damien Millera8ed44b2003-01-10 09:53:12 +11002337 if (strncmp(s->tty, "/dev/", 5) != 0) {
2338 cp = strrchr(s->tty, '/');
2339 cp = (cp == NULL) ? s->tty : cp + 1;
2340 } else
2341 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002342
Damien Millere247cc42000-05-07 12:03:14 +10002343 if (buf[0] != '\0')
2344 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002345 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002346 }
2347 }
2348 if (buf[0] == '\0')
2349 strlcpy(buf, "notty", sizeof buf);
2350 return buf;
2351}
2352
2353void
2354session_proctitle(Session *s)
2355{
2356 if (s->pw == NULL)
2357 error("no user for session %d", s->self);
2358 else
2359 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2360}
2361
Ben Lindstrom768176b2001-06-09 01:29:12 +00002362int
2363session_setup_x11fwd(Session *s)
2364{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002365 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002366 char display[512], auth_display[512];
2367 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002368 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002369
2370 if (no_x11_forwarding_flag) {
2371 packet_send_debug("X11 forwarding disabled in user configuration file.");
2372 return 0;
2373 }
2374 if (!options.x11_forwarding) {
2375 debug("X11 forwarding disabled in server configuration file.");
2376 return 0;
2377 }
2378 if (!options.xauth_location ||
2379 (stat(options.xauth_location, &st) == -1)) {
2380 packet_send_debug("No xauth program; cannot forward with spoofing.");
2381 return 0;
2382 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002383 if (options.use_login) {
2384 packet_send_debug("X11 forwarding disabled; "
2385 "not compatible with UseLogin=yes.");
2386 return 0;
2387 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002388 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002389 debug("X11 display already set.");
2390 return 0;
2391 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002392 if (x11_create_display_inet(options.x11_display_offset,
2393 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002394 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002395 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002396 return 0;
2397 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002398 for (i = 0; s->x11_chanids[i] != -1; i++) {
2399 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002400 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002401 }
Kevin Steves366298c2001-12-19 17:58:01 +00002402
2403 /* Set up a suitable value for the DISPLAY variable. */
2404 if (gethostname(hostname, sizeof(hostname)) < 0)
2405 fatal("gethostname: %.100s", strerror(errno));
2406 /*
2407 * auth_display must be used as the displayname when the
2408 * authorization entry is added with xauth(1). This will be
2409 * different than the DISPLAY string for localhost displays.
2410 */
Damien Miller95c249f2002-02-05 12:11:34 +11002411 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002412 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002413 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002414 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002415 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002416 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002417 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002418 } else {
2419#ifdef IPADDR_IN_DISPLAY
2420 struct hostent *he;
2421 struct in_addr my_addr;
2422
2423 he = gethostbyname(hostname);
2424 if (he == NULL) {
2425 error("Can't get IP address for X11 DISPLAY.");
2426 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2427 return 0;
2428 }
2429 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002430 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002431 s->display_number, s->screen);
2432#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002433 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002434 s->display_number, s->screen);
2435#endif
2436 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002437 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002438 }
2439
Ben Lindstrom768176b2001-06-09 01:29:12 +00002440 return 1;
2441}
2442
Ben Lindstrombba81212001-06-25 05:01:22 +00002443static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002444do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002445{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002446 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002447}
2448
2449void
2450do_cleanup(Authctxt *authctxt)
2451{
2452 static int called = 0;
2453
2454 debug("do_cleanup");
2455
2456 /* no cleanup if we're in the child for login shell */
2457 if (is_child)
2458 return;
2459
2460 /* avoid double cleanup */
2461 if (called)
2462 return;
2463 called = 1;
2464
2465 if (authctxt == NULL)
2466 return;
2467#ifdef KRB5
2468 if (options.kerberos_ticket_cleanup &&
2469 authctxt->krb5_ctx)
2470 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002471#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002472
2473#ifdef GSSAPI
2474 if (compat20 && options.gss_cleanup_creds)
2475 ssh_gssapi_cleanup_creds();
2476#endif
2477
Darren Tucker8846a072003-10-07 11:30:15 +10002478#ifdef USE_PAM
2479 if (options.use_pam) {
2480 sshpam_cleanup();
2481 sshpam_thread_cleanup();
2482 }
2483#endif
2484
Darren Tucker3e33cec2003-10-02 16:12:36 +10002485 /* remove agent socket */
2486 auth_sock_cleanup_proc(authctxt->pw);
2487
2488 /*
2489 * Cleanup ptys/utmp only if privsep is disabled,
2490 * or if running in monitor.
2491 */
2492 if (!use_privsep || mm_is_monitor())
2493 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002494}