blob: 88e0a04d2578bc82b66918b283355335eec7f967 [file] [log] [blame]
Damien Millerb38eff82000-04-01 11:09:21 +10001/*
2 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11004 *
5 * As far as I am concerned, the code I have written for this software
6 * can be used freely for any purpose. Any derived versions of this
7 * software must be clearly marked as such, and if the derived work is
8 * incompatible with the protocol description in the RFC file, it must be
9 * called by a name other than "ssh" or "Secure Shell".
10 *
Damien Millerefb4afe2000-04-12 18:45:05 +100011 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000012 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110013 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100033 */
Damien Millerb38eff82000-04-01 11:09:21 +100034
35#include "includes.h"
Damien Miller03e20032006-03-15 11:16:59 +110036RCSID("$OpenBSD: session.c,v 1.192 2006/02/08 12:15:27 stevesk Exp $");
37
38#include <paths.h>
Damien Millerb38eff82000-04-01 11:09:21 +100039
Damien Millerb38eff82000-04-01 11:09:21 +100040#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000041#include "ssh1.h"
42#include "ssh2.h"
43#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000044#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100045#include "packet.h"
46#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100047#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100048#include "uidswap.h"
49#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000050#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100051#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100052#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100053#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "pathnames.h"
55#include "log.h"
56#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000057#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058#include "serverloop.h"
59#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000060#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100061#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000062#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100063
Darren Tucker3c78c5e2004-01-23 22:03:10 +110064#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110065#include <kafs.h>
66#endif
67
Darren Tucker0efd1552003-08-26 11:49:55 +100068#ifdef GSSAPI
69#include "ssh-gss.h"
70#endif
71
Damien Millerb38eff82000-04-01 11:09:21 +100072/* func */
73
74Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000075void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100076void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000077void session_proctitle(Session *);
78int session_setup_x11fwd(Session *);
79void do_exec_pty(Session *, const char *);
80void do_exec_no_pty(Session *, const char *);
81void do_exec(Session *, const char *);
82void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000083#ifdef LOGIN_NEEDS_UTMPX
84static void do_pre_login(Session *s);
85#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000086void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100087void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000088int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100089
Ben Lindstrombba81212001-06-25 05:01:22 +000090static void do_authenticated1(Authctxt *);
91static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000092
Ben Lindstrombba81212001-06-25 05:01:22 +000093static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +000094
Damien Millerb38eff82000-04-01 11:09:21 +100095/* import */
96extern ServerOptions options;
97extern char *__progname;
98extern int log_stderr;
99extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000100extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000101extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000102extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000103extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000104
Damien Miller7b28dc52000-09-05 13:34:53 +1100105/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000106const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100107
Damien Millerb38eff82000-04-01 11:09:21 +1000108/* data */
109#define MAX_SESSIONS 10
110Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100111
Damien Millerad833b32000-08-23 10:46:23 +1000112#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000113login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000114#endif
115
Darren Tucker3e33cec2003-10-02 16:12:36 +1000116static int is_child = 0;
117
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000118/* Name and directory of socket for authentication agent forwarding. */
119static char *auth_sock_name = NULL;
120static char *auth_sock_dir = NULL;
121
122/* removes the agent forwarding socket */
123
124static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000125auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000126{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000127 if (auth_sock_name != NULL) {
128 temporarily_use_uid(pw);
129 unlink(auth_sock_name);
130 rmdir(auth_sock_dir);
131 auth_sock_name = NULL;
132 restore_uid();
133 }
134}
135
136static int
137auth_input_request_forwarding(struct passwd * pw)
138{
139 Channel *nc;
140 int sock;
141 struct sockaddr_un sunaddr;
142
143 if (auth_sock_name != NULL) {
144 error("authentication forwarding requested twice.");
145 return 0;
146 }
147
148 /* Temporarily drop privileged uid for mkdir/bind. */
149 temporarily_use_uid(pw);
150
151 /* Allocate a buffer for the socket name, and format the name. */
152 auth_sock_name = xmalloc(MAXPATHLEN);
153 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000154 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000155
156 /* Create private directory for socket */
157 if (mkdtemp(auth_sock_dir) == NULL) {
158 packet_send_debug("Agent forwarding disabled: "
159 "mkdtemp() failed: %.100s", strerror(errno));
160 restore_uid();
161 xfree(auth_sock_name);
162 xfree(auth_sock_dir);
163 auth_sock_name = NULL;
164 auth_sock_dir = NULL;
165 return 0;
166 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000167 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
168 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000169
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000170 /* Create the socket. */
171 sock = socket(AF_UNIX, SOCK_STREAM, 0);
172 if (sock < 0)
173 packet_disconnect("socket: %.100s", strerror(errno));
174
175 /* Bind it to the name. */
176 memset(&sunaddr, 0, sizeof(sunaddr));
177 sunaddr.sun_family = AF_UNIX;
178 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
179
180 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
181 packet_disconnect("bind: %.100s", strerror(errno));
182
183 /* Restore the privileged uid. */
184 restore_uid();
185
186 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100187 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000188 packet_disconnect("listen: %.100s", strerror(errno));
189
190 /* Allocate a channel for the authentication agent socket. */
191 nc = channel_new("auth socket",
192 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
193 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000194 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000195 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
196 return 1;
197}
198
Darren Tucker1921ed92004-02-10 13:23:28 +1100199static void
200display_loginmsg(void)
201{
Damien Miller46d38de2005-07-17 17:02:09 +1000202 if (buffer_len(&loginmsg) > 0) {
203 buffer_append(&loginmsg, "\0", 1);
204 printf("%s", (char *)buffer_ptr(&loginmsg));
205 buffer_clear(&loginmsg);
206 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100207}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000208
Ben Lindstromb31783d2001-03-22 02:02:12 +0000209void
210do_authenticated(Authctxt *authctxt)
211{
Damien Miller97f39ae2003-02-24 11:57:01 +1100212 setproctitle("%s", authctxt->pw->pw_name);
213
Ben Lindstromb31783d2001-03-22 02:02:12 +0000214 /* setup the channel layer */
215 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
216 channel_permit_all_opens();
217
218 if (compat20)
219 do_authenticated2(authctxt);
220 else
221 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000222
Darren Tucker3e33cec2003-10-02 16:12:36 +1000223 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000224}
225
Damien Millerb38eff82000-04-01 11:09:21 +1000226/*
Damien Millerb38eff82000-04-01 11:09:21 +1000227 * Prepares for an interactive session. This is called after the user has
228 * been successfully authenticated. During this message exchange, pseudo
229 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
230 * are requested, etc.
231 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000232static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000233do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000234{
235 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000236 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100237 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000238 int enable_compression_after_reply = 0;
239 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000240
241 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100242 if (s == NULL) {
243 error("no more sessions");
244 return;
245 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000246 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000247 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000248
Damien Millerb38eff82000-04-01 11:09:21 +1000249 /*
250 * We stay in this loop until the client requests to execute a shell
251 * or a command.
252 */
253 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000254 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000255
256 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100257 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000258
259 /* Process the packet. */
260 switch (type) {
261 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000262 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100263 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000264 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000265 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100266 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000267 break;
268 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000269 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000270 debug2("compression disabled");
271 break;
272 }
Damien Millerb38eff82000-04-01 11:09:21 +1000273 /* Enable compression after we have responded with SUCCESS. */
274 enable_compression_after_reply = 1;
275 success = 1;
276 break;
277
278 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000279 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000280 break;
281
282 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000283 s->auth_proto = packet_get_string(&proto_len);
284 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000285
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000286 screen_flag = packet_get_protocol_flags() &
287 SSH_PROTOFLAG_SCREEN_NUMBER;
288 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
289
290 if (packet_remaining() == 4) {
291 if (!screen_flag)
292 debug2("Buggy client: "
293 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000294 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000295 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000296 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000297 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100298 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000299 success = session_setup_x11fwd(s);
300 if (!success) {
301 xfree(s->auth_proto);
302 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000303 s->auth_proto = NULL;
304 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000305 }
Damien Millerb38eff82000-04-01 11:09:21 +1000306 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000307
308 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
309 if (no_agent_forwarding_flag || compat13) {
310 debug("Authentication agent forwarding not permitted for this authentication.");
311 break;
312 }
313 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000314 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000315 break;
316
317 case SSH_CMSG_PORT_FORWARD_REQUEST:
318 if (no_port_forwarding_flag) {
319 debug("Port forwarding not permitted for this authentication.");
320 break;
321 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100322 if (!options.allow_tcp_forwarding) {
323 debug("Port forwarding not permitted.");
324 break;
325 }
Damien Millerb38eff82000-04-01 11:09:21 +1000326 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000327 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000328 success = 1;
329 break;
330
331 case SSH_CMSG_MAX_PACKET_SIZE:
332 if (packet_set_maxsize(packet_get_int()) > 0)
333 success = 1;
334 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100335
Damien Millerb38eff82000-04-01 11:09:21 +1000336 case SSH_CMSG_EXEC_SHELL:
337 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000338 if (type == SSH_CMSG_EXEC_CMD) {
339 command = packet_get_string(&dlen);
340 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000341 do_exec(s, command);
342 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000343 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000344 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000345 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100346 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000347 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000348 return;
349
350 default:
351 /*
352 * Any unknown messages in this phase are ignored,
353 * and a failure message is returned.
354 */
Damien Miller996acd22003-04-09 20:59:48 +1000355 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000356 }
357 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
358 packet_send();
359 packet_write_wait();
360
361 /* Enable compression now that we have replied if appropriate. */
362 if (enable_compression_after_reply) {
363 enable_compression_after_reply = 0;
364 packet_start_compression(compression_level);
365 }
366 }
367}
368
369/*
370 * This is called to fork and execute a command when we have no tty. This
371 * will call do_child from the child, and server_loop from the parent after
372 * setting up file descriptors and such.
373 */
Damien Miller4af51302000-04-16 11:18:38 +1000374void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000375do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000376{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000377 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000378
379#ifdef USE_PIPES
380 int pin[2], pout[2], perr[2];
381 /* Allocate pipes for communicating with the program. */
382 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
383 packet_disconnect("Could not create pipes: %.100s",
384 strerror(errno));
385#else /* USE_PIPES */
386 int inout[2], err[2];
387 /* Uses socket pairs to communicate with the program. */
388 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
389 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
390 packet_disconnect("Could not create socket pairs: %.100s",
391 strerror(errno));
392#endif /* USE_PIPES */
393 if (s == NULL)
394 fatal("do_exec_no_pty: no session");
395
Damien Millere247cc42000-05-07 12:03:14 +1000396 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000397
Damien Millerc5946332001-02-28 11:46:11 +1100398#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100399 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000400 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000401#endif /* USE_PAM */
402
Damien Millerb38eff82000-04-01 11:09:21 +1000403 /* Fork the child. */
404 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000405 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000406
Damien Millerb38eff82000-04-01 11:09:21 +1000407 /* Child. Reinitialize the log since the pid has changed. */
408 log_init(__progname, options.log_level, options.log_facility, log_stderr);
409
410 /*
411 * Create a new session and process group since the 4.4BSD
412 * setlogin() affects the entire process group.
413 */
414 if (setsid() < 0)
415 error("setsid failed: %.100s", strerror(errno));
416
417#ifdef USE_PIPES
418 /*
419 * Redirect stdin. We close the parent side of the socket
420 * pair, and make the child side the standard input.
421 */
422 close(pin[1]);
423 if (dup2(pin[0], 0) < 0)
424 perror("dup2 stdin");
425 close(pin[0]);
426
427 /* Redirect stdout. */
428 close(pout[0]);
429 if (dup2(pout[1], 1) < 0)
430 perror("dup2 stdout");
431 close(pout[1]);
432
433 /* Redirect stderr. */
434 close(perr[0]);
435 if (dup2(perr[1], 2) < 0)
436 perror("dup2 stderr");
437 close(perr[1]);
438#else /* USE_PIPES */
439 /*
440 * Redirect stdin, stdout, and stderr. Stdin and stdout will
441 * use the same socket, as some programs (particularly rdist)
442 * seem to depend on it.
443 */
444 close(inout[1]);
445 close(err[1]);
446 if (dup2(inout[0], 0) < 0) /* stdin */
447 perror("dup2 stdin");
448 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
449 perror("dup2 stdout");
450 if (dup2(err[0], 2) < 0) /* stderr */
451 perror("dup2 stderr");
452#endif /* USE_PIPES */
453
Tim Rice81ed5182002-09-25 17:38:46 -0700454#ifdef _UNICOS
455 cray_init_job(s->pw); /* set up cray jid and tmpdir */
456#endif
457
Damien Millerb38eff82000-04-01 11:09:21 +1000458 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000459 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000460 /* NOTREACHED */
461 }
Tim Rice81ed5182002-09-25 17:38:46 -0700462#ifdef _UNICOS
463 signal(WJSIGNAL, cray_job_termination_handler);
464#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100465#ifdef HAVE_CYGWIN
466 if (is_winnt)
467 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
468#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000469 if (pid < 0)
470 packet_disconnect("fork failed: %.100s", strerror(errno));
471 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000472 /* Set interactive/non-interactive mode. */
473 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000474#ifdef USE_PIPES
475 /* We are the parent. Close the child sides of the pipes. */
476 close(pin[0]);
477 close(pout[1]);
478 close(perr[1]);
479
Damien Millerefb4afe2000-04-12 18:45:05 +1000480 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000481 if (s->is_subsystem) {
482 close(perr[0]);
483 perr[0] = -1;
484 }
485 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000486 } else {
487 /* Enter the interactive session. */
488 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000489 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000490 }
Damien Millerb38eff82000-04-01 11:09:21 +1000491#else /* USE_PIPES */
492 /* We are the parent. Close the child sides of the socket pairs. */
493 close(inout[0]);
494 close(err[0]);
495
496 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100497 * Clear loginmsg, since it's the child's responsibility to display
498 * it to the user, otherwise multiple sessions may accumulate
499 * multiple copies of the login messages.
500 */
501 buffer_clear(&loginmsg);
502
503 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000504 * Enter the interactive session. Note: server_loop must be able to
505 * handle the case that fdin and fdout are the same.
506 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000507 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000508 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000509 } else {
510 server_loop(pid, inout[1], inout[1], err[1]);
511 /* server_loop has closed inout[1] and err[1]. */
512 }
Damien Millerb38eff82000-04-01 11:09:21 +1000513#endif /* USE_PIPES */
514}
515
516/*
517 * This is called to fork and execute a command when we have a tty. This
518 * will call do_child from the child, and server_loop from the parent after
519 * setting up file descriptors, controlling tty, updating wtmp, utmp,
520 * lastlog, and other such operations.
521 */
Damien Miller4af51302000-04-16 11:18:38 +1000522void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000523do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000524{
Damien Millerb38eff82000-04-01 11:09:21 +1000525 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000526 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000527
528 if (s == NULL)
529 fatal("do_exec_pty: no session");
530 ptyfd = s->ptyfd;
531 ttyfd = s->ttyfd;
532
Damien Millerc5946332001-02-28 11:46:11 +1100533#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000534 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000535 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100536 if (!use_privsep)
537 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000538 }
Damien Miller5a761312001-02-27 09:28:23 +1100539#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000540
Damien Millerb38eff82000-04-01 11:09:21 +1000541 /* Fork the child. */
542 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000543 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000544
Damien Miller942da032000-08-18 13:59:06 +1000545 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000546 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000547 /* Close the master side of the pseudo tty. */
548 close(ptyfd);
549
550 /* Make the pseudo tty our controlling tty. */
551 pty_make_controlling_tty(&ttyfd, s->tty);
552
Damien Miller9c751422001-10-10 15:02:46 +1000553 /* Redirect stdin/stdout/stderr from the pseudo tty. */
554 if (dup2(ttyfd, 0) < 0)
555 error("dup2 stdin: %s", strerror(errno));
556 if (dup2(ttyfd, 1) < 0)
557 error("dup2 stdout: %s", strerror(errno));
558 if (dup2(ttyfd, 2) < 0)
559 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000560
561 /* Close the extra descriptor for the pseudo tty. */
562 close(ttyfd);
563
Damien Miller942da032000-08-18 13:59:06 +1000564 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000565#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700566 if (!(options.use_login && command == NULL)) {
567#ifdef _UNICOS
568 cray_init_job(s->pw); /* set up cray jid and tmpdir */
569#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100570 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700571 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000572# ifdef LOGIN_NEEDS_UTMPX
573 else
574 do_pre_login(s);
575# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000576#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000577
Damien Millerb38eff82000-04-01 11:09:21 +1000578 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000579 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000580 /* NOTREACHED */
581 }
Tim Rice81ed5182002-09-25 17:38:46 -0700582#ifdef _UNICOS
583 signal(WJSIGNAL, cray_job_termination_handler);
584#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100585#ifdef HAVE_CYGWIN
586 if (is_winnt)
587 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
588#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000589 if (pid < 0)
590 packet_disconnect("fork failed: %.100s", strerror(errno));
591 s->pid = pid;
592
593 /* Parent. Close the slave side of the pseudo tty. */
594 close(ttyfd);
595
596 /*
597 * Create another descriptor of the pty master side for use as the
598 * standard input. We could use the original descriptor, but this
599 * simplifies code in server_loop. The descriptor is bidirectional.
600 */
601 fdout = dup(ptyfd);
602 if (fdout < 0)
603 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
604
605 /* we keep a reference to the pty master */
606 ptymaster = dup(ptyfd);
607 if (ptymaster < 0)
608 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
609 s->ptymaster = ptymaster;
610
611 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000612 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000613 if (compat20) {
614 session_set_fds(s, ptyfd, fdout, -1);
615 } else {
616 server_loop(pid, ptyfd, fdout, -1);
617 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000618 }
Damien Millerb38eff82000-04-01 11:09:21 +1000619}
620
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000621#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000622static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000623do_pre_login(Session *s)
624{
625 socklen_t fromlen;
626 struct sockaddr_storage from;
627 pid_t pid = getpid();
628
629 /*
630 * Get IP address of client. If the connection is not a socket, let
631 * the address be 0.0.0.0.
632 */
633 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000634 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000635 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000636 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100637 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000638 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000639 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000640 }
641 }
642
643 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000644 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000645 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000646}
647#endif
648
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000649/*
650 * This is called to fork and execute a command. If another command is
651 * to be forced, execute that instead.
652 */
653void
654do_exec(Session *s, const char *command)
655{
656 if (forced_command) {
657 original_command = command;
658 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000659 debug("Forced command '%.900s'", command);
660 }
661
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100662#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100663 if (command != NULL)
664 PRIVSEP(audit_run_command(command));
665 else if (s->ttyfd == -1) {
666 char *shell = s->pw->pw_shell;
667
668 if (shell[0] == '\0') /* empty shell means /bin/sh */
669 shell =_PATH_BSHELL;
670 PRIVSEP(audit_run_command(shell));
671 }
672#endif
673
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000674 if (s->ttyfd != -1)
675 do_exec_pty(s, command);
676 else
677 do_exec_no_pty(s, command);
678
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000679 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000680
Darren Tucker09991742004-07-17 17:05:14 +1000681 /*
682 * Clear loginmsg: it's the child's responsibility to display
683 * it to the user, otherwise multiple sessions may accumulate
684 * multiple copies of the login messages.
685 */
686 buffer_clear(&loginmsg);
687}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000688
Damien Miller942da032000-08-18 13:59:06 +1000689/* administrative, login(1)-like work */
690void
Damien Miller69b69aa2000-10-28 14:19:58 +1100691do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000692{
Damien Miller942da032000-08-18 13:59:06 +1000693 socklen_t fromlen;
694 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000695 struct passwd * pw = s->pw;
696 pid_t pid = getpid();
697
698 /*
699 * Get IP address of client. If the connection is not a socket, let
700 * the address be 0.0.0.0.
701 */
702 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000703 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000704 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000705 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000706 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000707 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000708 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000709 }
710 }
711
712 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000713 if (!use_privsep)
714 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
715 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000716 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000717 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000718
Kevin Steves092f2ef2000-10-14 13:36:13 +0000719#ifdef USE_PAM
720 /*
721 * If password change is needed, do it now.
722 * This needs to occur before the ~/.hushlogin check.
723 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100724 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
725 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000726 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100727 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000728 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000729 }
730#endif
731
Damien Millercf205e82001-04-16 18:29:15 +1000732 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000733 return;
734
Darren Tucker1921ed92004-02-10 13:23:28 +1100735 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000736
Damien Millercf205e82001-04-16 18:29:15 +1000737 do_motd();
738}
739
740/*
741 * Display the message of the day.
742 */
743void
744do_motd(void)
745{
746 FILE *f;
747 char buf[256];
748
Damien Miller942da032000-08-18 13:59:06 +1000749 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000750#ifdef HAVE_LOGIN_CAP
751 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
752 "/etc/motd"), "r");
753#else
Damien Miller942da032000-08-18 13:59:06 +1000754 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000755#endif
Damien Miller942da032000-08-18 13:59:06 +1000756 if (f) {
757 while (fgets(buf, sizeof(buf), f))
758 fputs(buf, stdout);
759 fclose(f);
760 }
761 }
762}
763
Kevin Steves8f63caa2001-07-04 18:23:02 +0000764
765/*
766 * Check for quiet login, either .hushlogin or command given.
767 */
768int
769check_quietlogin(Session *s, const char *command)
770{
771 char buf[256];
772 struct passwd *pw = s->pw;
773 struct stat st;
774
775 /* Return 1 if .hushlogin exists or a command given. */
776 if (command != NULL)
777 return 1;
778 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
779#ifdef HAVE_LOGIN_CAP
780 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
781 return 1;
782#else
783 if (stat(buf, &st) >= 0)
784 return 1;
785#endif
786 return 0;
787}
788
Damien Millerb38eff82000-04-01 11:09:21 +1000789/*
790 * Sets the value of the given variable in the environment. If the variable
791 * already exists, its value is overriden.
792 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000793void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000794child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100795 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000796{
Damien Millerb38eff82000-04-01 11:09:21 +1000797 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000798 u_int envsize;
799 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000800
801 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000802 * If we're passed an uninitialized list, allocate a single null
803 * entry before continuing.
804 */
805 if (*envp == NULL && *envsizep == 0) {
806 *envp = xmalloc(sizeof(char *));
807 *envp[0] = NULL;
808 *envsizep = 1;
809 }
810
811 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000812 * Find the slot where the value should be stored. If the variable
813 * already exists, we reuse the slot; otherwise we append a new slot
814 * at the end of the array, expanding if necessary.
815 */
816 env = *envp;
817 namelen = strlen(name);
818 for (i = 0; env[i]; i++)
819 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
820 break;
821 if (env[i]) {
822 /* Reuse the slot. */
823 xfree(env[i]);
824 } else {
825 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000826 envsize = *envsizep;
827 if (i >= envsize - 1) {
828 if (envsize >= 1000)
829 fatal("child_set_env: too many env vars");
830 envsize += 50;
831 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
832 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000833 }
834 /* Need to set the NULL pointer at end of array beyond the new slot. */
835 env[i + 1] = NULL;
836 }
837
838 /* Allocate space and format the variable in the appropriate slot. */
839 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
840 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
841}
842
843/*
844 * Reads environment variables from the given file and adds/overrides them
845 * into the environment. If the file does not exist, this does nothing.
846 * Otherwise, it must consist of empty lines, comments (line starts with '#')
847 * and assignments of the form name=value. No other forms are allowed.
848 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000850read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100851 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000852{
853 FILE *f;
854 char buf[4096];
855 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000856 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000857
858 f = fopen(filename, "r");
859 if (!f)
860 return;
861
862 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000863 if (++lineno > 1000)
864 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000865 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
866 ;
867 if (!*cp || *cp == '#' || *cp == '\n')
868 continue;
869 if (strchr(cp, '\n'))
870 *strchr(cp, '\n') = '\0';
871 value = strchr(cp, '=');
872 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000873 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
874 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000875 continue;
876 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000877 /*
878 * Replace the equals sign by nul, and advance value to
879 * the value string.
880 */
Damien Millerb38eff82000-04-01 11:09:21 +1000881 *value = '\0';
882 value++;
883 child_set_env(env, envsize, cp, value);
884 }
885 fclose(f);
886}
887
Darren Tuckere1a790d2003-09-16 11:52:19 +1000888#ifdef HAVE_ETC_DEFAULT_LOGIN
889/*
890 * Return named variable from specified environment, or NULL if not present.
891 */
892static char *
893child_get_env(char **env, const char *name)
894{
895 int i;
896 size_t len;
897
898 len = strlen(name);
899 for (i=0; env[i] != NULL; i++)
900 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
901 return(env[i] + len + 1);
902 return NULL;
903}
904
905/*
906 * Read /etc/default/login.
907 * We pick up the PATH (or SUPATH for root) and UMASK.
908 */
909static void
910read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
911{
912 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000913 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000914 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000915
916 /*
917 * We don't want to copy the whole file to the child's environment,
918 * so we use a temporary environment and copy the variables we're
919 * interested in.
920 */
921 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
922
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000923 if (tmpenv == NULL)
924 return;
925
Darren Tuckere1a790d2003-09-16 11:52:19 +1000926 if (uid == 0)
927 var = child_get_env(tmpenv, "SUPATH");
928 else
929 var = child_get_env(tmpenv, "PATH");
930 if (var != NULL)
931 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100932
Darren Tuckere1a790d2003-09-16 11:52:19 +1000933 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
934 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000935 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100936
Darren Tuckere1a790d2003-09-16 11:52:19 +1000937 for (i = 0; tmpenv[i] != NULL; i++)
938 xfree(tmpenv[i]);
939 xfree(tmpenv);
940}
941#endif /* HAVE_ETC_DEFAULT_LOGIN */
942
Damien Miller7dff8692005-05-26 11:34:51 +1000943void
944copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000945{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100946 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000947 int i;
948
Damien Millerbb9ffc12002-01-08 10:59:32 +1100949 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000950 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000951
Damien Millerbb9ffc12002-01-08 10:59:32 +1100952 for(i = 0; source[i] != NULL; i++) {
953 var_name = xstrdup(source[i]);
954 if ((var_val = strstr(var_name, "=")) == NULL) {
955 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000956 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000957 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100958 *var_val++ = '\0';
959
960 debug3("Copy environment: %s=%s", var_name, var_val);
961 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100962
Damien Millerbb9ffc12002-01-08 10:59:32 +1100963 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000964 }
965}
Damien Millercb5e44a2000-09-29 12:12:36 +1100966
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000967static char **
968do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000969{
Damien Millerb38eff82000-04-01 11:09:21 +1000970 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000971 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000972 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000973 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000974
Damien Millerb38eff82000-04-01 11:09:21 +1000975 /* Initialize the environment. */
976 envsize = 100;
977 env = xmalloc(envsize * sizeof(char *));
978 env[0] = NULL;
979
Damien Millerbac2d8a2000-09-05 16:13:06 +1100980#ifdef HAVE_CYGWIN
981 /*
982 * The Windows environment contains some setting which are
983 * important for a running system. They must not be dropped.
984 */
Darren Tucker14c372d2004-08-30 20:42:08 +1000985 {
986 char **p;
987
988 p = fetch_windows_environment();
989 copy_environment(p, &env, &envsize);
990 free_windows_environment(p);
991 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100992#endif
993
Darren Tucker0efd1552003-08-26 11:49:55 +1000994#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100995 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +1000996 * the childs environment as they see fit
997 */
998 ssh_gssapi_do_child(&env, &envsize);
999#endif
1000
Damien Millerb38eff82000-04-01 11:09:21 +10001001 if (!options.use_login) {
1002 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001003 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001004 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001005 s->env[i].val);
1006
Damien Millerb38eff82000-04-01 11:09:21 +10001007 child_set_env(&env, &envsize, "USER", pw->pw_name);
1008 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001009#ifdef _AIX
1010 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1011#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001012 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001013#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001014 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1015 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1016 else
1017 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001018#else /* HAVE_LOGIN_CAP */
1019# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001020 /*
1021 * There's no standard path on Windows. The path contains
1022 * important components pointing to the system directories,
1023 * needed for loading shared libraries. So the path better
1024 * remains intact here.
1025 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001026# ifdef HAVE_ETC_DEFAULT_LOGIN
1027 read_etc_default_login(&env, &envsize, pw->pw_uid);
1028 path = child_get_env(env, "PATH");
1029# endif /* HAVE_ETC_DEFAULT_LOGIN */
1030 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001031 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001032 s->pw->pw_uid == 0 ?
1033 SUPERUSER_PATH : _PATH_STDPATH);
1034 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001035# endif /* HAVE_CYGWIN */
1036#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001037
1038 snprintf(buf, sizeof buf, "%.200s/%.50s",
1039 _PATH_MAILDIR, pw->pw_name);
1040 child_set_env(&env, &envsize, "MAIL", buf);
1041
1042 /* Normal systems set SHELL by default. */
1043 child_set_env(&env, &envsize, "SHELL", shell);
1044 }
1045 if (getenv("TZ"))
1046 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1047
1048 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001049 if (!options.use_login) {
1050 while (custom_environment) {
1051 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001052 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001053
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001054 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001055 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001056 if (str[i] == '=') {
1057 str[i] = 0;
1058 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001059 }
1060 custom_environment = ce->next;
1061 xfree(ce->s);
1062 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001063 }
Damien Millerb38eff82000-04-01 11:09:21 +10001064 }
1065
Damien Millerf37e2462002-09-19 11:47:55 +10001066 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001067 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001068 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001069 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1070
Damien Miller00111382003-03-10 11:21:17 +11001071 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001072 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001073 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1074 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001075 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1076
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001077 if (s->ttyfd != -1)
1078 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1079 if (s->term)
1080 child_set_env(&env, &envsize, "TERM", s->term);
1081 if (s->display)
1082 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001083 if (original_command)
1084 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1085 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001086
Tim Rice81ed5182002-09-25 17:38:46 -07001087#ifdef _UNICOS
1088 if (cray_tmpdir[0] != '\0')
1089 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1090#endif /* _UNICOS */
1091
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001092 /*
1093 * Since we clear KRB5CCNAME at startup, if it's set now then it
1094 * must have been set by a native authentication method (eg AIX or
1095 * SIA), so copy it to the child.
1096 */
1097 {
1098 char *cp;
1099
1100 if ((cp = getenv("KRB5CCNAME")) != NULL)
1101 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1102 }
1103
Damien Millerb38eff82000-04-01 11:09:21 +10001104#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001105 {
1106 char *cp;
1107
1108 if ((cp = getenv("AUTHSTATE")) != NULL)
1109 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001110 read_environment_file(&env, &envsize, "/etc/environment");
1111 }
Damien Millerb38eff82000-04-01 11:09:21 +10001112#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001113#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001114 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001115 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001116 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001117#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001118#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001119 /*
1120 * Pull in any environment variables that may have
1121 * been set by PAM.
1122 */
Damien Miller4e448a32003-05-14 15:11:48 +10001123 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001124 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001125
Damien Millerc756e9b2003-11-17 21:41:42 +11001126 p = fetch_pam_child_environment();
1127 copy_environment(p, &env, &envsize);
1128 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001129
Damien Millerc756e9b2003-11-17 21:41:42 +11001130 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001131 copy_environment(p, &env, &envsize);
1132 free_pam_environment(p);
1133 }
Damien Millerb38eff82000-04-01 11:09:21 +10001134#endif /* USE_PAM */
1135
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001136 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001137 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001138 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001139
1140 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001141 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001142 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001143 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001144 read_environment_file(&env, &envsize, buf);
1145 }
1146 if (debug_flag) {
1147 /* dump the environment */
1148 fprintf(stderr, "Environment:\n");
1149 for (i = 0; env[i]; i++)
1150 fprintf(stderr, " %.200s\n", env[i]);
1151 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001152 return env;
1153}
1154
1155/*
1156 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1157 * first in this order).
1158 */
1159static void
1160do_rc_files(Session *s, const char *shell)
1161{
1162 FILE *f = NULL;
1163 char cmd[1024];
1164 int do_xauth;
1165 struct stat st;
1166
1167 do_xauth =
1168 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1169
1170 /* ignore _PATH_SSH_USER_RC for subsystems */
1171 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1172 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1173 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1174 if (debug_flag)
1175 fprintf(stderr, "Running %s\n", cmd);
1176 f = popen(cmd, "w");
1177 if (f) {
1178 if (do_xauth)
1179 fprintf(f, "%s %s\n", s->auth_proto,
1180 s->auth_data);
1181 pclose(f);
1182 } else
1183 fprintf(stderr, "Could not run %s\n",
1184 _PATH_SSH_USER_RC);
1185 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1186 if (debug_flag)
1187 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1188 _PATH_SSH_SYSTEM_RC);
1189 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1190 if (f) {
1191 if (do_xauth)
1192 fprintf(f, "%s %s\n", s->auth_proto,
1193 s->auth_data);
1194 pclose(f);
1195 } else
1196 fprintf(stderr, "Could not run %s\n",
1197 _PATH_SSH_SYSTEM_RC);
1198 } else if (do_xauth && options.xauth_location != NULL) {
1199 /* Add authority data to .Xauthority if appropriate. */
1200 if (debug_flag) {
1201 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001202 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001203 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001204 fprintf(stderr,
1205 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001206 options.xauth_location, s->auth_display,
1207 s->auth_proto, s->auth_data);
1208 }
1209 snprintf(cmd, sizeof cmd, "%s -q -",
1210 options.xauth_location);
1211 f = popen(cmd, "w");
1212 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001213 fprintf(f, "remove %s\n",
1214 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001215 fprintf(f, "add %s %s %s\n",
1216 s->auth_display, s->auth_proto,
1217 s->auth_data);
1218 pclose(f);
1219 } else {
1220 fprintf(stderr, "Could not run %s\n",
1221 cmd);
1222 }
1223 }
1224}
1225
1226static void
1227do_nologin(struct passwd *pw)
1228{
1229 FILE *f = NULL;
1230 char buf[1024];
1231
1232#ifdef HAVE_LOGIN_CAP
1233 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1234 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1235 _PATH_NOLOGIN), "r");
1236#else
1237 if (pw->pw_uid)
1238 f = fopen(_PATH_NOLOGIN, "r");
1239#endif
1240 if (f) {
1241 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001242 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001243 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001244 while (fgets(buf, sizeof(buf), f))
1245 fputs(buf, stderr);
1246 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001247 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001248 exit(254);
1249 }
1250}
1251
1252/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001253void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001254do_setusercontext(struct passwd *pw)
1255{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001256#ifndef HAVE_CYGWIN
1257 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001258#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001259 {
1260
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001261#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001262 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1263 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001264#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001265#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001266# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001267 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001268# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001269#ifdef GSSAPI
1270 if (options.gss_authentication) {
1271 temporarily_use_uid(pw);
1272 ssh_gssapi_storecreds();
1273 restore_uid();
1274 }
1275#endif
Damien Millerd3526362004-01-23 14:16:26 +11001276# ifdef USE_PAM
1277 if (options.use_pam) {
1278 do_pam_session();
1279 do_pam_setcred(0);
1280 }
1281# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001282 if (setusercontext(lc, pw, pw->pw_uid,
1283 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1284 perror("unable to set user context");
1285 exit(1);
1286 }
1287#else
1288# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1289 /* Sets login uid for accounting */
1290 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1291 error("setluid: %s", strerror(errno));
1292# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1293
1294 if (setlogin(pw->pw_name) < 0)
1295 error("setlogin failed: %s", strerror(errno));
1296 if (setgid(pw->pw_gid) < 0) {
1297 perror("setgid");
1298 exit(1);
1299 }
1300 /* Initialize the group list. */
1301 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1302 perror("initgroups");
1303 exit(1);
1304 }
1305 endgrent();
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001306#ifdef GSSAPI
1307 if (options.gss_authentication) {
1308 temporarily_use_uid(pw);
1309 ssh_gssapi_storecreds();
1310 restore_uid();
1311 }
1312#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001313# ifdef USE_PAM
1314 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001315 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001316 * These will have been wiped by the above initgroups() call.
1317 * Reestablish them here.
1318 */
Damien Miller341c6e62003-09-02 23:18:52 +10001319 if (options.use_pam) {
1320 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001321 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001322 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001323# endif /* USE_PAM */
1324# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1325 irix_setusercontext(pw);
1326# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001327# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001328 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001329# endif /* _AIX */
Tim Rice66fd2172005-08-31 09:59:49 -07001330#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -07001331 if (set_id(pw->pw_name) != 0) {
1332 exit(1);
1333 }
Tim Rice66fd2172005-08-31 09:59:49 -07001334#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001335 /* Permanently switch to the desired uid. */
1336 permanently_set_uid(pw);
1337#endif
1338 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001339
1340#ifdef HAVE_CYGWIN
1341 if (is_winnt)
1342#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001343 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1344 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1345}
1346
Ben Lindstrom08105192002-03-22 02:50:06 +00001347static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001348do_pwchange(Session *s)
1349{
Darren Tucker09991742004-07-17 17:05:14 +10001350 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001351 fprintf(stderr, "WARNING: Your password has expired.\n");
1352 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001353 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001354 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001355#ifdef PASSWD_NEEDS_USERNAME
1356 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1357 (char *)NULL);
1358#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001359 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001360#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001361 perror("passwd");
1362 } else {
1363 fprintf(stderr,
1364 "Password change required but no TTY available.\n");
1365 }
1366 exit(1);
1367}
1368
1369static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001370launch_login(struct passwd *pw, const char *hostname)
1371{
1372 /* Launch login(1). */
1373
Ben Lindstrom378a4172002-06-07 14:49:56 +00001374 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001375#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001376 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001378#ifdef LOGIN_NO_ENDOPT
1379 "-p", "-f", pw->pw_name, (char *)NULL);
1380#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001381 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001382#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001383
1384 /* Login couldn't be executed, die. */
1385
1386 perror("login");
1387 exit(1);
1388}
1389
Darren Tucker23bc8d02004-02-06 16:24:31 +11001390static void
1391child_close_fds(void)
1392{
1393 int i;
1394
1395 if (packet_get_connection_in() == packet_get_connection_out())
1396 close(packet_get_connection_in());
1397 else {
1398 close(packet_get_connection_in());
1399 close(packet_get_connection_out());
1400 }
1401 /*
1402 * Close all descriptors related to channels. They will still remain
1403 * open in the parent.
1404 */
1405 /* XXX better use close-on-exec? -markus */
1406 channel_close_all();
1407
1408 /*
1409 * Close any extra file descriptors. Note that there may still be
1410 * descriptors left by system functions. They will be closed later.
1411 */
1412 endpwent();
1413
1414 /*
Damien Miller788f2122005-11-05 15:14:59 +11001415 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001416 * hanging around in clients. Note that we want to do this after
1417 * initgroups, because at least on Solaris 2.3 it leaves file
1418 * descriptors open.
1419 */
1420 for (i = 3; i < 64; i++)
1421 close(i);
1422}
1423
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001424/*
1425 * Performs common processing for the child, such as setting up the
1426 * environment, closing extra file descriptors, setting the user and group
1427 * ids, and executing the command or shell.
1428 */
1429void
1430do_child(Session *s, const char *command)
1431{
1432 extern char **environ;
1433 char **env;
1434 char *argv[10];
1435 const char *shell, *shell0, *hostname = NULL;
1436 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001437
1438 /* remove hostkey from the child's memory */
1439 destroy_sensitive_data();
1440
Darren Tucker23bc8d02004-02-06 16:24:31 +11001441 /* Force a password change */
1442 if (s->authctxt->force_pwchange) {
1443 do_setusercontext(pw);
1444 child_close_fds();
1445 do_pwchange(s);
1446 exit(1);
1447 }
1448
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001449 /* login(1) is only called if we execute the login shell */
1450 if (options.use_login && command != NULL)
1451 options.use_login = 0;
1452
Tim Rice81ed5182002-09-25 17:38:46 -07001453#ifdef _UNICOS
1454 cray_setup(pw->pw_uid, pw->pw_name, command);
1455#endif /* _UNICOS */
1456
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001457 /*
1458 * Login(1) does this as well, and it needs uid 0 for the "-h"
1459 * switch, so we let login(1) to this for us.
1460 */
1461 if (!options.use_login) {
1462#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001463 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001464 if (!check_quietlogin(s, command))
1465 do_motd();
1466#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001467 /* When PAM is enabled we rely on it to do the nologin check */
1468 if (!options.use_pam)
1469 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001470 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001471 /*
1472 * PAM session modules in do_setusercontext may have
1473 * generated messages, so if this in an interactive
1474 * login then display them too.
1475 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001476 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001477 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001478#endif /* HAVE_OSF_SIA */
1479 }
1480
Darren Tucker69687f42004-09-11 22:17:26 +10001481#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001482 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1483 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001484 display_loginmsg();
1485 exit(254);
1486 }
1487#endif
1488
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001489 /*
1490 * Get the shell from the password data. An empty shell field is
1491 * legal, and means /bin/sh.
1492 */
1493 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001494
1495 /*
1496 * Make sure $SHELL points to the shell from the password file,
1497 * even if shell is overridden from login.conf
1498 */
1499 env = do_setup_env(s, shell);
1500
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001501#ifdef HAVE_LOGIN_CAP
1502 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1503#endif
1504
Damien Millerad833b32000-08-23 10:46:23 +10001505 /* we have to stash the hostname before we close our socket. */
1506 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001507 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001508 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001509 /*
1510 * Close the connection descriptors; note that this is the child, and
1511 * the server will still have the socket open, and it is important
1512 * that we do not shutdown it. Note that the descriptors cannot be
1513 * closed before building the environment, as we call
1514 * get_remote_ipaddr there.
1515 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001516 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001517
Damien Millerb38eff82000-04-01 11:09:21 +10001518 /*
Damien Miller05eda432002-02-10 18:32:28 +11001519 * Must take new environment into use so that .ssh/rc,
1520 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001521 */
1522 environ = env;
1523
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001524#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001525 /*
1526 * At this point, we check to see if AFS is active and if we have
1527 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1528 * if we can (and need to) extend the ticket into an AFS token. If
1529 * we don't do this, we run into potential problems if the user's
1530 * home directory is in AFS and it's not world-readable.
1531 */
1532
1533 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001534 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001535 char cell[64];
1536
1537 debug("Getting AFS token");
1538
1539 k_setpag();
1540
1541 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1542 krb5_afslog(s->authctxt->krb5_ctx,
1543 s->authctxt->krb5_fwd_ccache, cell, NULL);
1544
1545 krb5_afslog_home(s->authctxt->krb5_ctx,
1546 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1547 }
1548#endif
1549
Damien Miller788f2122005-11-05 15:14:59 +11001550 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001551 if (chdir(pw->pw_dir) < 0) {
1552 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1553 pw->pw_dir, strerror(errno));
1554#ifdef HAVE_LOGIN_CAP
1555 if (login_getcapbool(lc, "requirehome", 0))
1556 exit(1);
1557#endif
1558 }
1559
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001560 if (!options.use_login)
1561 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001562
1563 /* restore SIGPIPE for child */
1564 signal(SIGPIPE, SIG_DFL);
1565
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001566 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001567 launch_login(pw, hostname);
1568 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001569 }
1570
1571 /* Get the last component of the shell name. */
1572 if ((shell0 = strrchr(shell, '/')) != NULL)
1573 shell0++;
1574 else
1575 shell0 = shell;
1576
Damien Millerb38eff82000-04-01 11:09:21 +10001577 /*
1578 * If we have no command, execute the shell. In this case, the shell
1579 * name to be passed in argv[0] is preceded by '-' to indicate that
1580 * this is a login shell.
1581 */
1582 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001583 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001584
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001585 /* Start the shell. Set initial character to '-'. */
1586 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001587
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001588 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1589 >= sizeof(argv0) - 1) {
1590 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001591 perror(shell);
1592 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001593 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001594
1595 /* Execute the shell. */
1596 argv[0] = argv0;
1597 argv[1] = NULL;
1598 execve(shell, argv, env);
1599
1600 /* Executing the shell failed. */
1601 perror(shell);
1602 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001603 }
1604 /*
1605 * Execute the command using the user's shell. This uses the -c
1606 * option to execute the command.
1607 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001608 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001609 argv[1] = "-c";
1610 argv[2] = (char *) command;
1611 argv[3] = NULL;
1612 execve(shell, argv, env);
1613 perror(shell);
1614 exit(1);
1615}
1616
1617Session *
1618session_new(void)
1619{
1620 int i;
1621 static int did_init = 0;
1622 if (!did_init) {
1623 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001624 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001625 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001626 }
1627 did_init = 1;
1628 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001629 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001630 Session *s = &sessions[i];
1631 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001632 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001633 s->chanid = -1;
1634 s->ptyfd = -1;
1635 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001636 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001637 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001638 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001639 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001640 return s;
1641 }
1642 }
1643 return NULL;
1644}
1645
Ben Lindstrombba81212001-06-25 05:01:22 +00001646static void
Damien Millerb38eff82000-04-01 11:09:21 +10001647session_dump(void)
1648{
1649 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001650 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001651 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001652 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001653 s->used,
1654 s->self,
1655 s,
1656 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001657 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001658 }
1659}
1660
Damien Millerefb4afe2000-04-12 18:45:05 +10001661int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001662session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001663{
1664 Session *s = session_new();
1665 debug("session_open: channel %d", chanid);
1666 if (s == NULL) {
1667 error("no more sessions");
1668 return 0;
1669 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001670 s->authctxt = authctxt;
1671 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001672 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001673 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001674 debug("session_open: session %d: link with channel %d", s->self, chanid);
1675 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001676 return 1;
1677}
1678
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001679Session *
1680session_by_tty(char *tty)
1681{
1682 int i;
1683 for (i = 0; i < MAX_SESSIONS; i++) {
1684 Session *s = &sessions[i];
1685 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1686 debug("session_by_tty: session %d tty %s", i, tty);
1687 return s;
1688 }
1689 }
1690 debug("session_by_tty: unknown tty %.100s", tty);
1691 session_dump();
1692 return NULL;
1693}
1694
Ben Lindstrombba81212001-06-25 05:01:22 +00001695static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001696session_by_channel(int id)
1697{
1698 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001699 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001700 Session *s = &sessions[i];
1701 if (s->used && s->chanid == id) {
1702 debug("session_by_channel: session %d channel %d", i, id);
1703 return s;
1704 }
1705 }
1706 debug("session_by_channel: unknown channel %d", id);
1707 session_dump();
1708 return NULL;
1709}
1710
Ben Lindstrombba81212001-06-25 05:01:22 +00001711static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001712session_by_x11_channel(int id)
1713{
1714 int i, j;
1715
1716 for (i = 0; i < MAX_SESSIONS; i++) {
1717 Session *s = &sessions[i];
1718
1719 if (s->x11_chanids == NULL || !s->used)
1720 continue;
1721 for (j = 0; s->x11_chanids[j] != -1; j++) {
1722 if (s->x11_chanids[j] == id) {
1723 debug("session_by_x11_channel: session %d "
1724 "channel %d", s->self, id);
1725 return s;
1726 }
1727 }
1728 }
1729 debug("session_by_x11_channel: unknown channel %d", id);
1730 session_dump();
1731 return NULL;
1732}
1733
1734static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001735session_by_pid(pid_t pid)
1736{
1737 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001738 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001739 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001740 Session *s = &sessions[i];
1741 if (s->used && s->pid == pid)
1742 return s;
1743 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001744 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001745 session_dump();
1746 return NULL;
1747}
1748
Ben Lindstrombba81212001-06-25 05:01:22 +00001749static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001750session_window_change_req(Session *s)
1751{
1752 s->col = packet_get_int();
1753 s->row = packet_get_int();
1754 s->xpixel = packet_get_int();
1755 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001756 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001757 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1758 return 1;
1759}
1760
Ben Lindstrombba81212001-06-25 05:01:22 +00001761static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001762session_pty_req(Session *s)
1763{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001764 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001765 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001766
Ben Lindstrom49c12602001-06-13 04:37:36 +00001767 if (no_pty_flag) {
1768 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001769 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001770 }
1771 if (s->ttyfd != -1) {
1772 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001773 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001774 }
1775
Damien Millerefb4afe2000-04-12 18:45:05 +10001776 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001777
1778 if (compat20) {
1779 s->col = packet_get_int();
1780 s->row = packet_get_int();
1781 } else {
1782 s->row = packet_get_int();
1783 s->col = packet_get_int();
1784 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001785 s->xpixel = packet_get_int();
1786 s->ypixel = packet_get_int();
1787
1788 if (strcmp(s->term, "") == 0) {
1789 xfree(s->term);
1790 s->term = NULL;
1791 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001792
Damien Millerefb4afe2000-04-12 18:45:05 +10001793 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001794 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001795 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001796 if (s->term)
1797 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001798 s->term = NULL;
1799 s->ptyfd = -1;
1800 s->ttyfd = -1;
1801 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001802 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001803 }
1804 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001805
1806 /* for SSH1 the tty modes length is not given */
1807 if (!compat20)
1808 n_bytes = packet_remaining();
1809 tty_parse_modes(s->ttyfd, &n_bytes);
1810
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001811 if (!use_privsep)
1812 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001813
1814 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001815 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1816
Damien Miller48b03fc2002-01-22 23:11:40 +11001817 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001818 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001819 return 1;
1820}
1821
Ben Lindstrombba81212001-06-25 05:01:22 +00001822static int
Damien Millerbd483e72000-04-30 10:00:53 +10001823session_subsystem_req(Session *s)
1824{
Damien Millerae452462001-10-10 15:08:06 +10001825 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001826 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001827 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001828 char *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001829 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001830
Damien Miller48b03fc2002-01-22 23:11:40 +11001831 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001832 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001833
Damien Millerf6d9e222000-06-18 14:50:44 +10001834 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001835 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1836 cmd = options.subsystem_command[i];
1837 if (stat(cmd, &st) < 0) {
1838 error("subsystem: cannot stat %s: %s", cmd,
1839 strerror(errno));
1840 break;
1841 }
1842 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001843 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001844 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001845 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001846 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001847 }
1848 }
1849
1850 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001851 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001852 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001853
Damien Millerbd483e72000-04-30 10:00:53 +10001854 xfree(subsys);
1855 return success;
1856}
1857
Ben Lindstrombba81212001-06-25 05:01:22 +00001858static int
Damien Millerbd483e72000-04-30 10:00:53 +10001859session_x11_req(Session *s)
1860{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001861 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001862
Damien Miller2b9b0452005-07-17 17:19:24 +10001863 if (s->auth_proto != NULL || s->auth_data != NULL) {
1864 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11001865 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10001866 return 0;
1867 }
Damien Millerbd483e72000-04-30 10:00:53 +10001868 s->single_connection = packet_get_char();
1869 s->auth_proto = packet_get_string(NULL);
1870 s->auth_data = packet_get_string(NULL);
1871 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001872 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001873
Ben Lindstrom768176b2001-06-09 01:29:12 +00001874 success = session_setup_x11fwd(s);
1875 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001876 xfree(s->auth_proto);
1877 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001878 s->auth_proto = NULL;
1879 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001880 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001881 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001882}
1883
Ben Lindstrombba81212001-06-25 05:01:22 +00001884static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001885session_shell_req(Session *s)
1886{
Damien Miller48b03fc2002-01-22 23:11:40 +11001887 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001888 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001889 return 1;
1890}
1891
Ben Lindstrombba81212001-06-25 05:01:22 +00001892static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001893session_exec_req(Session *s)
1894{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001895 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001896 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001897 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001898 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001899 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001900 return 1;
1901}
1902
Ben Lindstrombba81212001-06-25 05:01:22 +00001903static int
Damien Miller54c45982003-05-15 10:20:13 +10001904session_break_req(Session *s)
1905{
Damien Miller54c45982003-05-15 10:20:13 +10001906
Darren Tucker1f8311c2004-05-13 16:39:33 +10001907 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001908 packet_check_eom();
1909
Darren Tucker3bdbd842003-08-13 20:31:05 +10001910 if (s->ttyfd == -1 ||
1911 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001912 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001913 return 1;
1914}
1915
1916static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001917session_env_req(Session *s)
1918{
1919 char *name, *val;
1920 u_int name_len, val_len, i;
1921
1922 name = packet_get_string(&name_len);
1923 val = packet_get_string(&val_len);
1924 packet_check_eom();
1925
1926 /* Don't set too many environment variables */
1927 if (s->num_env > 128) {
1928 debug2("Ignoring env request %s: too many env vars", name);
1929 goto fail;
1930 }
1931
1932 for (i = 0; i < options.num_accept_env; i++) {
1933 if (match_pattern(name, options.accept_env[i])) {
1934 debug2("Setting env %d: %s=%s", s->num_env, name, val);
1935 s->env = xrealloc(s->env, sizeof(*s->env) *
1936 (s->num_env + 1));
1937 s->env[s->num_env].name = name;
1938 s->env[s->num_env].val = val;
1939 s->num_env++;
1940 return (1);
1941 }
1942 }
1943 debug2("Ignoring env request %s: disallowed name", name);
1944
1945 fail:
1946 xfree(name);
1947 xfree(val);
1948 return (0);
1949}
1950
1951static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001952session_auth_agent_req(Session *s)
1953{
1954 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001955 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001956 if (no_agent_forwarding_flag) {
1957 debug("session_auth_agent_req: no_agent_forwarding_flag");
1958 return 0;
1959 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001960 if (called) {
1961 return 0;
1962 } else {
1963 called = 1;
1964 return auth_input_request_forwarding(s->pw);
1965 }
1966}
1967
Damien Millerc7ef63d2002-02-05 12:21:42 +11001968int
1969session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001970{
Damien Millerefb4afe2000-04-12 18:45:05 +10001971 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001972 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001973
Damien Millerc7ef63d2002-02-05 12:21:42 +11001974 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001975 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001976 c->self, rtype);
1977 return 0;
1978 }
1979 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001980
1981 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001982 * a session is in LARVAL state until a shell, a command
1983 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001984 */
1985 if (c->type == SSH_CHANNEL_LARVAL) {
1986 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001987 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001988 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001989 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001990 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001991 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001992 } else if (strcmp(rtype, "x11-req") == 0) {
1993 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001994 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1995 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001996 } else if (strcmp(rtype, "subsystem") == 0) {
1997 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10001998 } else if (strcmp(rtype, "env") == 0) {
1999 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002000 }
2001 }
2002 if (strcmp(rtype, "window-change") == 0) {
2003 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002004 } else if (strcmp(rtype, "break") == 0) {
2005 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002006 }
Damien Millera6b1d162004-06-30 22:41:07 +10002007
Damien Millerc7ef63d2002-02-05 12:21:42 +11002008 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002009}
2010
2011void
2012session_set_fds(Session *s, int fdin, int fdout, int fderr)
2013{
2014 if (!compat20)
2015 fatal("session_set_fds: called for proto != 2.0");
2016 /*
2017 * now that have a child and a pipe to the child,
2018 * we can activate our channel and register the fd's
2019 */
2020 if (s->chanid == -1)
2021 fatal("no channel for session %d", s->self);
2022 channel_set_fds(s->chanid,
2023 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002024 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002025 1,
2026 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002027}
2028
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002029/*
2030 * Function to perform pty cleanup. Also called if we get aborted abnormally
2031 * (e.g., due to a dropped connection).
2032 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002033void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002034session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002035{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002036 if (s == NULL) {
2037 error("session_pty_cleanup: no session");
2038 return;
2039 }
2040 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002041 return;
2042
Kevin Steves43cdef32001-02-11 14:12:08 +00002043 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002044
Damien Millerb38eff82000-04-01 11:09:21 +10002045 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002046 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002047 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002048
2049 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002050 if (getuid() == 0)
2051 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002052
2053 /*
2054 * Close the server side of the socket pairs. We must do this after
2055 * the pty cleanup, so that another process doesn't get this pty
2056 * while we're still cleaning up.
2057 */
2058 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002059 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002060
2061 /* unlink pty from session */
2062 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002063}
Damien Millerefb4afe2000-04-12 18:45:05 +10002064
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002065void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002066session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002067{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002068 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002069}
2070
Damien Miller5a80bba2002-09-04 16:39:02 +10002071static char *
2072sig2name(int sig)
2073{
2074#define SSH_SIG(x) if (sig == SIG ## x) return #x
2075 SSH_SIG(ABRT);
2076 SSH_SIG(ALRM);
2077 SSH_SIG(FPE);
2078 SSH_SIG(HUP);
2079 SSH_SIG(ILL);
2080 SSH_SIG(INT);
2081 SSH_SIG(KILL);
2082 SSH_SIG(PIPE);
2083 SSH_SIG(QUIT);
2084 SSH_SIG(SEGV);
2085 SSH_SIG(TERM);
2086 SSH_SIG(USR1);
2087 SSH_SIG(USR2);
2088#undef SSH_SIG
2089 return "SIG@openssh.com";
2090}
2091
Ben Lindstrombba81212001-06-25 05:01:22 +00002092static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002093session_close_x11(int id)
2094{
2095 Channel *c;
2096
Damien Millerd47c62a2005-12-13 19:33:57 +11002097 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002098 debug("session_close_x11: x11 channel %d missing", id);
2099 } else {
2100 /* Detach X11 listener */
2101 debug("session_close_x11: detach x11 channel %d", id);
2102 channel_cancel_cleanup(id);
2103 if (c->ostate != CHAN_OUTPUT_CLOSED)
2104 chan_mark_dead(c);
2105 }
2106}
2107
2108static void
2109session_close_single_x11(int id, void *arg)
2110{
2111 Session *s;
2112 u_int i;
2113
2114 debug3("session_close_single_x11: channel %d", id);
2115 channel_cancel_cleanup(id);
2116 if ((s = session_by_x11_channel(id)) == NULL)
2117 fatal("session_close_single_x11: no x11 channel %d", id);
2118 for (i = 0; s->x11_chanids[i] != -1; i++) {
2119 debug("session_close_single_x11: session %d: "
2120 "closing channel %d", s->self, s->x11_chanids[i]);
2121 /*
2122 * The channel "id" is already closing, but make sure we
2123 * close all of its siblings.
2124 */
2125 if (s->x11_chanids[i] != id)
2126 session_close_x11(s->x11_chanids[i]);
2127 }
2128 xfree(s->x11_chanids);
2129 s->x11_chanids = NULL;
2130 if (s->display) {
2131 xfree(s->display);
2132 s->display = NULL;
2133 }
2134 if (s->auth_proto) {
2135 xfree(s->auth_proto);
2136 s->auth_proto = NULL;
2137 }
2138 if (s->auth_data) {
2139 xfree(s->auth_data);
2140 s->auth_data = NULL;
2141 }
2142 if (s->auth_display) {
2143 xfree(s->auth_display);
2144 s->auth_display = NULL;
2145 }
2146}
2147
2148static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002149session_exit_message(Session *s, int status)
2150{
2151 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002152
2153 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002154 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002155 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002156 debug("session_exit_message: session %d channel %d pid %ld",
2157 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002158
2159 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002160 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002161 packet_put_int(WEXITSTATUS(status));
2162 packet_send();
2163 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002164 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002165 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002166#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002167 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002168#else /* WCOREDUMP */
2169 packet_put_char(0);
2170#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002171 packet_put_cstring("");
2172 packet_put_cstring("");
2173 packet_send();
2174 } else {
2175 /* Some weird exit cause. Just exit. */
2176 packet_disconnect("wait returned status %04x.", status);
2177 }
2178
2179 /* disconnect channel */
2180 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002181
2182 /*
2183 * Adjust cleanup callback attachment to send close messages when
2184 * the channel gets EOF. The session will be then be closed
2185 * by session_close_by_channel when the childs close their fds.
2186 */
2187 channel_register_cleanup(c->self, session_close_by_channel, 1);
2188
Damien Miller166fca82000-04-20 07:42:21 +10002189 /*
2190 * emulate a write failure with 'chan_write_failed', nobody will be
2191 * interested in data we write.
2192 * Note that we must not call 'chan_read_failed', since there could
2193 * be some more data waiting in the pipe.
2194 */
Damien Millerbd483e72000-04-30 10:00:53 +10002195 if (c->ostate != CHAN_OUTPUT_CLOSED)
2196 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002197}
2198
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002199void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002200session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002201{
Damien Millereccb9de2005-06-17 12:59:34 +10002202 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002203
Ben Lindstromce0f6342002-06-11 16:42:49 +00002204 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002205 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002206 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002207 if (s->term)
2208 xfree(s->term);
2209 if (s->display)
2210 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002211 if (s->x11_chanids)
2212 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002213 if (s->auth_display)
2214 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002215 if (s->auth_data)
2216 xfree(s->auth_data);
2217 if (s->auth_proto)
2218 xfree(s->auth_proto);
2219 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002220 for (i = 0; i < s->num_env; i++) {
2221 xfree(s->env[i].name);
2222 xfree(s->env[i].val);
2223 }
2224 if (s->env != NULL)
2225 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002226 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002227}
2228
2229void
2230session_close_by_pid(pid_t pid, int status)
2231{
2232 Session *s = session_by_pid(pid);
2233 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002234 debug("session_close_by_pid: no session for pid %ld",
2235 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002236 return;
2237 }
2238 if (s->chanid != -1)
2239 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002240 if (s->ttyfd != -1)
2241 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002242 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002243}
2244
2245/*
2246 * this is called when a channel dies before
2247 * the session 'child' itself dies
2248 */
2249void
2250session_close_by_channel(int id, void *arg)
2251{
2252 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002253 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002254
Damien Millerefb4afe2000-04-12 18:45:05 +10002255 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002256 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002257 return;
2258 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002259 debug("session_close_by_channel: channel %d child %ld",
2260 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002261 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002262 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002263 /*
2264 * delay detach of session, but release pty, since
2265 * the fd's to the child are already closed
2266 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002267 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002268 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002269 return;
2270 }
2271 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002272 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002273
2274 /* Close any X11 listeners associated with this session */
2275 if (s->x11_chanids != NULL) {
2276 for (i = 0; s->x11_chanids[i] != -1; i++) {
2277 session_close_x11(s->x11_chanids[i]);
2278 s->x11_chanids[i] = -1;
2279 }
2280 }
2281
Damien Millerefb4afe2000-04-12 18:45:05 +10002282 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002283 session_close(s);
2284}
2285
2286void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002287session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002288{
2289 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002290 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002291 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002292 if (s->used) {
2293 if (closefunc != NULL)
2294 closefunc(s);
2295 else
2296 session_close(s);
2297 }
Damien Miller52b77be2001-10-10 15:14:37 +10002298 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002299}
2300
Ben Lindstrombba81212001-06-25 05:01:22 +00002301static char *
Damien Millere247cc42000-05-07 12:03:14 +10002302session_tty_list(void)
2303{
2304 static char buf[1024];
2305 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002306 char *cp;
2307
Damien Millere247cc42000-05-07 12:03:14 +10002308 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002309 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002310 Session *s = &sessions[i];
2311 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002312
Damien Millera8ed44b2003-01-10 09:53:12 +11002313 if (strncmp(s->tty, "/dev/", 5) != 0) {
2314 cp = strrchr(s->tty, '/');
2315 cp = (cp == NULL) ? s->tty : cp + 1;
2316 } else
2317 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002318
Damien Millere247cc42000-05-07 12:03:14 +10002319 if (buf[0] != '\0')
2320 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002321 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002322 }
2323 }
2324 if (buf[0] == '\0')
2325 strlcpy(buf, "notty", sizeof buf);
2326 return buf;
2327}
2328
2329void
2330session_proctitle(Session *s)
2331{
2332 if (s->pw == NULL)
2333 error("no user for session %d", s->self);
2334 else
2335 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2336}
2337
Ben Lindstrom768176b2001-06-09 01:29:12 +00002338int
2339session_setup_x11fwd(Session *s)
2340{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002341 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002342 char display[512], auth_display[512];
2343 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002344 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002345
2346 if (no_x11_forwarding_flag) {
2347 packet_send_debug("X11 forwarding disabled in user configuration file.");
2348 return 0;
2349 }
2350 if (!options.x11_forwarding) {
2351 debug("X11 forwarding disabled in server configuration file.");
2352 return 0;
2353 }
2354 if (!options.xauth_location ||
2355 (stat(options.xauth_location, &st) == -1)) {
2356 packet_send_debug("No xauth program; cannot forward with spoofing.");
2357 return 0;
2358 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002359 if (options.use_login) {
2360 packet_send_debug("X11 forwarding disabled; "
2361 "not compatible with UseLogin=yes.");
2362 return 0;
2363 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002364 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002365 debug("X11 display already set.");
2366 return 0;
2367 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002368 if (x11_create_display_inet(options.x11_display_offset,
2369 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002370 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002371 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002372 return 0;
2373 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002374 for (i = 0; s->x11_chanids[i] != -1; i++) {
2375 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002376 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002377 }
Kevin Steves366298c2001-12-19 17:58:01 +00002378
2379 /* Set up a suitable value for the DISPLAY variable. */
2380 if (gethostname(hostname, sizeof(hostname)) < 0)
2381 fatal("gethostname: %.100s", strerror(errno));
2382 /*
2383 * auth_display must be used as the displayname when the
2384 * authorization entry is added with xauth(1). This will be
2385 * different than the DISPLAY string for localhost displays.
2386 */
Damien Miller95c249f2002-02-05 12:11:34 +11002387 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002388 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002389 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002390 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002391 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002392 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002393 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002394 } else {
2395#ifdef IPADDR_IN_DISPLAY
2396 struct hostent *he;
2397 struct in_addr my_addr;
2398
2399 he = gethostbyname(hostname);
2400 if (he == NULL) {
2401 error("Can't get IP address for X11 DISPLAY.");
2402 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2403 return 0;
2404 }
2405 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002406 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002407 s->display_number, s->screen);
2408#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002409 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002410 s->display_number, s->screen);
2411#endif
2412 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002413 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002414 }
2415
Ben Lindstrom768176b2001-06-09 01:29:12 +00002416 return 1;
2417}
2418
Ben Lindstrombba81212001-06-25 05:01:22 +00002419static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002420do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002421{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002422 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002423}
2424
2425void
2426do_cleanup(Authctxt *authctxt)
2427{
2428 static int called = 0;
2429
2430 debug("do_cleanup");
2431
2432 /* no cleanup if we're in the child for login shell */
2433 if (is_child)
2434 return;
2435
2436 /* avoid double cleanup */
2437 if (called)
2438 return;
2439 called = 1;
2440
2441 if (authctxt == NULL)
2442 return;
2443#ifdef KRB5
2444 if (options.kerberos_ticket_cleanup &&
2445 authctxt->krb5_ctx)
2446 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002447#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002448
2449#ifdef GSSAPI
2450 if (compat20 && options.gss_cleanup_creds)
2451 ssh_gssapi_cleanup_creds();
2452#endif
2453
Darren Tucker8846a072003-10-07 11:30:15 +10002454#ifdef USE_PAM
2455 if (options.use_pam) {
2456 sshpam_cleanup();
2457 sshpam_thread_cleanup();
2458 }
2459#endif
2460
Darren Tucker3e33cec2003-10-02 16:12:36 +10002461 /* remove agent socket */
2462 auth_sock_cleanup_proc(authctxt->pw);
2463
2464 /*
2465 * Cleanup ptys/utmp only if privsep is disabled,
2466 * or if running in monitor.
2467 */
2468 if (!use_privsep || mm_is_monitor())
2469 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002470}