blob: c2730a4256da0777e23e67dfb026d4fe5381357c [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: session.c,v 1.212 2006/07/22 20:48:23 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
Damien Miller1cdde6f2006-07-24 14:07:35 +100046#include <arpa/inet.h>
47
Darren Tucker39972492006-07-12 22:22:46 +100048#include <errno.h>
Damien Miller427a1d52006-07-10 20:20:33 +100049#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110050#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110051#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110052#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100053#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110054#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100055#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100056#include <unistd.h>
Damien Millerb38eff82000-04-01 11:09:21 +100057
Damien Millerb38eff82000-04-01 11:09:21 +100058#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059#include "ssh1.h"
60#include "ssh2.h"
61#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000062#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100063#include "packet.h"
64#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100065#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100066#include "uidswap.h"
67#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000068#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100069#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100070#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100071#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000072#include "pathnames.h"
73#include "log.h"
74#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000075#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "serverloop.h"
77#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000078#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100079#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000080#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100081
Darren Tucker3c78c5e2004-01-23 22:03:10 +110082#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110083#include <kafs.h>
84#endif
85
Darren Tucker0efd1552003-08-26 11:49:55 +100086#ifdef GSSAPI
87#include "ssh-gss.h"
88#endif
89
Damien Millerb38eff82000-04-01 11:09:21 +100090/* func */
91
92Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000093void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100094void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000095void session_proctitle(Session *);
96int session_setup_x11fwd(Session *);
97void do_exec_pty(Session *, const char *);
98void do_exec_no_pty(Session *, const char *);
99void do_exec(Session *, const char *);
100void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000101#ifdef LOGIN_NEEDS_UTMPX
102static void do_pre_login(Session *s);
103#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000104void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000105void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000106int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static void do_authenticated1(Authctxt *);
109static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000110
Ben Lindstrombba81212001-06-25 05:01:22 +0000111static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000112
Damien Millerb38eff82000-04-01 11:09:21 +1000113/* import */
114extern ServerOptions options;
115extern char *__progname;
116extern int log_stderr;
117extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000118extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000119extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000120extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000121extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000122
Damien Miller7b28dc52000-09-05 13:34:53 +1100123/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000124const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100125
Damien Millerb38eff82000-04-01 11:09:21 +1000126/* data */
127#define MAX_SESSIONS 10
128Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100129
Damien Millerad833b32000-08-23 10:46:23 +1000130#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000131login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000132#endif
133
Darren Tucker3e33cec2003-10-02 16:12:36 +1000134static int is_child = 0;
135
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000136/* Name and directory of socket for authentication agent forwarding. */
137static char *auth_sock_name = NULL;
138static char *auth_sock_dir = NULL;
139
140/* removes the agent forwarding socket */
141
142static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000143auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000144{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000145 if (auth_sock_name != NULL) {
146 temporarily_use_uid(pw);
147 unlink(auth_sock_name);
148 rmdir(auth_sock_dir);
149 auth_sock_name = NULL;
150 restore_uid();
151 }
152}
153
154static int
155auth_input_request_forwarding(struct passwd * pw)
156{
157 Channel *nc;
158 int sock;
159 struct sockaddr_un sunaddr;
160
161 if (auth_sock_name != NULL) {
162 error("authentication forwarding requested twice.");
163 return 0;
164 }
165
166 /* Temporarily drop privileged uid for mkdir/bind. */
167 temporarily_use_uid(pw);
168
169 /* Allocate a buffer for the socket name, and format the name. */
170 auth_sock_name = xmalloc(MAXPATHLEN);
171 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000172 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000173
174 /* Create private directory for socket */
175 if (mkdtemp(auth_sock_dir) == NULL) {
176 packet_send_debug("Agent forwarding disabled: "
177 "mkdtemp() failed: %.100s", strerror(errno));
178 restore_uid();
179 xfree(auth_sock_name);
180 xfree(auth_sock_dir);
181 auth_sock_name = NULL;
182 auth_sock_dir = NULL;
183 return 0;
184 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000185 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
186 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000187
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000188 /* Create the socket. */
189 sock = socket(AF_UNIX, SOCK_STREAM, 0);
190 if (sock < 0)
191 packet_disconnect("socket: %.100s", strerror(errno));
192
193 /* Bind it to the name. */
194 memset(&sunaddr, 0, sizeof(sunaddr));
195 sunaddr.sun_family = AF_UNIX;
196 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
197
Damien Miller90967402006-03-26 14:07:26 +1100198 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000199 packet_disconnect("bind: %.100s", strerror(errno));
200
201 /* Restore the privileged uid. */
202 restore_uid();
203
204 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100205 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000206 packet_disconnect("listen: %.100s", strerror(errno));
207
208 /* Allocate a channel for the authentication agent socket. */
209 nc = channel_new("auth socket",
210 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
211 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000212 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000213 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
214 return 1;
215}
216
Darren Tucker1921ed92004-02-10 13:23:28 +1100217static void
218display_loginmsg(void)
219{
Damien Miller46d38de2005-07-17 17:02:09 +1000220 if (buffer_len(&loginmsg) > 0) {
221 buffer_append(&loginmsg, "\0", 1);
222 printf("%s", (char *)buffer_ptr(&loginmsg));
223 buffer_clear(&loginmsg);
224 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100225}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000226
Ben Lindstromb31783d2001-03-22 02:02:12 +0000227void
228do_authenticated(Authctxt *authctxt)
229{
Damien Miller97f39ae2003-02-24 11:57:01 +1100230 setproctitle("%s", authctxt->pw->pw_name);
231
Ben Lindstromb31783d2001-03-22 02:02:12 +0000232 /* setup the channel layer */
233 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
234 channel_permit_all_opens();
235
236 if (compat20)
237 do_authenticated2(authctxt);
238 else
239 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000240
Darren Tucker3e33cec2003-10-02 16:12:36 +1000241 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000242}
243
Damien Millerb38eff82000-04-01 11:09:21 +1000244/*
Damien Millerb38eff82000-04-01 11:09:21 +1000245 * Prepares for an interactive session. This is called after the user has
246 * been successfully authenticated. During this message exchange, pseudo
247 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
248 * are requested, etc.
249 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000250static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000251do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000252{
253 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000254 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100255 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000256 int enable_compression_after_reply = 0;
257 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000258
259 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100260 if (s == NULL) {
261 error("no more sessions");
262 return;
263 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000264 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000265 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000266
Damien Millerb38eff82000-04-01 11:09:21 +1000267 /*
268 * We stay in this loop until the client requests to execute a shell
269 * or a command.
270 */
271 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000272 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000273
274 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100275 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000276
277 /* Process the packet. */
278 switch (type) {
279 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000280 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100281 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000282 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000283 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100284 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000285 break;
286 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000287 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000288 debug2("compression disabled");
289 break;
290 }
Damien Millerb38eff82000-04-01 11:09:21 +1000291 /* Enable compression after we have responded with SUCCESS. */
292 enable_compression_after_reply = 1;
293 success = 1;
294 break;
295
296 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000297 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 break;
299
300 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000301 s->auth_proto = packet_get_string(&proto_len);
302 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000303
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000304 screen_flag = packet_get_protocol_flags() &
305 SSH_PROTOFLAG_SCREEN_NUMBER;
306 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
307
308 if (packet_remaining() == 4) {
309 if (!screen_flag)
310 debug2("Buggy client: "
311 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000312 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000313 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000314 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000315 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100316 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000317 success = session_setup_x11fwd(s);
318 if (!success) {
319 xfree(s->auth_proto);
320 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000321 s->auth_proto = NULL;
322 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000323 }
Damien Millerb38eff82000-04-01 11:09:21 +1000324 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000325
326 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
327 if (no_agent_forwarding_flag || compat13) {
328 debug("Authentication agent forwarding not permitted for this authentication.");
329 break;
330 }
331 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000332 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000333 break;
334
335 case SSH_CMSG_PORT_FORWARD_REQUEST:
336 if (no_port_forwarding_flag) {
337 debug("Port forwarding not permitted for this authentication.");
338 break;
339 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100340 if (!options.allow_tcp_forwarding) {
341 debug("Port forwarding not permitted.");
342 break;
343 }
Damien Millerb38eff82000-04-01 11:09:21 +1000344 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000345 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
346 options.gateway_ports) < 0) {
347 debug("Port forwarding failed.");
348 break;
349 }
Damien Millerb38eff82000-04-01 11:09:21 +1000350 success = 1;
351 break;
352
353 case SSH_CMSG_MAX_PACKET_SIZE:
354 if (packet_set_maxsize(packet_get_int()) > 0)
355 success = 1;
356 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100357
Damien Millerb38eff82000-04-01 11:09:21 +1000358 case SSH_CMSG_EXEC_SHELL:
359 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000360 if (type == SSH_CMSG_EXEC_CMD) {
361 command = packet_get_string(&dlen);
362 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000363 do_exec(s, command);
364 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000365 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000366 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000367 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100368 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000369 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000370 return;
371
372 default:
373 /*
374 * Any unknown messages in this phase are ignored,
375 * and a failure message is returned.
376 */
Damien Miller996acd22003-04-09 20:59:48 +1000377 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000378 }
379 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
380 packet_send();
381 packet_write_wait();
382
383 /* Enable compression now that we have replied if appropriate. */
384 if (enable_compression_after_reply) {
385 enable_compression_after_reply = 0;
386 packet_start_compression(compression_level);
387 }
388 }
389}
390
391/*
392 * This is called to fork and execute a command when we have no tty. This
393 * will call do_child from the child, and server_loop from the parent after
394 * setting up file descriptors and such.
395 */
Damien Miller4af51302000-04-16 11:18:38 +1000396void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000397do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000398{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000399 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000400
401#ifdef USE_PIPES
402 int pin[2], pout[2], perr[2];
403 /* Allocate pipes for communicating with the program. */
404 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
405 packet_disconnect("Could not create pipes: %.100s",
406 strerror(errno));
407#else /* USE_PIPES */
408 int inout[2], err[2];
409 /* Uses socket pairs to communicate with the program. */
410 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
411 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
412 packet_disconnect("Could not create socket pairs: %.100s",
413 strerror(errno));
414#endif /* USE_PIPES */
415 if (s == NULL)
416 fatal("do_exec_no_pty: no session");
417
Damien Millere247cc42000-05-07 12:03:14 +1000418 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000419
Damien Millerc5946332001-02-28 11:46:11 +1100420#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100421 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000422 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000423#endif /* USE_PAM */
424
Damien Millerb38eff82000-04-01 11:09:21 +1000425 /* Fork the child. */
426 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000427 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000428
Damien Millerb38eff82000-04-01 11:09:21 +1000429 /* Child. Reinitialize the log since the pid has changed. */
430 log_init(__progname, options.log_level, options.log_facility, log_stderr);
431
432 /*
433 * Create a new session and process group since the 4.4BSD
434 * setlogin() affects the entire process group.
435 */
436 if (setsid() < 0)
437 error("setsid failed: %.100s", strerror(errno));
438
439#ifdef USE_PIPES
440 /*
441 * Redirect stdin. We close the parent side of the socket
442 * pair, and make the child side the standard input.
443 */
444 close(pin[1]);
445 if (dup2(pin[0], 0) < 0)
446 perror("dup2 stdin");
447 close(pin[0]);
448
449 /* Redirect stdout. */
450 close(pout[0]);
451 if (dup2(pout[1], 1) < 0)
452 perror("dup2 stdout");
453 close(pout[1]);
454
455 /* Redirect stderr. */
456 close(perr[0]);
457 if (dup2(perr[1], 2) < 0)
458 perror("dup2 stderr");
459 close(perr[1]);
460#else /* USE_PIPES */
461 /*
462 * Redirect stdin, stdout, and stderr. Stdin and stdout will
463 * use the same socket, as some programs (particularly rdist)
464 * seem to depend on it.
465 */
466 close(inout[1]);
467 close(err[1]);
468 if (dup2(inout[0], 0) < 0) /* stdin */
469 perror("dup2 stdin");
470 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
471 perror("dup2 stdout");
472 if (dup2(err[0], 2) < 0) /* stderr */
473 perror("dup2 stderr");
474#endif /* USE_PIPES */
475
Tim Rice81ed5182002-09-25 17:38:46 -0700476#ifdef _UNICOS
477 cray_init_job(s->pw); /* set up cray jid and tmpdir */
478#endif
479
Damien Millerb38eff82000-04-01 11:09:21 +1000480 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000481 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000482 /* NOTREACHED */
483 }
Tim Rice81ed5182002-09-25 17:38:46 -0700484#ifdef _UNICOS
485 signal(WJSIGNAL, cray_job_termination_handler);
486#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100487#ifdef HAVE_CYGWIN
488 if (is_winnt)
489 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
490#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000491 if (pid < 0)
492 packet_disconnect("fork failed: %.100s", strerror(errno));
493 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000494 /* Set interactive/non-interactive mode. */
495 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000496#ifdef USE_PIPES
497 /* We are the parent. Close the child sides of the pipes. */
498 close(pin[0]);
499 close(pout[1]);
500 close(perr[1]);
501
Damien Millerefb4afe2000-04-12 18:45:05 +1000502 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000503 if (s->is_subsystem) {
504 close(perr[0]);
505 perr[0] = -1;
506 }
507 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000508 } else {
509 /* Enter the interactive session. */
510 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000511 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000512 }
Damien Millerb38eff82000-04-01 11:09:21 +1000513#else /* USE_PIPES */
514 /* We are the parent. Close the child sides of the socket pairs. */
515 close(inout[0]);
516 close(err[0]);
517
518 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100519 * Clear loginmsg, since it's the child's responsibility to display
520 * it to the user, otherwise multiple sessions may accumulate
521 * multiple copies of the login messages.
522 */
523 buffer_clear(&loginmsg);
524
525 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000526 * Enter the interactive session. Note: server_loop must be able to
527 * handle the case that fdin and fdout are the same.
528 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000529 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000530 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000531 } else {
532 server_loop(pid, inout[1], inout[1], err[1]);
533 /* server_loop has closed inout[1] and err[1]. */
534 }
Damien Millerb38eff82000-04-01 11:09:21 +1000535#endif /* USE_PIPES */
536}
537
538/*
539 * This is called to fork and execute a command when we have a tty. This
540 * will call do_child from the child, and server_loop from the parent after
541 * setting up file descriptors, controlling tty, updating wtmp, utmp,
542 * lastlog, and other such operations.
543 */
Damien Miller4af51302000-04-16 11:18:38 +1000544void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000545do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000546{
Damien Millerb38eff82000-04-01 11:09:21 +1000547 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000548 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000549
550 if (s == NULL)
551 fatal("do_exec_pty: no session");
552 ptyfd = s->ptyfd;
553 ttyfd = s->ttyfd;
554
Damien Millerc5946332001-02-28 11:46:11 +1100555#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000556 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000557 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100558 if (!use_privsep)
559 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000560 }
Damien Miller5a761312001-02-27 09:28:23 +1100561#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000562
Damien Millerb38eff82000-04-01 11:09:21 +1000563 /* Fork the child. */
564 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000565 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000566
Damien Miller942da032000-08-18 13:59:06 +1000567 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000568 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000569 /* Close the master side of the pseudo tty. */
570 close(ptyfd);
571
572 /* Make the pseudo tty our controlling tty. */
573 pty_make_controlling_tty(&ttyfd, s->tty);
574
Damien Miller9c751422001-10-10 15:02:46 +1000575 /* Redirect stdin/stdout/stderr from the pseudo tty. */
576 if (dup2(ttyfd, 0) < 0)
577 error("dup2 stdin: %s", strerror(errno));
578 if (dup2(ttyfd, 1) < 0)
579 error("dup2 stdout: %s", strerror(errno));
580 if (dup2(ttyfd, 2) < 0)
581 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000582
583 /* Close the extra descriptor for the pseudo tty. */
584 close(ttyfd);
585
Damien Miller942da032000-08-18 13:59:06 +1000586 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000587#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700588 if (!(options.use_login && command == NULL)) {
589#ifdef _UNICOS
590 cray_init_job(s->pw); /* set up cray jid and tmpdir */
591#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100592 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700593 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000594# ifdef LOGIN_NEEDS_UTMPX
595 else
596 do_pre_login(s);
597# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000598#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000599
Damien Millerb38eff82000-04-01 11:09:21 +1000600 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000601 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000602 /* NOTREACHED */
603 }
Tim Rice81ed5182002-09-25 17:38:46 -0700604#ifdef _UNICOS
605 signal(WJSIGNAL, cray_job_termination_handler);
606#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100607#ifdef HAVE_CYGWIN
608 if (is_winnt)
609 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
610#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000611 if (pid < 0)
612 packet_disconnect("fork failed: %.100s", strerror(errno));
613 s->pid = pid;
614
615 /* Parent. Close the slave side of the pseudo tty. */
616 close(ttyfd);
617
618 /*
619 * Create another descriptor of the pty master side for use as the
620 * standard input. We could use the original descriptor, but this
621 * simplifies code in server_loop. The descriptor is bidirectional.
622 */
623 fdout = dup(ptyfd);
624 if (fdout < 0)
625 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
626
627 /* we keep a reference to the pty master */
628 ptymaster = dup(ptyfd);
629 if (ptymaster < 0)
630 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
631 s->ptymaster = ptymaster;
632
633 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000634 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000635 if (compat20) {
636 session_set_fds(s, ptyfd, fdout, -1);
637 } else {
638 server_loop(pid, ptyfd, fdout, -1);
639 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000640 }
Damien Millerb38eff82000-04-01 11:09:21 +1000641}
642
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000643#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000644static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000645do_pre_login(Session *s)
646{
647 socklen_t fromlen;
648 struct sockaddr_storage from;
649 pid_t pid = getpid();
650
651 /*
652 * Get IP address of client. If the connection is not a socket, let
653 * the address be 0.0.0.0.
654 */
655 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000656 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000657 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000658 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100659 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000660 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000661 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000662 }
663 }
664
665 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000666 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000667 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000668}
669#endif
670
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000671/*
672 * This is called to fork and execute a command. If another command is
673 * to be forced, execute that instead.
674 */
675void
676do_exec(Session *s, const char *command)
677{
Damien Millere2754432006-07-24 14:06:47 +1000678 if (options.adm_forced_command) {
679 original_command = command;
680 command = options.adm_forced_command;
681 debug("Forced command (config) '%.900s'", command);
682 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000683 original_command = command;
684 command = forced_command;
Damien Millere2754432006-07-24 14:06:47 +1000685 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000686 }
687
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100688#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100689 if (command != NULL)
690 PRIVSEP(audit_run_command(command));
691 else if (s->ttyfd == -1) {
692 char *shell = s->pw->pw_shell;
693
694 if (shell[0] == '\0') /* empty shell means /bin/sh */
695 shell =_PATH_BSHELL;
696 PRIVSEP(audit_run_command(shell));
697 }
698#endif
699
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000700 if (s->ttyfd != -1)
701 do_exec_pty(s, command);
702 else
703 do_exec_no_pty(s, command);
704
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000705 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000706
Darren Tucker09991742004-07-17 17:05:14 +1000707 /*
708 * Clear loginmsg: it's the child's responsibility to display
709 * it to the user, otherwise multiple sessions may accumulate
710 * multiple copies of the login messages.
711 */
712 buffer_clear(&loginmsg);
713}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000714
Damien Miller942da032000-08-18 13:59:06 +1000715/* administrative, login(1)-like work */
716void
Damien Miller69b69aa2000-10-28 14:19:58 +1100717do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000718{
Damien Miller942da032000-08-18 13:59:06 +1000719 socklen_t fromlen;
720 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000721 struct passwd * pw = s->pw;
722 pid_t pid = getpid();
723
724 /*
725 * Get IP address of client. If the connection is not a socket, let
726 * the address be 0.0.0.0.
727 */
728 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000729 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000730 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000731 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000732 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000733 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000734 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000735 }
736 }
737
738 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000739 if (!use_privsep)
740 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
741 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000742 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000743 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000744
Kevin Steves092f2ef2000-10-14 13:36:13 +0000745#ifdef USE_PAM
746 /*
747 * If password change is needed, do it now.
748 * This needs to occur before the ~/.hushlogin check.
749 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100750 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
751 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000752 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100753 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000754 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000755 }
756#endif
757
Damien Millercf205e82001-04-16 18:29:15 +1000758 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000759 return;
760
Darren Tucker1921ed92004-02-10 13:23:28 +1100761 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000762
Damien Millercf205e82001-04-16 18:29:15 +1000763 do_motd();
764}
765
766/*
767 * Display the message of the day.
768 */
769void
770do_motd(void)
771{
772 FILE *f;
773 char buf[256];
774
Damien Miller942da032000-08-18 13:59:06 +1000775 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000776#ifdef HAVE_LOGIN_CAP
777 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
778 "/etc/motd"), "r");
779#else
Damien Miller942da032000-08-18 13:59:06 +1000780 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000781#endif
Damien Miller942da032000-08-18 13:59:06 +1000782 if (f) {
783 while (fgets(buf, sizeof(buf), f))
784 fputs(buf, stdout);
785 fclose(f);
786 }
787 }
788}
789
Kevin Steves8f63caa2001-07-04 18:23:02 +0000790
791/*
792 * Check for quiet login, either .hushlogin or command given.
793 */
794int
795check_quietlogin(Session *s, const char *command)
796{
797 char buf[256];
798 struct passwd *pw = s->pw;
799 struct stat st;
800
801 /* Return 1 if .hushlogin exists or a command given. */
802 if (command != NULL)
803 return 1;
804 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
805#ifdef HAVE_LOGIN_CAP
806 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
807 return 1;
808#else
809 if (stat(buf, &st) >= 0)
810 return 1;
811#endif
812 return 0;
813}
814
Damien Millerb38eff82000-04-01 11:09:21 +1000815/*
816 * Sets the value of the given variable in the environment. If the variable
817 * already exists, its value is overriden.
818 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000819void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000820child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100821 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000822{
Damien Millerb38eff82000-04-01 11:09:21 +1000823 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000824 u_int envsize;
825 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000826
827 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000828 * If we're passed an uninitialized list, allocate a single null
829 * entry before continuing.
830 */
831 if (*envp == NULL && *envsizep == 0) {
832 *envp = xmalloc(sizeof(char *));
833 *envp[0] = NULL;
834 *envsizep = 1;
835 }
836
837 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000838 * Find the slot where the value should be stored. If the variable
839 * already exists, we reuse the slot; otherwise we append a new slot
840 * at the end of the array, expanding if necessary.
841 */
842 env = *envp;
843 namelen = strlen(name);
844 for (i = 0; env[i]; i++)
845 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
846 break;
847 if (env[i]) {
848 /* Reuse the slot. */
849 xfree(env[i]);
850 } else {
851 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000852 envsize = *envsizep;
853 if (i >= envsize - 1) {
854 if (envsize >= 1000)
855 fatal("child_set_env: too many env vars");
856 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100857 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000858 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000859 }
860 /* Need to set the NULL pointer at end of array beyond the new slot. */
861 env[i + 1] = NULL;
862 }
863
864 /* Allocate space and format the variable in the appropriate slot. */
865 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
866 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
867}
868
869/*
870 * Reads environment variables from the given file and adds/overrides them
871 * into the environment. If the file does not exist, this does nothing.
872 * Otherwise, it must consist of empty lines, comments (line starts with '#')
873 * and assignments of the form name=value. No other forms are allowed.
874 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000876read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100877 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000878{
879 FILE *f;
880 char buf[4096];
881 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000882 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000883
884 f = fopen(filename, "r");
885 if (!f)
886 return;
887
888 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000889 if (++lineno > 1000)
890 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000891 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
892 ;
893 if (!*cp || *cp == '#' || *cp == '\n')
894 continue;
895 if (strchr(cp, '\n'))
896 *strchr(cp, '\n') = '\0';
897 value = strchr(cp, '=');
898 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000899 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
900 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000901 continue;
902 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000903 /*
904 * Replace the equals sign by nul, and advance value to
905 * the value string.
906 */
Damien Millerb38eff82000-04-01 11:09:21 +1000907 *value = '\0';
908 value++;
909 child_set_env(env, envsize, cp, value);
910 }
911 fclose(f);
912}
913
Darren Tuckere1a790d2003-09-16 11:52:19 +1000914#ifdef HAVE_ETC_DEFAULT_LOGIN
915/*
916 * Return named variable from specified environment, or NULL if not present.
917 */
918static char *
919child_get_env(char **env, const char *name)
920{
921 int i;
922 size_t len;
923
924 len = strlen(name);
925 for (i=0; env[i] != NULL; i++)
926 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
927 return(env[i] + len + 1);
928 return NULL;
929}
930
931/*
932 * Read /etc/default/login.
933 * We pick up the PATH (or SUPATH for root) and UMASK.
934 */
935static void
936read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
937{
938 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000939 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000940 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000941
942 /*
943 * We don't want to copy the whole file to the child's environment,
944 * so we use a temporary environment and copy the variables we're
945 * interested in.
946 */
947 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
948
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000949 if (tmpenv == NULL)
950 return;
951
Darren Tuckere1a790d2003-09-16 11:52:19 +1000952 if (uid == 0)
953 var = child_get_env(tmpenv, "SUPATH");
954 else
955 var = child_get_env(tmpenv, "PATH");
956 if (var != NULL)
957 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100958
Darren Tuckere1a790d2003-09-16 11:52:19 +1000959 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
960 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000961 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100962
Darren Tuckere1a790d2003-09-16 11:52:19 +1000963 for (i = 0; tmpenv[i] != NULL; i++)
964 xfree(tmpenv[i]);
965 xfree(tmpenv);
966}
967#endif /* HAVE_ETC_DEFAULT_LOGIN */
968
Damien Miller7dff8692005-05-26 11:34:51 +1000969void
970copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000971{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100972 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000973 int i;
974
Damien Millerbb9ffc12002-01-08 10:59:32 +1100975 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000976 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000977
Damien Millerbb9ffc12002-01-08 10:59:32 +1100978 for(i = 0; source[i] != NULL; i++) {
979 var_name = xstrdup(source[i]);
980 if ((var_val = strstr(var_name, "=")) == NULL) {
981 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000982 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000983 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100984 *var_val++ = '\0';
985
986 debug3("Copy environment: %s=%s", var_name, var_val);
987 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100988
Damien Millerbb9ffc12002-01-08 10:59:32 +1100989 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000990 }
991}
Damien Millercb5e44a2000-09-29 12:12:36 +1100992
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000993static char **
994do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000995{
Damien Millerb38eff82000-04-01 11:09:21 +1000996 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000997 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000998 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000999 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +10001000
Damien Millerb38eff82000-04-01 11:09:21 +10001001 /* Initialize the environment. */
1002 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001003 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001004 env[0] = NULL;
1005
Damien Millerbac2d8a2000-09-05 16:13:06 +11001006#ifdef HAVE_CYGWIN
1007 /*
1008 * The Windows environment contains some setting which are
1009 * important for a running system. They must not be dropped.
1010 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001011 {
1012 char **p;
1013
1014 p = fetch_windows_environment();
1015 copy_environment(p, &env, &envsize);
1016 free_windows_environment(p);
1017 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001018#endif
1019
Darren Tucker0efd1552003-08-26 11:49:55 +10001020#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001021 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001022 * the childs environment as they see fit
1023 */
1024 ssh_gssapi_do_child(&env, &envsize);
1025#endif
1026
Damien Millerb38eff82000-04-01 11:09:21 +10001027 if (!options.use_login) {
1028 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001029 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001030 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001031 s->env[i].val);
1032
Damien Millerb38eff82000-04-01 11:09:21 +10001033 child_set_env(&env, &envsize, "USER", pw->pw_name);
1034 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001035#ifdef _AIX
1036 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1037#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001038 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001039#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001040 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1041 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1042 else
1043 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001044#else /* HAVE_LOGIN_CAP */
1045# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001046 /*
1047 * There's no standard path on Windows. The path contains
1048 * important components pointing to the system directories,
1049 * needed for loading shared libraries. So the path better
1050 * remains intact here.
1051 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001052# ifdef HAVE_ETC_DEFAULT_LOGIN
1053 read_etc_default_login(&env, &envsize, pw->pw_uid);
1054 path = child_get_env(env, "PATH");
1055# endif /* HAVE_ETC_DEFAULT_LOGIN */
1056 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001057 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001058 s->pw->pw_uid == 0 ?
1059 SUPERUSER_PATH : _PATH_STDPATH);
1060 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001061# endif /* HAVE_CYGWIN */
1062#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001063
1064 snprintf(buf, sizeof buf, "%.200s/%.50s",
1065 _PATH_MAILDIR, pw->pw_name);
1066 child_set_env(&env, &envsize, "MAIL", buf);
1067
1068 /* Normal systems set SHELL by default. */
1069 child_set_env(&env, &envsize, "SHELL", shell);
1070 }
1071 if (getenv("TZ"))
1072 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1073
1074 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001075 if (!options.use_login) {
1076 while (custom_environment) {
1077 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001078 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001079
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001080 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001081 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001082 if (str[i] == '=') {
1083 str[i] = 0;
1084 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001085 }
1086 custom_environment = ce->next;
1087 xfree(ce->s);
1088 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001089 }
Damien Millerb38eff82000-04-01 11:09:21 +10001090 }
1091
Damien Millerf37e2462002-09-19 11:47:55 +10001092 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001093 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001094 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001095 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1096
Damien Miller00111382003-03-10 11:21:17 +11001097 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001098 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001099 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1100 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001101 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1102
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001103 if (s->ttyfd != -1)
1104 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1105 if (s->term)
1106 child_set_env(&env, &envsize, "TERM", s->term);
1107 if (s->display)
1108 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001109 if (original_command)
1110 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1111 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001112
Tim Rice81ed5182002-09-25 17:38:46 -07001113#ifdef _UNICOS
1114 if (cray_tmpdir[0] != '\0')
1115 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1116#endif /* _UNICOS */
1117
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001118 /*
1119 * Since we clear KRB5CCNAME at startup, if it's set now then it
1120 * must have been set by a native authentication method (eg AIX or
1121 * SIA), so copy it to the child.
1122 */
1123 {
1124 char *cp;
1125
1126 if ((cp = getenv("KRB5CCNAME")) != NULL)
1127 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1128 }
1129
Damien Millerb38eff82000-04-01 11:09:21 +10001130#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001131 {
1132 char *cp;
1133
1134 if ((cp = getenv("AUTHSTATE")) != NULL)
1135 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001136 read_environment_file(&env, &envsize, "/etc/environment");
1137 }
Damien Millerb38eff82000-04-01 11:09:21 +10001138#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001139#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001140 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001141 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001142 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001143#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001144#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001145 /*
1146 * Pull in any environment variables that may have
1147 * been set by PAM.
1148 */
Damien Miller4e448a32003-05-14 15:11:48 +10001149 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001150 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001151
Damien Millerc756e9b2003-11-17 21:41:42 +11001152 p = fetch_pam_child_environment();
1153 copy_environment(p, &env, &envsize);
1154 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001155
Damien Millerc756e9b2003-11-17 21:41:42 +11001156 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001157 copy_environment(p, &env, &envsize);
1158 free_pam_environment(p);
1159 }
Damien Millerb38eff82000-04-01 11:09:21 +10001160#endif /* USE_PAM */
1161
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001162 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001163 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001164 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001165
1166 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001167 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001168 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001169 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001170 read_environment_file(&env, &envsize, buf);
1171 }
1172 if (debug_flag) {
1173 /* dump the environment */
1174 fprintf(stderr, "Environment:\n");
1175 for (i = 0; env[i]; i++)
1176 fprintf(stderr, " %.200s\n", env[i]);
1177 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001178 return env;
1179}
1180
1181/*
1182 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1183 * first in this order).
1184 */
1185static void
1186do_rc_files(Session *s, const char *shell)
1187{
1188 FILE *f = NULL;
1189 char cmd[1024];
1190 int do_xauth;
1191 struct stat st;
1192
1193 do_xauth =
1194 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1195
1196 /* ignore _PATH_SSH_USER_RC for subsystems */
1197 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1198 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1199 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1200 if (debug_flag)
1201 fprintf(stderr, "Running %s\n", cmd);
1202 f = popen(cmd, "w");
1203 if (f) {
1204 if (do_xauth)
1205 fprintf(f, "%s %s\n", s->auth_proto,
1206 s->auth_data);
1207 pclose(f);
1208 } else
1209 fprintf(stderr, "Could not run %s\n",
1210 _PATH_SSH_USER_RC);
1211 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1212 if (debug_flag)
1213 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1214 _PATH_SSH_SYSTEM_RC);
1215 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1216 if (f) {
1217 if (do_xauth)
1218 fprintf(f, "%s %s\n", s->auth_proto,
1219 s->auth_data);
1220 pclose(f);
1221 } else
1222 fprintf(stderr, "Could not run %s\n",
1223 _PATH_SSH_SYSTEM_RC);
1224 } else if (do_xauth && options.xauth_location != NULL) {
1225 /* Add authority data to .Xauthority if appropriate. */
1226 if (debug_flag) {
1227 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001228 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001229 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001230 fprintf(stderr,
1231 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001232 options.xauth_location, s->auth_display,
1233 s->auth_proto, s->auth_data);
1234 }
1235 snprintf(cmd, sizeof cmd, "%s -q -",
1236 options.xauth_location);
1237 f = popen(cmd, "w");
1238 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001239 fprintf(f, "remove %s\n",
1240 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001241 fprintf(f, "add %s %s %s\n",
1242 s->auth_display, s->auth_proto,
1243 s->auth_data);
1244 pclose(f);
1245 } else {
1246 fprintf(stderr, "Could not run %s\n",
1247 cmd);
1248 }
1249 }
1250}
1251
1252static void
1253do_nologin(struct passwd *pw)
1254{
1255 FILE *f = NULL;
1256 char buf[1024];
1257
1258#ifdef HAVE_LOGIN_CAP
1259 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1260 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1261 _PATH_NOLOGIN), "r");
1262#else
1263 if (pw->pw_uid)
1264 f = fopen(_PATH_NOLOGIN, "r");
1265#endif
1266 if (f) {
1267 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001268 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001269 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001270 while (fgets(buf, sizeof(buf), f))
1271 fputs(buf, stderr);
1272 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001273 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001274 exit(254);
1275 }
1276}
1277
1278/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001279void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001280do_setusercontext(struct passwd *pw)
1281{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001282#ifndef HAVE_CYGWIN
1283 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001284#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001285 {
1286
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001287#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001288 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1289 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001290#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001291#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001292# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001293 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001294# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001295#ifdef GSSAPI
1296 if (options.gss_authentication) {
1297 temporarily_use_uid(pw);
1298 ssh_gssapi_storecreds();
1299 restore_uid();
1300 }
1301#endif
Damien Millerd3526362004-01-23 14:16:26 +11001302# ifdef USE_PAM
1303 if (options.use_pam) {
1304 do_pam_session();
1305 do_pam_setcred(0);
1306 }
1307# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001308 if (setusercontext(lc, pw, pw->pw_uid,
1309 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1310 perror("unable to set user context");
1311 exit(1);
1312 }
1313#else
1314# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1315 /* Sets login uid for accounting */
1316 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1317 error("setluid: %s", strerror(errno));
1318# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1319
1320 if (setlogin(pw->pw_name) < 0)
1321 error("setlogin failed: %s", strerror(errno));
1322 if (setgid(pw->pw_gid) < 0) {
1323 perror("setgid");
1324 exit(1);
1325 }
1326 /* Initialize the group list. */
1327 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1328 perror("initgroups");
1329 exit(1);
1330 }
1331 endgrent();
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001332#ifdef GSSAPI
1333 if (options.gss_authentication) {
1334 temporarily_use_uid(pw);
1335 ssh_gssapi_storecreds();
1336 restore_uid();
1337 }
1338#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001339# ifdef USE_PAM
1340 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001341 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001342 * These will have been wiped by the above initgroups() call.
1343 * Reestablish them here.
1344 */
Damien Miller341c6e62003-09-02 23:18:52 +10001345 if (options.use_pam) {
1346 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001347 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001348 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001349# endif /* USE_PAM */
1350# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1351 irix_setusercontext(pw);
1352# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001353# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001354 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001355# endif /* _AIX */
Tim Rice66fd2172005-08-31 09:59:49 -07001356#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -07001357 if (set_id(pw->pw_name) != 0) {
1358 exit(1);
1359 }
Tim Rice66fd2172005-08-31 09:59:49 -07001360#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001361 /* Permanently switch to the desired uid. */
1362 permanently_set_uid(pw);
1363#endif
1364 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001365
1366#ifdef HAVE_CYGWIN
1367 if (is_winnt)
1368#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001369 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1370 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001371
1372#ifdef WITH_SELINUX
1373 ssh_selinux_setup_exec_context(pw->pw_name);
1374#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001375}
1376
Ben Lindstrom08105192002-03-22 02:50:06 +00001377static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001378do_pwchange(Session *s)
1379{
Darren Tucker09991742004-07-17 17:05:14 +10001380 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001381 fprintf(stderr, "WARNING: Your password has expired.\n");
1382 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001383 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001384 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001385#ifdef PASSWD_NEEDS_USERNAME
1386 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1387 (char *)NULL);
1388#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001389 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001390#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001391 perror("passwd");
1392 } else {
1393 fprintf(stderr,
1394 "Password change required but no TTY available.\n");
1395 }
1396 exit(1);
1397}
1398
1399static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001400launch_login(struct passwd *pw, const char *hostname)
1401{
1402 /* Launch login(1). */
1403
Ben Lindstrom378a4172002-06-07 14:49:56 +00001404 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001405#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001406 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001407#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001408#ifdef LOGIN_NO_ENDOPT
1409 "-p", "-f", pw->pw_name, (char *)NULL);
1410#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001411 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001412#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001413
1414 /* Login couldn't be executed, die. */
1415
1416 perror("login");
1417 exit(1);
1418}
1419
Darren Tucker23bc8d02004-02-06 16:24:31 +11001420static void
1421child_close_fds(void)
1422{
1423 int i;
1424
1425 if (packet_get_connection_in() == packet_get_connection_out())
1426 close(packet_get_connection_in());
1427 else {
1428 close(packet_get_connection_in());
1429 close(packet_get_connection_out());
1430 }
1431 /*
1432 * Close all descriptors related to channels. They will still remain
1433 * open in the parent.
1434 */
1435 /* XXX better use close-on-exec? -markus */
1436 channel_close_all();
1437
1438 /*
1439 * Close any extra file descriptors. Note that there may still be
1440 * descriptors left by system functions. They will be closed later.
1441 */
1442 endpwent();
1443
1444 /*
Damien Miller788f2122005-11-05 15:14:59 +11001445 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001446 * hanging around in clients. Note that we want to do this after
1447 * initgroups, because at least on Solaris 2.3 it leaves file
1448 * descriptors open.
1449 */
1450 for (i = 3; i < 64; i++)
1451 close(i);
1452}
1453
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001454/*
1455 * Performs common processing for the child, such as setting up the
1456 * environment, closing extra file descriptors, setting the user and group
1457 * ids, and executing the command or shell.
1458 */
1459void
1460do_child(Session *s, const char *command)
1461{
1462 extern char **environ;
1463 char **env;
1464 char *argv[10];
1465 const char *shell, *shell0, *hostname = NULL;
1466 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001467
1468 /* remove hostkey from the child's memory */
1469 destroy_sensitive_data();
1470
Darren Tucker23bc8d02004-02-06 16:24:31 +11001471 /* Force a password change */
1472 if (s->authctxt->force_pwchange) {
1473 do_setusercontext(pw);
1474 child_close_fds();
1475 do_pwchange(s);
1476 exit(1);
1477 }
1478
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001479 /* login(1) is only called if we execute the login shell */
1480 if (options.use_login && command != NULL)
1481 options.use_login = 0;
1482
Tim Rice81ed5182002-09-25 17:38:46 -07001483#ifdef _UNICOS
1484 cray_setup(pw->pw_uid, pw->pw_name, command);
1485#endif /* _UNICOS */
1486
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001487 /*
1488 * Login(1) does this as well, and it needs uid 0 for the "-h"
1489 * switch, so we let login(1) to this for us.
1490 */
1491 if (!options.use_login) {
1492#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001493 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001494 if (!check_quietlogin(s, command))
1495 do_motd();
1496#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001497 /* When PAM is enabled we rely on it to do the nologin check */
1498 if (!options.use_pam)
1499 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001500 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001501 /*
1502 * PAM session modules in do_setusercontext may have
1503 * generated messages, so if this in an interactive
1504 * login then display them too.
1505 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001506 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001507 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001508#endif /* HAVE_OSF_SIA */
1509 }
1510
Darren Tucker69687f42004-09-11 22:17:26 +10001511#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001512 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1513 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001514 display_loginmsg();
1515 exit(254);
1516 }
1517#endif
1518
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001519 /*
1520 * Get the shell from the password data. An empty shell field is
1521 * legal, and means /bin/sh.
1522 */
1523 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001524
1525 /*
1526 * Make sure $SHELL points to the shell from the password file,
1527 * even if shell is overridden from login.conf
1528 */
1529 env = do_setup_env(s, shell);
1530
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001531#ifdef HAVE_LOGIN_CAP
1532 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1533#endif
1534
Damien Millerad833b32000-08-23 10:46:23 +10001535 /* we have to stash the hostname before we close our socket. */
1536 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001537 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001538 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001539 /*
1540 * Close the connection descriptors; note that this is the child, and
1541 * the server will still have the socket open, and it is important
1542 * that we do not shutdown it. Note that the descriptors cannot be
1543 * closed before building the environment, as we call
1544 * get_remote_ipaddr there.
1545 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001546 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001547
Damien Millerb38eff82000-04-01 11:09:21 +10001548 /*
Damien Miller05eda432002-02-10 18:32:28 +11001549 * Must take new environment into use so that .ssh/rc,
1550 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001551 */
1552 environ = env;
1553
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001554#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001555 /*
1556 * At this point, we check to see if AFS is active and if we have
1557 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1558 * if we can (and need to) extend the ticket into an AFS token. If
1559 * we don't do this, we run into potential problems if the user's
1560 * home directory is in AFS and it's not world-readable.
1561 */
1562
1563 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001564 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001565 char cell[64];
1566
1567 debug("Getting AFS token");
1568
1569 k_setpag();
1570
1571 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1572 krb5_afslog(s->authctxt->krb5_ctx,
1573 s->authctxt->krb5_fwd_ccache, cell, NULL);
1574
1575 krb5_afslog_home(s->authctxt->krb5_ctx,
1576 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1577 }
1578#endif
1579
Damien Miller788f2122005-11-05 15:14:59 +11001580 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001581 if (chdir(pw->pw_dir) < 0) {
1582 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1583 pw->pw_dir, strerror(errno));
1584#ifdef HAVE_LOGIN_CAP
1585 if (login_getcapbool(lc, "requirehome", 0))
1586 exit(1);
1587#endif
1588 }
1589
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001590 if (!options.use_login)
1591 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001592
1593 /* restore SIGPIPE for child */
1594 signal(SIGPIPE, SIG_DFL);
1595
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001596 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001597 launch_login(pw, hostname);
1598 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001599 }
1600
1601 /* Get the last component of the shell name. */
1602 if ((shell0 = strrchr(shell, '/')) != NULL)
1603 shell0++;
1604 else
1605 shell0 = shell;
1606
Damien Millerb38eff82000-04-01 11:09:21 +10001607 /*
1608 * If we have no command, execute the shell. In this case, the shell
1609 * name to be passed in argv[0] is preceded by '-' to indicate that
1610 * this is a login shell.
1611 */
1612 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001613 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001614
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001615 /* Start the shell. Set initial character to '-'. */
1616 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001617
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001618 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1619 >= sizeof(argv0) - 1) {
1620 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001621 perror(shell);
1622 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001623 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001624
1625 /* Execute the shell. */
1626 argv[0] = argv0;
1627 argv[1] = NULL;
1628 execve(shell, argv, env);
1629
1630 /* Executing the shell failed. */
1631 perror(shell);
1632 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001633 }
1634 /*
1635 * Execute the command using the user's shell. This uses the -c
1636 * option to execute the command.
1637 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001638 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001639 argv[1] = "-c";
1640 argv[2] = (char *) command;
1641 argv[3] = NULL;
1642 execve(shell, argv, env);
1643 perror(shell);
1644 exit(1);
1645}
1646
1647Session *
1648session_new(void)
1649{
1650 int i;
1651 static int did_init = 0;
1652 if (!did_init) {
1653 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001654 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001655 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001656 }
1657 did_init = 1;
1658 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001659 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001660 Session *s = &sessions[i];
1661 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001662 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001663 s->chanid = -1;
1664 s->ptyfd = -1;
1665 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001666 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001667 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001668 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001669 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001670 return s;
1671 }
1672 }
1673 return NULL;
1674}
1675
Ben Lindstrombba81212001-06-25 05:01:22 +00001676static void
Damien Millerb38eff82000-04-01 11:09:21 +10001677session_dump(void)
1678{
1679 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001680 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001681 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001682 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001683 s->used,
1684 s->self,
1685 s,
1686 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001687 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001688 }
1689}
1690
Damien Millerefb4afe2000-04-12 18:45:05 +10001691int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001692session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001693{
1694 Session *s = session_new();
1695 debug("session_open: channel %d", chanid);
1696 if (s == NULL) {
1697 error("no more sessions");
1698 return 0;
1699 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001700 s->authctxt = authctxt;
1701 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001702 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001703 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001704 debug("session_open: session %d: link with channel %d", s->self, chanid);
1705 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001706 return 1;
1707}
1708
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709Session *
1710session_by_tty(char *tty)
1711{
1712 int i;
1713 for (i = 0; i < MAX_SESSIONS; i++) {
1714 Session *s = &sessions[i];
1715 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1716 debug("session_by_tty: session %d tty %s", i, tty);
1717 return s;
1718 }
1719 }
1720 debug("session_by_tty: unknown tty %.100s", tty);
1721 session_dump();
1722 return NULL;
1723}
1724
Ben Lindstrombba81212001-06-25 05:01:22 +00001725static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001726session_by_channel(int id)
1727{
1728 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001729 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001730 Session *s = &sessions[i];
1731 if (s->used && s->chanid == id) {
1732 debug("session_by_channel: session %d channel %d", i, id);
1733 return s;
1734 }
1735 }
1736 debug("session_by_channel: unknown channel %d", id);
1737 session_dump();
1738 return NULL;
1739}
1740
Ben Lindstrombba81212001-06-25 05:01:22 +00001741static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001742session_by_x11_channel(int id)
1743{
1744 int i, j;
1745
1746 for (i = 0; i < MAX_SESSIONS; i++) {
1747 Session *s = &sessions[i];
1748
1749 if (s->x11_chanids == NULL || !s->used)
1750 continue;
1751 for (j = 0; s->x11_chanids[j] != -1; j++) {
1752 if (s->x11_chanids[j] == id) {
1753 debug("session_by_x11_channel: session %d "
1754 "channel %d", s->self, id);
1755 return s;
1756 }
1757 }
1758 }
1759 debug("session_by_x11_channel: unknown channel %d", id);
1760 session_dump();
1761 return NULL;
1762}
1763
1764static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001765session_by_pid(pid_t pid)
1766{
1767 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001768 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001769 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001770 Session *s = &sessions[i];
1771 if (s->used && s->pid == pid)
1772 return s;
1773 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001774 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001775 session_dump();
1776 return NULL;
1777}
1778
Ben Lindstrombba81212001-06-25 05:01:22 +00001779static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001780session_window_change_req(Session *s)
1781{
1782 s->col = packet_get_int();
1783 s->row = packet_get_int();
1784 s->xpixel = packet_get_int();
1785 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001786 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001787 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1788 return 1;
1789}
1790
Ben Lindstrombba81212001-06-25 05:01:22 +00001791static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001792session_pty_req(Session *s)
1793{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001794 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001795 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001796
Ben Lindstrom49c12602001-06-13 04:37:36 +00001797 if (no_pty_flag) {
1798 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001799 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001800 }
1801 if (s->ttyfd != -1) {
1802 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001803 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001804 }
1805
Damien Millerefb4afe2000-04-12 18:45:05 +10001806 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001807
1808 if (compat20) {
1809 s->col = packet_get_int();
1810 s->row = packet_get_int();
1811 } else {
1812 s->row = packet_get_int();
1813 s->col = packet_get_int();
1814 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001815 s->xpixel = packet_get_int();
1816 s->ypixel = packet_get_int();
1817
1818 if (strcmp(s->term, "") == 0) {
1819 xfree(s->term);
1820 s->term = NULL;
1821 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001822
Damien Millerefb4afe2000-04-12 18:45:05 +10001823 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001824 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001825 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001826 if (s->term)
1827 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001828 s->term = NULL;
1829 s->ptyfd = -1;
1830 s->ttyfd = -1;
1831 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001832 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001833 }
1834 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001835
1836 /* for SSH1 the tty modes length is not given */
1837 if (!compat20)
1838 n_bytes = packet_remaining();
1839 tty_parse_modes(s->ttyfd, &n_bytes);
1840
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001841 if (!use_privsep)
1842 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001843
1844 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001845 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1846
Damien Miller48b03fc2002-01-22 23:11:40 +11001847 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001848 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001849 return 1;
1850}
1851
Ben Lindstrombba81212001-06-25 05:01:22 +00001852static int
Damien Millerbd483e72000-04-30 10:00:53 +10001853session_subsystem_req(Session *s)
1854{
Damien Millerae452462001-10-10 15:08:06 +10001855 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001856 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001857 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10001858 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001859 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001860
Damien Miller48b03fc2002-01-22 23:11:40 +11001861 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001862 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001863
Damien Millerf6d9e222000-06-18 14:50:44 +10001864 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001865 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10001866 prog = options.subsystem_command[i];
1867 cmd = options.subsystem_args[i];
1868 if (stat(prog, &st) < 0) {
1869 error("subsystem: cannot stat %s: %s", prog,
Damien Millerae452462001-10-10 15:08:06 +10001870 strerror(errno));
1871 break;
1872 }
1873 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001874 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001875 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001876 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001877 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001878 }
1879 }
1880
1881 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001882 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001883 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001884
Damien Millerbd483e72000-04-30 10:00:53 +10001885 xfree(subsys);
1886 return success;
1887}
1888
Ben Lindstrombba81212001-06-25 05:01:22 +00001889static int
Damien Millerbd483e72000-04-30 10:00:53 +10001890session_x11_req(Session *s)
1891{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001892 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001893
Damien Miller2b9b0452005-07-17 17:19:24 +10001894 if (s->auth_proto != NULL || s->auth_data != NULL) {
1895 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11001896 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10001897 return 0;
1898 }
Damien Millerbd483e72000-04-30 10:00:53 +10001899 s->single_connection = packet_get_char();
1900 s->auth_proto = packet_get_string(NULL);
1901 s->auth_data = packet_get_string(NULL);
1902 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001903 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001904
Ben Lindstrom768176b2001-06-09 01:29:12 +00001905 success = session_setup_x11fwd(s);
1906 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001907 xfree(s->auth_proto);
1908 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001909 s->auth_proto = NULL;
1910 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001911 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001912 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001913}
1914
Ben Lindstrombba81212001-06-25 05:01:22 +00001915static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001916session_shell_req(Session *s)
1917{
Damien Miller48b03fc2002-01-22 23:11:40 +11001918 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001919 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001920 return 1;
1921}
1922
Ben Lindstrombba81212001-06-25 05:01:22 +00001923static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001924session_exec_req(Session *s)
1925{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001926 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001927 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001928 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001929 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001930 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001931 return 1;
1932}
1933
Ben Lindstrombba81212001-06-25 05:01:22 +00001934static int
Damien Miller54c45982003-05-15 10:20:13 +10001935session_break_req(Session *s)
1936{
Damien Miller54c45982003-05-15 10:20:13 +10001937
Darren Tucker1f8311c2004-05-13 16:39:33 +10001938 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001939 packet_check_eom();
1940
Darren Tucker3bdbd842003-08-13 20:31:05 +10001941 if (s->ttyfd == -1 ||
1942 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001943 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001944 return 1;
1945}
1946
1947static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001948session_env_req(Session *s)
1949{
1950 char *name, *val;
1951 u_int name_len, val_len, i;
1952
1953 name = packet_get_string(&name_len);
1954 val = packet_get_string(&val_len);
1955 packet_check_eom();
1956
1957 /* Don't set too many environment variables */
1958 if (s->num_env > 128) {
1959 debug2("Ignoring env request %s: too many env vars", name);
1960 goto fail;
1961 }
1962
1963 for (i = 0; i < options.num_accept_env; i++) {
1964 if (match_pattern(name, options.accept_env[i])) {
1965 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11001966 s->env = xrealloc(s->env, s->num_env + 1,
1967 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10001968 s->env[s->num_env].name = name;
1969 s->env[s->num_env].val = val;
1970 s->num_env++;
1971 return (1);
1972 }
1973 }
1974 debug2("Ignoring env request %s: disallowed name", name);
1975
1976 fail:
1977 xfree(name);
1978 xfree(val);
1979 return (0);
1980}
1981
1982static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001983session_auth_agent_req(Session *s)
1984{
1985 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001986 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001987 if (no_agent_forwarding_flag) {
1988 debug("session_auth_agent_req: no_agent_forwarding_flag");
1989 return 0;
1990 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001991 if (called) {
1992 return 0;
1993 } else {
1994 called = 1;
1995 return auth_input_request_forwarding(s->pw);
1996 }
1997}
1998
Damien Millerc7ef63d2002-02-05 12:21:42 +11001999int
2000session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002001{
Damien Millerefb4afe2000-04-12 18:45:05 +10002002 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002003 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002004
Damien Millerc7ef63d2002-02-05 12:21:42 +11002005 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002006 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002007 c->self, rtype);
2008 return 0;
2009 }
2010 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002011
2012 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002013 * a session is in LARVAL state until a shell, a command
2014 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002015 */
2016 if (c->type == SSH_CHANNEL_LARVAL) {
2017 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002018 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002019 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002020 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002021 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10002022 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002023 } else if (strcmp(rtype, "x11-req") == 0) {
2024 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002025 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2026 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002027 } else if (strcmp(rtype, "subsystem") == 0) {
2028 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002029 } else if (strcmp(rtype, "env") == 0) {
2030 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002031 }
2032 }
2033 if (strcmp(rtype, "window-change") == 0) {
2034 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002035 } else if (strcmp(rtype, "break") == 0) {
2036 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002037 }
Damien Millera6b1d162004-06-30 22:41:07 +10002038
Damien Millerc7ef63d2002-02-05 12:21:42 +11002039 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002040}
2041
2042void
2043session_set_fds(Session *s, int fdin, int fdout, int fderr)
2044{
2045 if (!compat20)
2046 fatal("session_set_fds: called for proto != 2.0");
2047 /*
2048 * now that have a child and a pipe to the child,
2049 * we can activate our channel and register the fd's
2050 */
2051 if (s->chanid == -1)
2052 fatal("no channel for session %d", s->self);
2053 channel_set_fds(s->chanid,
2054 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002055 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002056 1,
2057 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002058}
2059
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002060/*
2061 * Function to perform pty cleanup. Also called if we get aborted abnormally
2062 * (e.g., due to a dropped connection).
2063 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002064void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002065session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002066{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002067 if (s == NULL) {
2068 error("session_pty_cleanup: no session");
2069 return;
2070 }
2071 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002072 return;
2073
Kevin Steves43cdef32001-02-11 14:12:08 +00002074 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002075
Damien Millerb38eff82000-04-01 11:09:21 +10002076 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002077 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002078 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002079
2080 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002081 if (getuid() == 0)
2082 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002083
2084 /*
2085 * Close the server side of the socket pairs. We must do this after
2086 * the pty cleanup, so that another process doesn't get this pty
2087 * while we're still cleaning up.
2088 */
2089 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002090 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002091
2092 /* unlink pty from session */
2093 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002094}
Damien Millerefb4afe2000-04-12 18:45:05 +10002095
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002096void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002097session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002098{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002099 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002100}
2101
Damien Miller5a80bba2002-09-04 16:39:02 +10002102static char *
2103sig2name(int sig)
2104{
2105#define SSH_SIG(x) if (sig == SIG ## x) return #x
2106 SSH_SIG(ABRT);
2107 SSH_SIG(ALRM);
2108 SSH_SIG(FPE);
2109 SSH_SIG(HUP);
2110 SSH_SIG(ILL);
2111 SSH_SIG(INT);
2112 SSH_SIG(KILL);
2113 SSH_SIG(PIPE);
2114 SSH_SIG(QUIT);
2115 SSH_SIG(SEGV);
2116 SSH_SIG(TERM);
2117 SSH_SIG(USR1);
2118 SSH_SIG(USR2);
2119#undef SSH_SIG
2120 return "SIG@openssh.com";
2121}
2122
Ben Lindstrombba81212001-06-25 05:01:22 +00002123static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002124session_close_x11(int id)
2125{
2126 Channel *c;
2127
Damien Millerd47c62a2005-12-13 19:33:57 +11002128 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002129 debug("session_close_x11: x11 channel %d missing", id);
2130 } else {
2131 /* Detach X11 listener */
2132 debug("session_close_x11: detach x11 channel %d", id);
2133 channel_cancel_cleanup(id);
2134 if (c->ostate != CHAN_OUTPUT_CLOSED)
2135 chan_mark_dead(c);
2136 }
2137}
2138
2139static void
2140session_close_single_x11(int id, void *arg)
2141{
2142 Session *s;
2143 u_int i;
2144
2145 debug3("session_close_single_x11: channel %d", id);
2146 channel_cancel_cleanup(id);
2147 if ((s = session_by_x11_channel(id)) == NULL)
2148 fatal("session_close_single_x11: no x11 channel %d", id);
2149 for (i = 0; s->x11_chanids[i] != -1; i++) {
2150 debug("session_close_single_x11: session %d: "
2151 "closing channel %d", s->self, s->x11_chanids[i]);
2152 /*
2153 * The channel "id" is already closing, but make sure we
2154 * close all of its siblings.
2155 */
2156 if (s->x11_chanids[i] != id)
2157 session_close_x11(s->x11_chanids[i]);
2158 }
2159 xfree(s->x11_chanids);
2160 s->x11_chanids = NULL;
2161 if (s->display) {
2162 xfree(s->display);
2163 s->display = NULL;
2164 }
2165 if (s->auth_proto) {
2166 xfree(s->auth_proto);
2167 s->auth_proto = NULL;
2168 }
2169 if (s->auth_data) {
2170 xfree(s->auth_data);
2171 s->auth_data = NULL;
2172 }
2173 if (s->auth_display) {
2174 xfree(s->auth_display);
2175 s->auth_display = NULL;
2176 }
2177}
2178
2179static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002180session_exit_message(Session *s, int status)
2181{
2182 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002183
2184 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002185 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002186 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002187 debug("session_exit_message: session %d channel %d pid %ld",
2188 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002189
2190 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002191 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002192 packet_put_int(WEXITSTATUS(status));
2193 packet_send();
2194 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002195 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002196 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002197#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002198 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002199#else /* WCOREDUMP */
2200 packet_put_char(0);
2201#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002202 packet_put_cstring("");
2203 packet_put_cstring("");
2204 packet_send();
2205 } else {
2206 /* Some weird exit cause. Just exit. */
2207 packet_disconnect("wait returned status %04x.", status);
2208 }
2209
2210 /* disconnect channel */
2211 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002212
2213 /*
2214 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002215 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002216 * by session_close_by_channel when the childs close their fds.
2217 */
2218 channel_register_cleanup(c->self, session_close_by_channel, 1);
2219
Damien Miller166fca82000-04-20 07:42:21 +10002220 /*
2221 * emulate a write failure with 'chan_write_failed', nobody will be
2222 * interested in data we write.
2223 * Note that we must not call 'chan_read_failed', since there could
2224 * be some more data waiting in the pipe.
2225 */
Damien Millerbd483e72000-04-30 10:00:53 +10002226 if (c->ostate != CHAN_OUTPUT_CLOSED)
2227 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002228}
2229
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002230void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002231session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002232{
Damien Millereccb9de2005-06-17 12:59:34 +10002233 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002234
Ben Lindstromce0f6342002-06-11 16:42:49 +00002235 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002236 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002237 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002238 if (s->term)
2239 xfree(s->term);
2240 if (s->display)
2241 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002242 if (s->x11_chanids)
2243 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002244 if (s->auth_display)
2245 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002246 if (s->auth_data)
2247 xfree(s->auth_data);
2248 if (s->auth_proto)
2249 xfree(s->auth_proto);
2250 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002251 for (i = 0; i < s->num_env; i++) {
2252 xfree(s->env[i].name);
2253 xfree(s->env[i].val);
2254 }
2255 if (s->env != NULL)
2256 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002257 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002258}
2259
2260void
2261session_close_by_pid(pid_t pid, int status)
2262{
2263 Session *s = session_by_pid(pid);
2264 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002265 debug("session_close_by_pid: no session for pid %ld",
2266 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002267 return;
2268 }
2269 if (s->chanid != -1)
2270 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002271 if (s->ttyfd != -1)
2272 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002273 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002274}
2275
2276/*
2277 * this is called when a channel dies before
2278 * the session 'child' itself dies
2279 */
2280void
2281session_close_by_channel(int id, void *arg)
2282{
2283 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002284 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002285
Damien Millerefb4afe2000-04-12 18:45:05 +10002286 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002287 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002288 return;
2289 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002290 debug("session_close_by_channel: channel %d child %ld",
2291 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002292 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002293 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002294 /*
2295 * delay detach of session, but release pty, since
2296 * the fd's to the child are already closed
2297 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002298 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002299 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002300 return;
2301 }
2302 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002303 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002304
2305 /* Close any X11 listeners associated with this session */
2306 if (s->x11_chanids != NULL) {
2307 for (i = 0; s->x11_chanids[i] != -1; i++) {
2308 session_close_x11(s->x11_chanids[i]);
2309 s->x11_chanids[i] = -1;
2310 }
2311 }
2312
Damien Millerefb4afe2000-04-12 18:45:05 +10002313 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002314 session_close(s);
2315}
2316
2317void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002318session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002319{
2320 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002321 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002322 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002323 if (s->used) {
2324 if (closefunc != NULL)
2325 closefunc(s);
2326 else
2327 session_close(s);
2328 }
Damien Miller52b77be2001-10-10 15:14:37 +10002329 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002330}
2331
Ben Lindstrombba81212001-06-25 05:01:22 +00002332static char *
Damien Millere247cc42000-05-07 12:03:14 +10002333session_tty_list(void)
2334{
2335 static char buf[1024];
2336 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002337 char *cp;
2338
Damien Millere247cc42000-05-07 12:03:14 +10002339 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002340 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002341 Session *s = &sessions[i];
2342 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002343
Damien Millera8ed44b2003-01-10 09:53:12 +11002344 if (strncmp(s->tty, "/dev/", 5) != 0) {
2345 cp = strrchr(s->tty, '/');
2346 cp = (cp == NULL) ? s->tty : cp + 1;
2347 } else
2348 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002349
Damien Millere247cc42000-05-07 12:03:14 +10002350 if (buf[0] != '\0')
2351 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002352 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002353 }
2354 }
2355 if (buf[0] == '\0')
2356 strlcpy(buf, "notty", sizeof buf);
2357 return buf;
2358}
2359
2360void
2361session_proctitle(Session *s)
2362{
2363 if (s->pw == NULL)
2364 error("no user for session %d", s->self);
2365 else
2366 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2367}
2368
Ben Lindstrom768176b2001-06-09 01:29:12 +00002369int
2370session_setup_x11fwd(Session *s)
2371{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002372 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002373 char display[512], auth_display[512];
2374 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002375 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002376
2377 if (no_x11_forwarding_flag) {
2378 packet_send_debug("X11 forwarding disabled in user configuration file.");
2379 return 0;
2380 }
2381 if (!options.x11_forwarding) {
2382 debug("X11 forwarding disabled in server configuration file.");
2383 return 0;
2384 }
2385 if (!options.xauth_location ||
2386 (stat(options.xauth_location, &st) == -1)) {
2387 packet_send_debug("No xauth program; cannot forward with spoofing.");
2388 return 0;
2389 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002390 if (options.use_login) {
2391 packet_send_debug("X11 forwarding disabled; "
2392 "not compatible with UseLogin=yes.");
2393 return 0;
2394 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002395 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002396 debug("X11 display already set.");
2397 return 0;
2398 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002399 if (x11_create_display_inet(options.x11_display_offset,
2400 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002401 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002402 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002403 return 0;
2404 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002405 for (i = 0; s->x11_chanids[i] != -1; i++) {
2406 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002407 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002408 }
Kevin Steves366298c2001-12-19 17:58:01 +00002409
2410 /* Set up a suitable value for the DISPLAY variable. */
2411 if (gethostname(hostname, sizeof(hostname)) < 0)
2412 fatal("gethostname: %.100s", strerror(errno));
2413 /*
2414 * auth_display must be used as the displayname when the
2415 * authorization entry is added with xauth(1). This will be
2416 * different than the DISPLAY string for localhost displays.
2417 */
Damien Miller95c249f2002-02-05 12:11:34 +11002418 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002419 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002420 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002421 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002422 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002423 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002424 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002425 } else {
2426#ifdef IPADDR_IN_DISPLAY
2427 struct hostent *he;
2428 struct in_addr my_addr;
2429
2430 he = gethostbyname(hostname);
2431 if (he == NULL) {
2432 error("Can't get IP address for X11 DISPLAY.");
2433 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2434 return 0;
2435 }
2436 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002437 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002438 s->display_number, s->screen);
2439#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002440 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002441 s->display_number, s->screen);
2442#endif
2443 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002444 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002445 }
2446
Ben Lindstrom768176b2001-06-09 01:29:12 +00002447 return 1;
2448}
2449
Ben Lindstrombba81212001-06-25 05:01:22 +00002450static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002451do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002452{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002453 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002454}
2455
2456void
2457do_cleanup(Authctxt *authctxt)
2458{
2459 static int called = 0;
2460
2461 debug("do_cleanup");
2462
2463 /* no cleanup if we're in the child for login shell */
2464 if (is_child)
2465 return;
2466
2467 /* avoid double cleanup */
2468 if (called)
2469 return;
2470 called = 1;
2471
2472 if (authctxt == NULL)
2473 return;
2474#ifdef KRB5
2475 if (options.kerberos_ticket_cleanup &&
2476 authctxt->krb5_ctx)
2477 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002478#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002479
2480#ifdef GSSAPI
2481 if (compat20 && options.gss_cleanup_creds)
2482 ssh_gssapi_cleanup_creds();
2483#endif
2484
Darren Tucker8846a072003-10-07 11:30:15 +10002485#ifdef USE_PAM
2486 if (options.use_pam) {
2487 sshpam_cleanup();
2488 sshpam_thread_cleanup();
2489 }
2490#endif
2491
Darren Tucker3e33cec2003-10-02 16:12:36 +10002492 /* remove agent socket */
2493 auth_sock_cleanup_proc(authctxt->pw);
2494
2495 /*
2496 * Cleanup ptys/utmp only if privsep is disabled,
2497 * or if running in monitor.
2498 */
2499 if (!use_privsep || mm_is_monitor())
2500 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002501}