blob: b71a2c71a883866b745447b660f855655e469328 [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 Miller9cf6d072006-03-15 11:29:24 +110036
37#include <sys/types.h>
Damien Millerf17883e2006-03-15 11:45:54 +110038#ifdef HAVE_SYS_STAT_H
39# include <sys/stat.h>
40#endif
Damien Miller9cf6d072006-03-15 11:29:24 +110041#include <sys/wait.h>
Damien Miller574c41f2006-03-15 11:40:10 +110042#include <sys/un.h>
Damien Miller03e20032006-03-15 11:16:59 +110043
Damien Miller6645e7a2006-03-15 14:42:54 +110044#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110045#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110046#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110047#include <signal.h>
Damien Millerb38eff82000-04-01 11:09:21 +100048
Damien Millerb38eff82000-04-01 11:09:21 +100049#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "ssh1.h"
51#include "ssh2.h"
52#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000053#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100054#include "packet.h"
55#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100056#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100057#include "uidswap.h"
58#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000059#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100060#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100061#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100062#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "pathnames.h"
64#include "log.h"
65#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000066#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "serverloop.h"
68#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000069#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100070#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100072
Darren Tucker3c78c5e2004-01-23 22:03:10 +110073#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110074#include <kafs.h>
75#endif
76
Darren Tucker0efd1552003-08-26 11:49:55 +100077#ifdef GSSAPI
78#include "ssh-gss.h"
79#endif
80
Damien Millerb38eff82000-04-01 11:09:21 +100081/* func */
82
83Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000084void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100085void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000086void session_proctitle(Session *);
87int session_setup_x11fwd(Session *);
88void do_exec_pty(Session *, const char *);
89void do_exec_no_pty(Session *, const char *);
90void do_exec(Session *, const char *);
91void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000092#ifdef LOGIN_NEEDS_UTMPX
93static void do_pre_login(Session *s);
94#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000095void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100096void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000097int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100098
Ben Lindstrombba81212001-06-25 05:01:22 +000099static void do_authenticated1(Authctxt *);
100static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000101
Ben Lindstrombba81212001-06-25 05:01:22 +0000102static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000103
Damien Millerb38eff82000-04-01 11:09:21 +1000104/* import */
105extern ServerOptions options;
106extern char *__progname;
107extern int log_stderr;
108extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000109extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000110extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000111extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000112extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000113
Damien Miller7b28dc52000-09-05 13:34:53 +1100114/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000115const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100116
Damien Millerb38eff82000-04-01 11:09:21 +1000117/* data */
118#define MAX_SESSIONS 10
119Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100120
Damien Millerad833b32000-08-23 10:46:23 +1000121#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000122login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000123#endif
124
Darren Tucker3e33cec2003-10-02 16:12:36 +1000125static int is_child = 0;
126
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000127/* Name and directory of socket for authentication agent forwarding. */
128static char *auth_sock_name = NULL;
129static char *auth_sock_dir = NULL;
130
131/* removes the agent forwarding socket */
132
133static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000134auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000135{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000136 if (auth_sock_name != NULL) {
137 temporarily_use_uid(pw);
138 unlink(auth_sock_name);
139 rmdir(auth_sock_dir);
140 auth_sock_name = NULL;
141 restore_uid();
142 }
143}
144
145static int
146auth_input_request_forwarding(struct passwd * pw)
147{
148 Channel *nc;
149 int sock;
150 struct sockaddr_un sunaddr;
151
152 if (auth_sock_name != NULL) {
153 error("authentication forwarding requested twice.");
154 return 0;
155 }
156
157 /* Temporarily drop privileged uid for mkdir/bind. */
158 temporarily_use_uid(pw);
159
160 /* Allocate a buffer for the socket name, and format the name. */
161 auth_sock_name = xmalloc(MAXPATHLEN);
162 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000163 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000164
165 /* Create private directory for socket */
166 if (mkdtemp(auth_sock_dir) == NULL) {
167 packet_send_debug("Agent forwarding disabled: "
168 "mkdtemp() failed: %.100s", strerror(errno));
169 restore_uid();
170 xfree(auth_sock_name);
171 xfree(auth_sock_dir);
172 auth_sock_name = NULL;
173 auth_sock_dir = NULL;
174 return 0;
175 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000176 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
177 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000178
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000179 /* Create the socket. */
180 sock = socket(AF_UNIX, SOCK_STREAM, 0);
181 if (sock < 0)
182 packet_disconnect("socket: %.100s", strerror(errno));
183
184 /* Bind it to the name. */
185 memset(&sunaddr, 0, sizeof(sunaddr));
186 sunaddr.sun_family = AF_UNIX;
187 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
188
189 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
190 packet_disconnect("bind: %.100s", strerror(errno));
191
192 /* Restore the privileged uid. */
193 restore_uid();
194
195 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100196 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197 packet_disconnect("listen: %.100s", strerror(errno));
198
199 /* Allocate a channel for the authentication agent socket. */
200 nc = channel_new("auth socket",
201 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
202 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000203 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
205 return 1;
206}
207
Darren Tucker1921ed92004-02-10 13:23:28 +1100208static void
209display_loginmsg(void)
210{
Damien Miller46d38de2005-07-17 17:02:09 +1000211 if (buffer_len(&loginmsg) > 0) {
212 buffer_append(&loginmsg, "\0", 1);
213 printf("%s", (char *)buffer_ptr(&loginmsg));
214 buffer_clear(&loginmsg);
215 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100216}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000217
Ben Lindstromb31783d2001-03-22 02:02:12 +0000218void
219do_authenticated(Authctxt *authctxt)
220{
Damien Miller97f39ae2003-02-24 11:57:01 +1100221 setproctitle("%s", authctxt->pw->pw_name);
222
Ben Lindstromb31783d2001-03-22 02:02:12 +0000223 /* setup the channel layer */
224 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
225 channel_permit_all_opens();
226
227 if (compat20)
228 do_authenticated2(authctxt);
229 else
230 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000231
Darren Tucker3e33cec2003-10-02 16:12:36 +1000232 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000233}
234
Damien Millerb38eff82000-04-01 11:09:21 +1000235/*
Damien Millerb38eff82000-04-01 11:09:21 +1000236 * Prepares for an interactive session. This is called after the user has
237 * been successfully authenticated. During this message exchange, pseudo
238 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
239 * are requested, etc.
240 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000241static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000242do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000243{
244 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000245 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100246 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000247 int enable_compression_after_reply = 0;
248 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000249
250 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100251 if (s == NULL) {
252 error("no more sessions");
253 return;
254 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000255 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000256 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000257
Damien Millerb38eff82000-04-01 11:09:21 +1000258 /*
259 * We stay in this loop until the client requests to execute a shell
260 * or a command.
261 */
262 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000263 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000264
265 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100266 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000267
268 /* Process the packet. */
269 switch (type) {
270 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000271 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100272 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000273 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000274 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100275 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000276 break;
277 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000278 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000279 debug2("compression disabled");
280 break;
281 }
Damien Millerb38eff82000-04-01 11:09:21 +1000282 /* Enable compression after we have responded with SUCCESS. */
283 enable_compression_after_reply = 1;
284 success = 1;
285 break;
286
287 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000288 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000289 break;
290
291 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000292 s->auth_proto = packet_get_string(&proto_len);
293 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000294
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000295 screen_flag = packet_get_protocol_flags() &
296 SSH_PROTOFLAG_SCREEN_NUMBER;
297 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
298
299 if (packet_remaining() == 4) {
300 if (!screen_flag)
301 debug2("Buggy client: "
302 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000303 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000304 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000305 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000306 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100307 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000308 success = session_setup_x11fwd(s);
309 if (!success) {
310 xfree(s->auth_proto);
311 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000312 s->auth_proto = NULL;
313 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000314 }
Damien Millerb38eff82000-04-01 11:09:21 +1000315 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000316
317 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
318 if (no_agent_forwarding_flag || compat13) {
319 debug("Authentication agent forwarding not permitted for this authentication.");
320 break;
321 }
322 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000323 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000324 break;
325
326 case SSH_CMSG_PORT_FORWARD_REQUEST:
327 if (no_port_forwarding_flag) {
328 debug("Port forwarding not permitted for this authentication.");
329 break;
330 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100331 if (!options.allow_tcp_forwarding) {
332 debug("Port forwarding not permitted.");
333 break;
334 }
Damien Millerb38eff82000-04-01 11:09:21 +1000335 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000336 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000337 success = 1;
338 break;
339
340 case SSH_CMSG_MAX_PACKET_SIZE:
341 if (packet_set_maxsize(packet_get_int()) > 0)
342 success = 1;
343 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100344
Damien Millerb38eff82000-04-01 11:09:21 +1000345 case SSH_CMSG_EXEC_SHELL:
346 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000347 if (type == SSH_CMSG_EXEC_CMD) {
348 command = packet_get_string(&dlen);
349 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000350 do_exec(s, command);
351 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000352 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000353 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000354 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100355 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000356 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000357 return;
358
359 default:
360 /*
361 * Any unknown messages in this phase are ignored,
362 * and a failure message is returned.
363 */
Damien Miller996acd22003-04-09 20:59:48 +1000364 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000365 }
366 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
367 packet_send();
368 packet_write_wait();
369
370 /* Enable compression now that we have replied if appropriate. */
371 if (enable_compression_after_reply) {
372 enable_compression_after_reply = 0;
373 packet_start_compression(compression_level);
374 }
375 }
376}
377
378/*
379 * This is called to fork and execute a command when we have no tty. This
380 * will call do_child from the child, and server_loop from the parent after
381 * setting up file descriptors and such.
382 */
Damien Miller4af51302000-04-16 11:18:38 +1000383void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000384do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000385{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000386 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000387
388#ifdef USE_PIPES
389 int pin[2], pout[2], perr[2];
390 /* Allocate pipes for communicating with the program. */
391 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
392 packet_disconnect("Could not create pipes: %.100s",
393 strerror(errno));
394#else /* USE_PIPES */
395 int inout[2], err[2];
396 /* Uses socket pairs to communicate with the program. */
397 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
398 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
399 packet_disconnect("Could not create socket pairs: %.100s",
400 strerror(errno));
401#endif /* USE_PIPES */
402 if (s == NULL)
403 fatal("do_exec_no_pty: no session");
404
Damien Millere247cc42000-05-07 12:03:14 +1000405 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000406
Damien Millerc5946332001-02-28 11:46:11 +1100407#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100408 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000409 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000410#endif /* USE_PAM */
411
Damien Millerb38eff82000-04-01 11:09:21 +1000412 /* Fork the child. */
413 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000414 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000415
Damien Millerb38eff82000-04-01 11:09:21 +1000416 /* Child. Reinitialize the log since the pid has changed. */
417 log_init(__progname, options.log_level, options.log_facility, log_stderr);
418
419 /*
420 * Create a new session and process group since the 4.4BSD
421 * setlogin() affects the entire process group.
422 */
423 if (setsid() < 0)
424 error("setsid failed: %.100s", strerror(errno));
425
426#ifdef USE_PIPES
427 /*
428 * Redirect stdin. We close the parent side of the socket
429 * pair, and make the child side the standard input.
430 */
431 close(pin[1]);
432 if (dup2(pin[0], 0) < 0)
433 perror("dup2 stdin");
434 close(pin[0]);
435
436 /* Redirect stdout. */
437 close(pout[0]);
438 if (dup2(pout[1], 1) < 0)
439 perror("dup2 stdout");
440 close(pout[1]);
441
442 /* Redirect stderr. */
443 close(perr[0]);
444 if (dup2(perr[1], 2) < 0)
445 perror("dup2 stderr");
446 close(perr[1]);
447#else /* USE_PIPES */
448 /*
449 * Redirect stdin, stdout, and stderr. Stdin and stdout will
450 * use the same socket, as some programs (particularly rdist)
451 * seem to depend on it.
452 */
453 close(inout[1]);
454 close(err[1]);
455 if (dup2(inout[0], 0) < 0) /* stdin */
456 perror("dup2 stdin");
457 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
458 perror("dup2 stdout");
459 if (dup2(err[0], 2) < 0) /* stderr */
460 perror("dup2 stderr");
461#endif /* USE_PIPES */
462
Tim Rice81ed5182002-09-25 17:38:46 -0700463#ifdef _UNICOS
464 cray_init_job(s->pw); /* set up cray jid and tmpdir */
465#endif
466
Damien Millerb38eff82000-04-01 11:09:21 +1000467 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000468 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000469 /* NOTREACHED */
470 }
Tim Rice81ed5182002-09-25 17:38:46 -0700471#ifdef _UNICOS
472 signal(WJSIGNAL, cray_job_termination_handler);
473#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100474#ifdef HAVE_CYGWIN
475 if (is_winnt)
476 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
477#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000478 if (pid < 0)
479 packet_disconnect("fork failed: %.100s", strerror(errno));
480 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000481 /* Set interactive/non-interactive mode. */
482 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000483#ifdef USE_PIPES
484 /* We are the parent. Close the child sides of the pipes. */
485 close(pin[0]);
486 close(pout[1]);
487 close(perr[1]);
488
Damien Millerefb4afe2000-04-12 18:45:05 +1000489 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000490 if (s->is_subsystem) {
491 close(perr[0]);
492 perr[0] = -1;
493 }
494 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000495 } else {
496 /* Enter the interactive session. */
497 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000498 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000499 }
Damien Millerb38eff82000-04-01 11:09:21 +1000500#else /* USE_PIPES */
501 /* We are the parent. Close the child sides of the socket pairs. */
502 close(inout[0]);
503 close(err[0]);
504
505 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100506 * Clear loginmsg, since it's the child's responsibility to display
507 * it to the user, otherwise multiple sessions may accumulate
508 * multiple copies of the login messages.
509 */
510 buffer_clear(&loginmsg);
511
512 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000513 * Enter the interactive session. Note: server_loop must be able to
514 * handle the case that fdin and fdout are the same.
515 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000516 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000517 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000518 } else {
519 server_loop(pid, inout[1], inout[1], err[1]);
520 /* server_loop has closed inout[1] and err[1]. */
521 }
Damien Millerb38eff82000-04-01 11:09:21 +1000522#endif /* USE_PIPES */
523}
524
525/*
526 * This is called to fork and execute a command when we have a tty. This
527 * will call do_child from the child, and server_loop from the parent after
528 * setting up file descriptors, controlling tty, updating wtmp, utmp,
529 * lastlog, and other such operations.
530 */
Damien Miller4af51302000-04-16 11:18:38 +1000531void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000532do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000533{
Damien Millerb38eff82000-04-01 11:09:21 +1000534 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000535 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000536
537 if (s == NULL)
538 fatal("do_exec_pty: no session");
539 ptyfd = s->ptyfd;
540 ttyfd = s->ttyfd;
541
Damien Millerc5946332001-02-28 11:46:11 +1100542#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000543 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000544 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100545 if (!use_privsep)
546 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000547 }
Damien Miller5a761312001-02-27 09:28:23 +1100548#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000549
Damien Millerb38eff82000-04-01 11:09:21 +1000550 /* Fork the child. */
551 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000552 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000553
Damien Miller942da032000-08-18 13:59:06 +1000554 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000555 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000556 /* Close the master side of the pseudo tty. */
557 close(ptyfd);
558
559 /* Make the pseudo tty our controlling tty. */
560 pty_make_controlling_tty(&ttyfd, s->tty);
561
Damien Miller9c751422001-10-10 15:02:46 +1000562 /* Redirect stdin/stdout/stderr from the pseudo tty. */
563 if (dup2(ttyfd, 0) < 0)
564 error("dup2 stdin: %s", strerror(errno));
565 if (dup2(ttyfd, 1) < 0)
566 error("dup2 stdout: %s", strerror(errno));
567 if (dup2(ttyfd, 2) < 0)
568 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000569
570 /* Close the extra descriptor for the pseudo tty. */
571 close(ttyfd);
572
Damien Miller942da032000-08-18 13:59:06 +1000573 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000574#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700575 if (!(options.use_login && command == NULL)) {
576#ifdef _UNICOS
577 cray_init_job(s->pw); /* set up cray jid and tmpdir */
578#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100579 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700580 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000581# ifdef LOGIN_NEEDS_UTMPX
582 else
583 do_pre_login(s);
584# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000585#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000586
Damien Millerb38eff82000-04-01 11:09:21 +1000587 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000588 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000589 /* NOTREACHED */
590 }
Tim Rice81ed5182002-09-25 17:38:46 -0700591#ifdef _UNICOS
592 signal(WJSIGNAL, cray_job_termination_handler);
593#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100594#ifdef HAVE_CYGWIN
595 if (is_winnt)
596 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
597#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000598 if (pid < 0)
599 packet_disconnect("fork failed: %.100s", strerror(errno));
600 s->pid = pid;
601
602 /* Parent. Close the slave side of the pseudo tty. */
603 close(ttyfd);
604
605 /*
606 * Create another descriptor of the pty master side for use as the
607 * standard input. We could use the original descriptor, but this
608 * simplifies code in server_loop. The descriptor is bidirectional.
609 */
610 fdout = dup(ptyfd);
611 if (fdout < 0)
612 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
613
614 /* we keep a reference to the pty master */
615 ptymaster = dup(ptyfd);
616 if (ptymaster < 0)
617 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
618 s->ptymaster = ptymaster;
619
620 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000621 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000622 if (compat20) {
623 session_set_fds(s, ptyfd, fdout, -1);
624 } else {
625 server_loop(pid, ptyfd, fdout, -1);
626 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000627 }
Damien Millerb38eff82000-04-01 11:09:21 +1000628}
629
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000630#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000631static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000632do_pre_login(Session *s)
633{
634 socklen_t fromlen;
635 struct sockaddr_storage from;
636 pid_t pid = getpid();
637
638 /*
639 * Get IP address of client. If the connection is not a socket, let
640 * the address be 0.0.0.0.
641 */
642 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000643 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000644 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000645 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100646 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000647 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000648 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000649 }
650 }
651
652 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000653 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000654 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000655}
656#endif
657
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000658/*
659 * This is called to fork and execute a command. If another command is
660 * to be forced, execute that instead.
661 */
662void
663do_exec(Session *s, const char *command)
664{
665 if (forced_command) {
666 original_command = command;
667 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000668 debug("Forced command '%.900s'", command);
669 }
670
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100671#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100672 if (command != NULL)
673 PRIVSEP(audit_run_command(command));
674 else if (s->ttyfd == -1) {
675 char *shell = s->pw->pw_shell;
676
677 if (shell[0] == '\0') /* empty shell means /bin/sh */
678 shell =_PATH_BSHELL;
679 PRIVSEP(audit_run_command(shell));
680 }
681#endif
682
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000683 if (s->ttyfd != -1)
684 do_exec_pty(s, command);
685 else
686 do_exec_no_pty(s, command);
687
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000688 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000689
Darren Tucker09991742004-07-17 17:05:14 +1000690 /*
691 * Clear loginmsg: it's the child's responsibility to display
692 * it to the user, otherwise multiple sessions may accumulate
693 * multiple copies of the login messages.
694 */
695 buffer_clear(&loginmsg);
696}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000697
Damien Miller942da032000-08-18 13:59:06 +1000698/* administrative, login(1)-like work */
699void
Damien Miller69b69aa2000-10-28 14:19:58 +1100700do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000701{
Damien Miller942da032000-08-18 13:59:06 +1000702 socklen_t fromlen;
703 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000704 struct passwd * pw = s->pw;
705 pid_t pid = getpid();
706
707 /*
708 * Get IP address of client. If the connection is not a socket, let
709 * the address be 0.0.0.0.
710 */
711 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000712 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000713 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000714 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000715 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000716 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000717 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000718 }
719 }
720
721 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000722 if (!use_privsep)
723 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
724 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000725 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000726 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000727
Kevin Steves092f2ef2000-10-14 13:36:13 +0000728#ifdef USE_PAM
729 /*
730 * If password change is needed, do it now.
731 * This needs to occur before the ~/.hushlogin check.
732 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100733 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
734 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000735 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100736 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000737 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000738 }
739#endif
740
Damien Millercf205e82001-04-16 18:29:15 +1000741 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000742 return;
743
Darren Tucker1921ed92004-02-10 13:23:28 +1100744 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000745
Damien Millercf205e82001-04-16 18:29:15 +1000746 do_motd();
747}
748
749/*
750 * Display the message of the day.
751 */
752void
753do_motd(void)
754{
755 FILE *f;
756 char buf[256];
757
Damien Miller942da032000-08-18 13:59:06 +1000758 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000759#ifdef HAVE_LOGIN_CAP
760 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
761 "/etc/motd"), "r");
762#else
Damien Miller942da032000-08-18 13:59:06 +1000763 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000764#endif
Damien Miller942da032000-08-18 13:59:06 +1000765 if (f) {
766 while (fgets(buf, sizeof(buf), f))
767 fputs(buf, stdout);
768 fclose(f);
769 }
770 }
771}
772
Kevin Steves8f63caa2001-07-04 18:23:02 +0000773
774/*
775 * Check for quiet login, either .hushlogin or command given.
776 */
777int
778check_quietlogin(Session *s, const char *command)
779{
780 char buf[256];
781 struct passwd *pw = s->pw;
782 struct stat st;
783
784 /* Return 1 if .hushlogin exists or a command given. */
785 if (command != NULL)
786 return 1;
787 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
788#ifdef HAVE_LOGIN_CAP
789 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
790 return 1;
791#else
792 if (stat(buf, &st) >= 0)
793 return 1;
794#endif
795 return 0;
796}
797
Damien Millerb38eff82000-04-01 11:09:21 +1000798/*
799 * Sets the value of the given variable in the environment. If the variable
800 * already exists, its value is overriden.
801 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000802void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000803child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100804 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000805{
Damien Millerb38eff82000-04-01 11:09:21 +1000806 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000807 u_int envsize;
808 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000809
810 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000811 * If we're passed an uninitialized list, allocate a single null
812 * entry before continuing.
813 */
814 if (*envp == NULL && *envsizep == 0) {
815 *envp = xmalloc(sizeof(char *));
816 *envp[0] = NULL;
817 *envsizep = 1;
818 }
819
820 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000821 * Find the slot where the value should be stored. If the variable
822 * already exists, we reuse the slot; otherwise we append a new slot
823 * at the end of the array, expanding if necessary.
824 */
825 env = *envp;
826 namelen = strlen(name);
827 for (i = 0; env[i]; i++)
828 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
829 break;
830 if (env[i]) {
831 /* Reuse the slot. */
832 xfree(env[i]);
833 } else {
834 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000835 envsize = *envsizep;
836 if (i >= envsize - 1) {
837 if (envsize >= 1000)
838 fatal("child_set_env: too many env vars");
839 envsize += 50;
840 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
841 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000842 }
843 /* Need to set the NULL pointer at end of array beyond the new slot. */
844 env[i + 1] = NULL;
845 }
846
847 /* Allocate space and format the variable in the appropriate slot. */
848 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
849 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
850}
851
852/*
853 * Reads environment variables from the given file and adds/overrides them
854 * into the environment. If the file does not exist, this does nothing.
855 * Otherwise, it must consist of empty lines, comments (line starts with '#')
856 * and assignments of the form name=value. No other forms are allowed.
857 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000858static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000859read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100860 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000861{
862 FILE *f;
863 char buf[4096];
864 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000865 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000866
867 f = fopen(filename, "r");
868 if (!f)
869 return;
870
871 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000872 if (++lineno > 1000)
873 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000874 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
875 ;
876 if (!*cp || *cp == '#' || *cp == '\n')
877 continue;
878 if (strchr(cp, '\n'))
879 *strchr(cp, '\n') = '\0';
880 value = strchr(cp, '=');
881 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000882 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
883 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000884 continue;
885 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000886 /*
887 * Replace the equals sign by nul, and advance value to
888 * the value string.
889 */
Damien Millerb38eff82000-04-01 11:09:21 +1000890 *value = '\0';
891 value++;
892 child_set_env(env, envsize, cp, value);
893 }
894 fclose(f);
895}
896
Darren Tuckere1a790d2003-09-16 11:52:19 +1000897#ifdef HAVE_ETC_DEFAULT_LOGIN
898/*
899 * Return named variable from specified environment, or NULL if not present.
900 */
901static char *
902child_get_env(char **env, const char *name)
903{
904 int i;
905 size_t len;
906
907 len = strlen(name);
908 for (i=0; env[i] != NULL; i++)
909 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
910 return(env[i] + len + 1);
911 return NULL;
912}
913
914/*
915 * Read /etc/default/login.
916 * We pick up the PATH (or SUPATH for root) and UMASK.
917 */
918static void
919read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
920{
921 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000922 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000923 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000924
925 /*
926 * We don't want to copy the whole file to the child's environment,
927 * so we use a temporary environment and copy the variables we're
928 * interested in.
929 */
930 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
931
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000932 if (tmpenv == NULL)
933 return;
934
Darren Tuckere1a790d2003-09-16 11:52:19 +1000935 if (uid == 0)
936 var = child_get_env(tmpenv, "SUPATH");
937 else
938 var = child_get_env(tmpenv, "PATH");
939 if (var != NULL)
940 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100941
Darren Tuckere1a790d2003-09-16 11:52:19 +1000942 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
943 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000944 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100945
Darren Tuckere1a790d2003-09-16 11:52:19 +1000946 for (i = 0; tmpenv[i] != NULL; i++)
947 xfree(tmpenv[i]);
948 xfree(tmpenv);
949}
950#endif /* HAVE_ETC_DEFAULT_LOGIN */
951
Damien Miller7dff8692005-05-26 11:34:51 +1000952void
953copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000954{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100955 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000956 int i;
957
Damien Millerbb9ffc12002-01-08 10:59:32 +1100958 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000959 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000960
Damien Millerbb9ffc12002-01-08 10:59:32 +1100961 for(i = 0; source[i] != NULL; i++) {
962 var_name = xstrdup(source[i]);
963 if ((var_val = strstr(var_name, "=")) == NULL) {
964 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000965 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000966 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100967 *var_val++ = '\0';
968
969 debug3("Copy environment: %s=%s", var_name, var_val);
970 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100971
Damien Millerbb9ffc12002-01-08 10:59:32 +1100972 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000973 }
974}
Damien Millercb5e44a2000-09-29 12:12:36 +1100975
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000976static char **
977do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000978{
Damien Millerb38eff82000-04-01 11:09:21 +1000979 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000980 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000981 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000982 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000983
Damien Millerb38eff82000-04-01 11:09:21 +1000984 /* Initialize the environment. */
985 envsize = 100;
986 env = xmalloc(envsize * sizeof(char *));
987 env[0] = NULL;
988
Damien Millerbac2d8a2000-09-05 16:13:06 +1100989#ifdef HAVE_CYGWIN
990 /*
991 * The Windows environment contains some setting which are
992 * important for a running system. They must not be dropped.
993 */
Darren Tucker14c372d2004-08-30 20:42:08 +1000994 {
995 char **p;
996
997 p = fetch_windows_environment();
998 copy_environment(p, &env, &envsize);
999 free_windows_environment(p);
1000 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001001#endif
1002
Darren Tucker0efd1552003-08-26 11:49:55 +10001003#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001004 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001005 * the childs environment as they see fit
1006 */
1007 ssh_gssapi_do_child(&env, &envsize);
1008#endif
1009
Damien Millerb38eff82000-04-01 11:09:21 +10001010 if (!options.use_login) {
1011 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001012 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001013 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001014 s->env[i].val);
1015
Damien Millerb38eff82000-04-01 11:09:21 +10001016 child_set_env(&env, &envsize, "USER", pw->pw_name);
1017 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001018#ifdef _AIX
1019 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1020#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001021 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001022#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001023 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1024 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1025 else
1026 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001027#else /* HAVE_LOGIN_CAP */
1028# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001029 /*
1030 * There's no standard path on Windows. The path contains
1031 * important components pointing to the system directories,
1032 * needed for loading shared libraries. So the path better
1033 * remains intact here.
1034 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001035# ifdef HAVE_ETC_DEFAULT_LOGIN
1036 read_etc_default_login(&env, &envsize, pw->pw_uid);
1037 path = child_get_env(env, "PATH");
1038# endif /* HAVE_ETC_DEFAULT_LOGIN */
1039 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001040 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001041 s->pw->pw_uid == 0 ?
1042 SUPERUSER_PATH : _PATH_STDPATH);
1043 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001044# endif /* HAVE_CYGWIN */
1045#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001046
1047 snprintf(buf, sizeof buf, "%.200s/%.50s",
1048 _PATH_MAILDIR, pw->pw_name);
1049 child_set_env(&env, &envsize, "MAIL", buf);
1050
1051 /* Normal systems set SHELL by default. */
1052 child_set_env(&env, &envsize, "SHELL", shell);
1053 }
1054 if (getenv("TZ"))
1055 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1056
1057 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001058 if (!options.use_login) {
1059 while (custom_environment) {
1060 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001061 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001062
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001063 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001064 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001065 if (str[i] == '=') {
1066 str[i] = 0;
1067 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001068 }
1069 custom_environment = ce->next;
1070 xfree(ce->s);
1071 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001072 }
Damien Millerb38eff82000-04-01 11:09:21 +10001073 }
1074
Damien Millerf37e2462002-09-19 11:47:55 +10001075 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001076 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001077 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001078 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1079
Damien Miller00111382003-03-10 11:21:17 +11001080 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001081 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001082 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1083 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001084 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1085
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001086 if (s->ttyfd != -1)
1087 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1088 if (s->term)
1089 child_set_env(&env, &envsize, "TERM", s->term);
1090 if (s->display)
1091 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001092 if (original_command)
1093 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1094 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001095
Tim Rice81ed5182002-09-25 17:38:46 -07001096#ifdef _UNICOS
1097 if (cray_tmpdir[0] != '\0')
1098 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1099#endif /* _UNICOS */
1100
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001101 /*
1102 * Since we clear KRB5CCNAME at startup, if it's set now then it
1103 * must have been set by a native authentication method (eg AIX or
1104 * SIA), so copy it to the child.
1105 */
1106 {
1107 char *cp;
1108
1109 if ((cp = getenv("KRB5CCNAME")) != NULL)
1110 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1111 }
1112
Damien Millerb38eff82000-04-01 11:09:21 +10001113#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001114 {
1115 char *cp;
1116
1117 if ((cp = getenv("AUTHSTATE")) != NULL)
1118 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001119 read_environment_file(&env, &envsize, "/etc/environment");
1120 }
Damien Millerb38eff82000-04-01 11:09:21 +10001121#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001122#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001123 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001124 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001125 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001126#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001127#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001128 /*
1129 * Pull in any environment variables that may have
1130 * been set by PAM.
1131 */
Damien Miller4e448a32003-05-14 15:11:48 +10001132 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001133 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001134
Damien Millerc756e9b2003-11-17 21:41:42 +11001135 p = fetch_pam_child_environment();
1136 copy_environment(p, &env, &envsize);
1137 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001138
Damien Millerc756e9b2003-11-17 21:41:42 +11001139 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001140 copy_environment(p, &env, &envsize);
1141 free_pam_environment(p);
1142 }
Damien Millerb38eff82000-04-01 11:09:21 +10001143#endif /* USE_PAM */
1144
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001145 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001146 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001147 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001148
1149 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001150 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001151 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001152 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001153 read_environment_file(&env, &envsize, buf);
1154 }
1155 if (debug_flag) {
1156 /* dump the environment */
1157 fprintf(stderr, "Environment:\n");
1158 for (i = 0; env[i]; i++)
1159 fprintf(stderr, " %.200s\n", env[i]);
1160 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001161 return env;
1162}
1163
1164/*
1165 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1166 * first in this order).
1167 */
1168static void
1169do_rc_files(Session *s, const char *shell)
1170{
1171 FILE *f = NULL;
1172 char cmd[1024];
1173 int do_xauth;
1174 struct stat st;
1175
1176 do_xauth =
1177 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1178
1179 /* ignore _PATH_SSH_USER_RC for subsystems */
1180 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1181 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1182 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1183 if (debug_flag)
1184 fprintf(stderr, "Running %s\n", cmd);
1185 f = popen(cmd, "w");
1186 if (f) {
1187 if (do_xauth)
1188 fprintf(f, "%s %s\n", s->auth_proto,
1189 s->auth_data);
1190 pclose(f);
1191 } else
1192 fprintf(stderr, "Could not run %s\n",
1193 _PATH_SSH_USER_RC);
1194 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1195 if (debug_flag)
1196 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1197 _PATH_SSH_SYSTEM_RC);
1198 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1199 if (f) {
1200 if (do_xauth)
1201 fprintf(f, "%s %s\n", s->auth_proto,
1202 s->auth_data);
1203 pclose(f);
1204 } else
1205 fprintf(stderr, "Could not run %s\n",
1206 _PATH_SSH_SYSTEM_RC);
1207 } else if (do_xauth && options.xauth_location != NULL) {
1208 /* Add authority data to .Xauthority if appropriate. */
1209 if (debug_flag) {
1210 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001211 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001212 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001213 fprintf(stderr,
1214 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001215 options.xauth_location, s->auth_display,
1216 s->auth_proto, s->auth_data);
1217 }
1218 snprintf(cmd, sizeof cmd, "%s -q -",
1219 options.xauth_location);
1220 f = popen(cmd, "w");
1221 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001222 fprintf(f, "remove %s\n",
1223 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001224 fprintf(f, "add %s %s %s\n",
1225 s->auth_display, s->auth_proto,
1226 s->auth_data);
1227 pclose(f);
1228 } else {
1229 fprintf(stderr, "Could not run %s\n",
1230 cmd);
1231 }
1232 }
1233}
1234
1235static void
1236do_nologin(struct passwd *pw)
1237{
1238 FILE *f = NULL;
1239 char buf[1024];
1240
1241#ifdef HAVE_LOGIN_CAP
1242 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1243 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1244 _PATH_NOLOGIN), "r");
1245#else
1246 if (pw->pw_uid)
1247 f = fopen(_PATH_NOLOGIN, "r");
1248#endif
1249 if (f) {
1250 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001251 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001252 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001253 while (fgets(buf, sizeof(buf), f))
1254 fputs(buf, stderr);
1255 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001256 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001257 exit(254);
1258 }
1259}
1260
1261/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001262void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001263do_setusercontext(struct passwd *pw)
1264{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001265#ifndef HAVE_CYGWIN
1266 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001267#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001268 {
1269
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001270#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001271 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1272 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001273#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001274#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001275# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001276 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001277# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001278#ifdef GSSAPI
1279 if (options.gss_authentication) {
1280 temporarily_use_uid(pw);
1281 ssh_gssapi_storecreds();
1282 restore_uid();
1283 }
1284#endif
Damien Millerd3526362004-01-23 14:16:26 +11001285# ifdef USE_PAM
1286 if (options.use_pam) {
1287 do_pam_session();
1288 do_pam_setcred(0);
1289 }
1290# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001291 if (setusercontext(lc, pw, pw->pw_uid,
1292 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1293 perror("unable to set user context");
1294 exit(1);
1295 }
1296#else
1297# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1298 /* Sets login uid for accounting */
1299 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1300 error("setluid: %s", strerror(errno));
1301# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1302
1303 if (setlogin(pw->pw_name) < 0)
1304 error("setlogin failed: %s", strerror(errno));
1305 if (setgid(pw->pw_gid) < 0) {
1306 perror("setgid");
1307 exit(1);
1308 }
1309 /* Initialize the group list. */
1310 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1311 perror("initgroups");
1312 exit(1);
1313 }
1314 endgrent();
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001315#ifdef GSSAPI
1316 if (options.gss_authentication) {
1317 temporarily_use_uid(pw);
1318 ssh_gssapi_storecreds();
1319 restore_uid();
1320 }
1321#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001322# ifdef USE_PAM
1323 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001324 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001325 * These will have been wiped by the above initgroups() call.
1326 * Reestablish them here.
1327 */
Damien Miller341c6e62003-09-02 23:18:52 +10001328 if (options.use_pam) {
1329 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001330 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001331 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001332# endif /* USE_PAM */
1333# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1334 irix_setusercontext(pw);
1335# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001336# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001337 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001338# endif /* _AIX */
Tim Rice66fd2172005-08-31 09:59:49 -07001339#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -07001340 if (set_id(pw->pw_name) != 0) {
1341 exit(1);
1342 }
Tim Rice66fd2172005-08-31 09:59:49 -07001343#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001344 /* Permanently switch to the desired uid. */
1345 permanently_set_uid(pw);
1346#endif
1347 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001348
1349#ifdef HAVE_CYGWIN
1350 if (is_winnt)
1351#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001352 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1353 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1354}
1355
Ben Lindstrom08105192002-03-22 02:50:06 +00001356static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001357do_pwchange(Session *s)
1358{
Darren Tucker09991742004-07-17 17:05:14 +10001359 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001360 fprintf(stderr, "WARNING: Your password has expired.\n");
1361 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001362 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001363 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001364#ifdef PASSWD_NEEDS_USERNAME
1365 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1366 (char *)NULL);
1367#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001368 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001369#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001370 perror("passwd");
1371 } else {
1372 fprintf(stderr,
1373 "Password change required but no TTY available.\n");
1374 }
1375 exit(1);
1376}
1377
1378static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001379launch_login(struct passwd *pw, const char *hostname)
1380{
1381 /* Launch login(1). */
1382
Ben Lindstrom378a4172002-06-07 14:49:56 +00001383 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001384#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001385 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001386#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001387#ifdef LOGIN_NO_ENDOPT
1388 "-p", "-f", pw->pw_name, (char *)NULL);
1389#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001390 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001391#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001392
1393 /* Login couldn't be executed, die. */
1394
1395 perror("login");
1396 exit(1);
1397}
1398
Darren Tucker23bc8d02004-02-06 16:24:31 +11001399static void
1400child_close_fds(void)
1401{
1402 int i;
1403
1404 if (packet_get_connection_in() == packet_get_connection_out())
1405 close(packet_get_connection_in());
1406 else {
1407 close(packet_get_connection_in());
1408 close(packet_get_connection_out());
1409 }
1410 /*
1411 * Close all descriptors related to channels. They will still remain
1412 * open in the parent.
1413 */
1414 /* XXX better use close-on-exec? -markus */
1415 channel_close_all();
1416
1417 /*
1418 * Close any extra file descriptors. Note that there may still be
1419 * descriptors left by system functions. They will be closed later.
1420 */
1421 endpwent();
1422
1423 /*
Damien Miller788f2122005-11-05 15:14:59 +11001424 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001425 * hanging around in clients. Note that we want to do this after
1426 * initgroups, because at least on Solaris 2.3 it leaves file
1427 * descriptors open.
1428 */
1429 for (i = 3; i < 64; i++)
1430 close(i);
1431}
1432
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001433/*
1434 * Performs common processing for the child, such as setting up the
1435 * environment, closing extra file descriptors, setting the user and group
1436 * ids, and executing the command or shell.
1437 */
1438void
1439do_child(Session *s, const char *command)
1440{
1441 extern char **environ;
1442 char **env;
1443 char *argv[10];
1444 const char *shell, *shell0, *hostname = NULL;
1445 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001446
1447 /* remove hostkey from the child's memory */
1448 destroy_sensitive_data();
1449
Darren Tucker23bc8d02004-02-06 16:24:31 +11001450 /* Force a password change */
1451 if (s->authctxt->force_pwchange) {
1452 do_setusercontext(pw);
1453 child_close_fds();
1454 do_pwchange(s);
1455 exit(1);
1456 }
1457
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001458 /* login(1) is only called if we execute the login shell */
1459 if (options.use_login && command != NULL)
1460 options.use_login = 0;
1461
Tim Rice81ed5182002-09-25 17:38:46 -07001462#ifdef _UNICOS
1463 cray_setup(pw->pw_uid, pw->pw_name, command);
1464#endif /* _UNICOS */
1465
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001466 /*
1467 * Login(1) does this as well, and it needs uid 0 for the "-h"
1468 * switch, so we let login(1) to this for us.
1469 */
1470 if (!options.use_login) {
1471#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001472 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001473 if (!check_quietlogin(s, command))
1474 do_motd();
1475#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001476 /* When PAM is enabled we rely on it to do the nologin check */
1477 if (!options.use_pam)
1478 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001479 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001480 /*
1481 * PAM session modules in do_setusercontext may have
1482 * generated messages, so if this in an interactive
1483 * login then display them too.
1484 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001485 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001486 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001487#endif /* HAVE_OSF_SIA */
1488 }
1489
Darren Tucker69687f42004-09-11 22:17:26 +10001490#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001491 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1492 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001493 display_loginmsg();
1494 exit(254);
1495 }
1496#endif
1497
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001498 /*
1499 * Get the shell from the password data. An empty shell field is
1500 * legal, and means /bin/sh.
1501 */
1502 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001503
1504 /*
1505 * Make sure $SHELL points to the shell from the password file,
1506 * even if shell is overridden from login.conf
1507 */
1508 env = do_setup_env(s, shell);
1509
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001510#ifdef HAVE_LOGIN_CAP
1511 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1512#endif
1513
Damien Millerad833b32000-08-23 10:46:23 +10001514 /* we have to stash the hostname before we close our socket. */
1515 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001516 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001517 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001518 /*
1519 * Close the connection descriptors; note that this is the child, and
1520 * the server will still have the socket open, and it is important
1521 * that we do not shutdown it. Note that the descriptors cannot be
1522 * closed before building the environment, as we call
1523 * get_remote_ipaddr there.
1524 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001525 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001526
Damien Millerb38eff82000-04-01 11:09:21 +10001527 /*
Damien Miller05eda432002-02-10 18:32:28 +11001528 * Must take new environment into use so that .ssh/rc,
1529 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001530 */
1531 environ = env;
1532
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001533#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001534 /*
1535 * At this point, we check to see if AFS is active and if we have
1536 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1537 * if we can (and need to) extend the ticket into an AFS token. If
1538 * we don't do this, we run into potential problems if the user's
1539 * home directory is in AFS and it's not world-readable.
1540 */
1541
1542 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001543 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001544 char cell[64];
1545
1546 debug("Getting AFS token");
1547
1548 k_setpag();
1549
1550 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1551 krb5_afslog(s->authctxt->krb5_ctx,
1552 s->authctxt->krb5_fwd_ccache, cell, NULL);
1553
1554 krb5_afslog_home(s->authctxt->krb5_ctx,
1555 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1556 }
1557#endif
1558
Damien Miller788f2122005-11-05 15:14:59 +11001559 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001560 if (chdir(pw->pw_dir) < 0) {
1561 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1562 pw->pw_dir, strerror(errno));
1563#ifdef HAVE_LOGIN_CAP
1564 if (login_getcapbool(lc, "requirehome", 0))
1565 exit(1);
1566#endif
1567 }
1568
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001569 if (!options.use_login)
1570 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001571
1572 /* restore SIGPIPE for child */
1573 signal(SIGPIPE, SIG_DFL);
1574
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001575 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001576 launch_login(pw, hostname);
1577 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001578 }
1579
1580 /* Get the last component of the shell name. */
1581 if ((shell0 = strrchr(shell, '/')) != NULL)
1582 shell0++;
1583 else
1584 shell0 = shell;
1585
Damien Millerb38eff82000-04-01 11:09:21 +10001586 /*
1587 * If we have no command, execute the shell. In this case, the shell
1588 * name to be passed in argv[0] is preceded by '-' to indicate that
1589 * this is a login shell.
1590 */
1591 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001592 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001593
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001594 /* Start the shell. Set initial character to '-'. */
1595 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001596
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001597 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1598 >= sizeof(argv0) - 1) {
1599 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001600 perror(shell);
1601 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001602 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001603
1604 /* Execute the shell. */
1605 argv[0] = argv0;
1606 argv[1] = NULL;
1607 execve(shell, argv, env);
1608
1609 /* Executing the shell failed. */
1610 perror(shell);
1611 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001612 }
1613 /*
1614 * Execute the command using the user's shell. This uses the -c
1615 * option to execute the command.
1616 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001617 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001618 argv[1] = "-c";
1619 argv[2] = (char *) command;
1620 argv[3] = NULL;
1621 execve(shell, argv, env);
1622 perror(shell);
1623 exit(1);
1624}
1625
1626Session *
1627session_new(void)
1628{
1629 int i;
1630 static int did_init = 0;
1631 if (!did_init) {
1632 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001633 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001634 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001635 }
1636 did_init = 1;
1637 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001638 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001639 Session *s = &sessions[i];
1640 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001641 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001642 s->chanid = -1;
1643 s->ptyfd = -1;
1644 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001645 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001646 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001647 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001648 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001649 return s;
1650 }
1651 }
1652 return NULL;
1653}
1654
Ben Lindstrombba81212001-06-25 05:01:22 +00001655static void
Damien Millerb38eff82000-04-01 11:09:21 +10001656session_dump(void)
1657{
1658 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001659 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001660 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001661 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001662 s->used,
1663 s->self,
1664 s,
1665 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001666 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001667 }
1668}
1669
Damien Millerefb4afe2000-04-12 18:45:05 +10001670int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001671session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001672{
1673 Session *s = session_new();
1674 debug("session_open: channel %d", chanid);
1675 if (s == NULL) {
1676 error("no more sessions");
1677 return 0;
1678 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001679 s->authctxt = authctxt;
1680 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001681 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001682 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001683 debug("session_open: session %d: link with channel %d", s->self, chanid);
1684 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001685 return 1;
1686}
1687
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001688Session *
1689session_by_tty(char *tty)
1690{
1691 int i;
1692 for (i = 0; i < MAX_SESSIONS; i++) {
1693 Session *s = &sessions[i];
1694 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1695 debug("session_by_tty: session %d tty %s", i, tty);
1696 return s;
1697 }
1698 }
1699 debug("session_by_tty: unknown tty %.100s", tty);
1700 session_dump();
1701 return NULL;
1702}
1703
Ben Lindstrombba81212001-06-25 05:01:22 +00001704static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001705session_by_channel(int id)
1706{
1707 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001708 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001709 Session *s = &sessions[i];
1710 if (s->used && s->chanid == id) {
1711 debug("session_by_channel: session %d channel %d", i, id);
1712 return s;
1713 }
1714 }
1715 debug("session_by_channel: unknown channel %d", id);
1716 session_dump();
1717 return NULL;
1718}
1719
Ben Lindstrombba81212001-06-25 05:01:22 +00001720static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001721session_by_x11_channel(int id)
1722{
1723 int i, j;
1724
1725 for (i = 0; i < MAX_SESSIONS; i++) {
1726 Session *s = &sessions[i];
1727
1728 if (s->x11_chanids == NULL || !s->used)
1729 continue;
1730 for (j = 0; s->x11_chanids[j] != -1; j++) {
1731 if (s->x11_chanids[j] == id) {
1732 debug("session_by_x11_channel: session %d "
1733 "channel %d", s->self, id);
1734 return s;
1735 }
1736 }
1737 }
1738 debug("session_by_x11_channel: unknown channel %d", id);
1739 session_dump();
1740 return NULL;
1741}
1742
1743static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001744session_by_pid(pid_t pid)
1745{
1746 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001747 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001748 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001749 Session *s = &sessions[i];
1750 if (s->used && s->pid == pid)
1751 return s;
1752 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001753 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001754 session_dump();
1755 return NULL;
1756}
1757
Ben Lindstrombba81212001-06-25 05:01:22 +00001758static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001759session_window_change_req(Session *s)
1760{
1761 s->col = packet_get_int();
1762 s->row = packet_get_int();
1763 s->xpixel = packet_get_int();
1764 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001765 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001766 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1767 return 1;
1768}
1769
Ben Lindstrombba81212001-06-25 05:01:22 +00001770static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001771session_pty_req(Session *s)
1772{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001773 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001774 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001775
Ben Lindstrom49c12602001-06-13 04:37:36 +00001776 if (no_pty_flag) {
1777 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001778 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001779 }
1780 if (s->ttyfd != -1) {
1781 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001782 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001783 }
1784
Damien Millerefb4afe2000-04-12 18:45:05 +10001785 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001786
1787 if (compat20) {
1788 s->col = packet_get_int();
1789 s->row = packet_get_int();
1790 } else {
1791 s->row = packet_get_int();
1792 s->col = packet_get_int();
1793 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001794 s->xpixel = packet_get_int();
1795 s->ypixel = packet_get_int();
1796
1797 if (strcmp(s->term, "") == 0) {
1798 xfree(s->term);
1799 s->term = NULL;
1800 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001801
Damien Millerefb4afe2000-04-12 18:45:05 +10001802 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001803 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001804 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001805 if (s->term)
1806 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001807 s->term = NULL;
1808 s->ptyfd = -1;
1809 s->ttyfd = -1;
1810 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001811 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001812 }
1813 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001814
1815 /* for SSH1 the tty modes length is not given */
1816 if (!compat20)
1817 n_bytes = packet_remaining();
1818 tty_parse_modes(s->ttyfd, &n_bytes);
1819
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001820 if (!use_privsep)
1821 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001822
1823 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001824 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1825
Damien Miller48b03fc2002-01-22 23:11:40 +11001826 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001827 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001828 return 1;
1829}
1830
Ben Lindstrombba81212001-06-25 05:01:22 +00001831static int
Damien Millerbd483e72000-04-30 10:00:53 +10001832session_subsystem_req(Session *s)
1833{
Damien Millerae452462001-10-10 15:08:06 +10001834 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001835 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001836 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001837 char *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001838 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001839
Damien Miller48b03fc2002-01-22 23:11:40 +11001840 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001841 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001842
Damien Millerf6d9e222000-06-18 14:50:44 +10001843 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001844 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1845 cmd = options.subsystem_command[i];
1846 if (stat(cmd, &st) < 0) {
1847 error("subsystem: cannot stat %s: %s", cmd,
1848 strerror(errno));
1849 break;
1850 }
1851 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001852 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001853 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001854 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001855 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001856 }
1857 }
1858
1859 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001860 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001861 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001862
Damien Millerbd483e72000-04-30 10:00:53 +10001863 xfree(subsys);
1864 return success;
1865}
1866
Ben Lindstrombba81212001-06-25 05:01:22 +00001867static int
Damien Millerbd483e72000-04-30 10:00:53 +10001868session_x11_req(Session *s)
1869{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001870 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001871
Damien Miller2b9b0452005-07-17 17:19:24 +10001872 if (s->auth_proto != NULL || s->auth_data != NULL) {
1873 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11001874 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10001875 return 0;
1876 }
Damien Millerbd483e72000-04-30 10:00:53 +10001877 s->single_connection = packet_get_char();
1878 s->auth_proto = packet_get_string(NULL);
1879 s->auth_data = packet_get_string(NULL);
1880 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001881 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001882
Ben Lindstrom768176b2001-06-09 01:29:12 +00001883 success = session_setup_x11fwd(s);
1884 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001885 xfree(s->auth_proto);
1886 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001887 s->auth_proto = NULL;
1888 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001889 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001890 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001891}
1892
Ben Lindstrombba81212001-06-25 05:01:22 +00001893static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001894session_shell_req(Session *s)
1895{
Damien Miller48b03fc2002-01-22 23:11:40 +11001896 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001897 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001898 return 1;
1899}
1900
Ben Lindstrombba81212001-06-25 05:01:22 +00001901static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001902session_exec_req(Session *s)
1903{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001904 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001905 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001906 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001907 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001908 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001909 return 1;
1910}
1911
Ben Lindstrombba81212001-06-25 05:01:22 +00001912static int
Damien Miller54c45982003-05-15 10:20:13 +10001913session_break_req(Session *s)
1914{
Damien Miller54c45982003-05-15 10:20:13 +10001915
Darren Tucker1f8311c2004-05-13 16:39:33 +10001916 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001917 packet_check_eom();
1918
Darren Tucker3bdbd842003-08-13 20:31:05 +10001919 if (s->ttyfd == -1 ||
1920 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001921 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001922 return 1;
1923}
1924
1925static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001926session_env_req(Session *s)
1927{
1928 char *name, *val;
1929 u_int name_len, val_len, i;
1930
1931 name = packet_get_string(&name_len);
1932 val = packet_get_string(&val_len);
1933 packet_check_eom();
1934
1935 /* Don't set too many environment variables */
1936 if (s->num_env > 128) {
1937 debug2("Ignoring env request %s: too many env vars", name);
1938 goto fail;
1939 }
1940
1941 for (i = 0; i < options.num_accept_env; i++) {
1942 if (match_pattern(name, options.accept_env[i])) {
1943 debug2("Setting env %d: %s=%s", s->num_env, name, val);
1944 s->env = xrealloc(s->env, sizeof(*s->env) *
1945 (s->num_env + 1));
1946 s->env[s->num_env].name = name;
1947 s->env[s->num_env].val = val;
1948 s->num_env++;
1949 return (1);
1950 }
1951 }
1952 debug2("Ignoring env request %s: disallowed name", name);
1953
1954 fail:
1955 xfree(name);
1956 xfree(val);
1957 return (0);
1958}
1959
1960static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001961session_auth_agent_req(Session *s)
1962{
1963 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001964 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001965 if (no_agent_forwarding_flag) {
1966 debug("session_auth_agent_req: no_agent_forwarding_flag");
1967 return 0;
1968 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001969 if (called) {
1970 return 0;
1971 } else {
1972 called = 1;
1973 return auth_input_request_forwarding(s->pw);
1974 }
1975}
1976
Damien Millerc7ef63d2002-02-05 12:21:42 +11001977int
1978session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001979{
Damien Millerefb4afe2000-04-12 18:45:05 +10001980 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001981 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001982
Damien Millerc7ef63d2002-02-05 12:21:42 +11001983 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001984 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001985 c->self, rtype);
1986 return 0;
1987 }
1988 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001989
1990 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001991 * a session is in LARVAL state until a shell, a command
1992 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001993 */
1994 if (c->type == SSH_CHANNEL_LARVAL) {
1995 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001996 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001997 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001998 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001999 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10002000 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002001 } else if (strcmp(rtype, "x11-req") == 0) {
2002 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002003 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2004 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002005 } else if (strcmp(rtype, "subsystem") == 0) {
2006 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002007 } else if (strcmp(rtype, "env") == 0) {
2008 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002009 }
2010 }
2011 if (strcmp(rtype, "window-change") == 0) {
2012 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002013 } else if (strcmp(rtype, "break") == 0) {
2014 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002015 }
Damien Millera6b1d162004-06-30 22:41:07 +10002016
Damien Millerc7ef63d2002-02-05 12:21:42 +11002017 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002018}
2019
2020void
2021session_set_fds(Session *s, int fdin, int fdout, int fderr)
2022{
2023 if (!compat20)
2024 fatal("session_set_fds: called for proto != 2.0");
2025 /*
2026 * now that have a child and a pipe to the child,
2027 * we can activate our channel and register the fd's
2028 */
2029 if (s->chanid == -1)
2030 fatal("no channel for session %d", s->self);
2031 channel_set_fds(s->chanid,
2032 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002033 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002034 1,
2035 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002036}
2037
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002038/*
2039 * Function to perform pty cleanup. Also called if we get aborted abnormally
2040 * (e.g., due to a dropped connection).
2041 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002042void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002043session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002044{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002045 if (s == NULL) {
2046 error("session_pty_cleanup: no session");
2047 return;
2048 }
2049 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002050 return;
2051
Kevin Steves43cdef32001-02-11 14:12:08 +00002052 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002053
Damien Millerb38eff82000-04-01 11:09:21 +10002054 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002055 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002056 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002057
2058 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002059 if (getuid() == 0)
2060 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002061
2062 /*
2063 * Close the server side of the socket pairs. We must do this after
2064 * the pty cleanup, so that another process doesn't get this pty
2065 * while we're still cleaning up.
2066 */
2067 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002068 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002069
2070 /* unlink pty from session */
2071 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002072}
Damien Millerefb4afe2000-04-12 18:45:05 +10002073
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002074void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002075session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002076{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002077 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002078}
2079
Damien Miller5a80bba2002-09-04 16:39:02 +10002080static char *
2081sig2name(int sig)
2082{
2083#define SSH_SIG(x) if (sig == SIG ## x) return #x
2084 SSH_SIG(ABRT);
2085 SSH_SIG(ALRM);
2086 SSH_SIG(FPE);
2087 SSH_SIG(HUP);
2088 SSH_SIG(ILL);
2089 SSH_SIG(INT);
2090 SSH_SIG(KILL);
2091 SSH_SIG(PIPE);
2092 SSH_SIG(QUIT);
2093 SSH_SIG(SEGV);
2094 SSH_SIG(TERM);
2095 SSH_SIG(USR1);
2096 SSH_SIG(USR2);
2097#undef SSH_SIG
2098 return "SIG@openssh.com";
2099}
2100
Ben Lindstrombba81212001-06-25 05:01:22 +00002101static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002102session_close_x11(int id)
2103{
2104 Channel *c;
2105
Damien Millerd47c62a2005-12-13 19:33:57 +11002106 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002107 debug("session_close_x11: x11 channel %d missing", id);
2108 } else {
2109 /* Detach X11 listener */
2110 debug("session_close_x11: detach x11 channel %d", id);
2111 channel_cancel_cleanup(id);
2112 if (c->ostate != CHAN_OUTPUT_CLOSED)
2113 chan_mark_dead(c);
2114 }
2115}
2116
2117static void
2118session_close_single_x11(int id, void *arg)
2119{
2120 Session *s;
2121 u_int i;
2122
2123 debug3("session_close_single_x11: channel %d", id);
2124 channel_cancel_cleanup(id);
2125 if ((s = session_by_x11_channel(id)) == NULL)
2126 fatal("session_close_single_x11: no x11 channel %d", id);
2127 for (i = 0; s->x11_chanids[i] != -1; i++) {
2128 debug("session_close_single_x11: session %d: "
2129 "closing channel %d", s->self, s->x11_chanids[i]);
2130 /*
2131 * The channel "id" is already closing, but make sure we
2132 * close all of its siblings.
2133 */
2134 if (s->x11_chanids[i] != id)
2135 session_close_x11(s->x11_chanids[i]);
2136 }
2137 xfree(s->x11_chanids);
2138 s->x11_chanids = NULL;
2139 if (s->display) {
2140 xfree(s->display);
2141 s->display = NULL;
2142 }
2143 if (s->auth_proto) {
2144 xfree(s->auth_proto);
2145 s->auth_proto = NULL;
2146 }
2147 if (s->auth_data) {
2148 xfree(s->auth_data);
2149 s->auth_data = NULL;
2150 }
2151 if (s->auth_display) {
2152 xfree(s->auth_display);
2153 s->auth_display = NULL;
2154 }
2155}
2156
2157static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002158session_exit_message(Session *s, int status)
2159{
2160 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002161
2162 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002163 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002164 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002165 debug("session_exit_message: session %d channel %d pid %ld",
2166 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002167
2168 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002169 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002170 packet_put_int(WEXITSTATUS(status));
2171 packet_send();
2172 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002173 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002174 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002175#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002176 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002177#else /* WCOREDUMP */
2178 packet_put_char(0);
2179#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002180 packet_put_cstring("");
2181 packet_put_cstring("");
2182 packet_send();
2183 } else {
2184 /* Some weird exit cause. Just exit. */
2185 packet_disconnect("wait returned status %04x.", status);
2186 }
2187
2188 /* disconnect channel */
2189 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002190
2191 /*
2192 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002193 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002194 * by session_close_by_channel when the childs close their fds.
2195 */
2196 channel_register_cleanup(c->self, session_close_by_channel, 1);
2197
Damien Miller166fca82000-04-20 07:42:21 +10002198 /*
2199 * emulate a write failure with 'chan_write_failed', nobody will be
2200 * interested in data we write.
2201 * Note that we must not call 'chan_read_failed', since there could
2202 * be some more data waiting in the pipe.
2203 */
Damien Millerbd483e72000-04-30 10:00:53 +10002204 if (c->ostate != CHAN_OUTPUT_CLOSED)
2205 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002206}
2207
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002208void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002209session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002210{
Damien Millereccb9de2005-06-17 12:59:34 +10002211 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002212
Ben Lindstromce0f6342002-06-11 16:42:49 +00002213 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002214 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002215 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002216 if (s->term)
2217 xfree(s->term);
2218 if (s->display)
2219 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002220 if (s->x11_chanids)
2221 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002222 if (s->auth_display)
2223 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002224 if (s->auth_data)
2225 xfree(s->auth_data);
2226 if (s->auth_proto)
2227 xfree(s->auth_proto);
2228 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002229 for (i = 0; i < s->num_env; i++) {
2230 xfree(s->env[i].name);
2231 xfree(s->env[i].val);
2232 }
2233 if (s->env != NULL)
2234 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002235 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002236}
2237
2238void
2239session_close_by_pid(pid_t pid, int status)
2240{
2241 Session *s = session_by_pid(pid);
2242 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002243 debug("session_close_by_pid: no session for pid %ld",
2244 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002245 return;
2246 }
2247 if (s->chanid != -1)
2248 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002249 if (s->ttyfd != -1)
2250 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002251 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002252}
2253
2254/*
2255 * this is called when a channel dies before
2256 * the session 'child' itself dies
2257 */
2258void
2259session_close_by_channel(int id, void *arg)
2260{
2261 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002262 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002263
Damien Millerefb4afe2000-04-12 18:45:05 +10002264 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002265 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002266 return;
2267 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002268 debug("session_close_by_channel: channel %d child %ld",
2269 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002270 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002271 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002272 /*
2273 * delay detach of session, but release pty, since
2274 * the fd's to the child are already closed
2275 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002276 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002277 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002278 return;
2279 }
2280 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002281 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002282
2283 /* Close any X11 listeners associated with this session */
2284 if (s->x11_chanids != NULL) {
2285 for (i = 0; s->x11_chanids[i] != -1; i++) {
2286 session_close_x11(s->x11_chanids[i]);
2287 s->x11_chanids[i] = -1;
2288 }
2289 }
2290
Damien Millerefb4afe2000-04-12 18:45:05 +10002291 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002292 session_close(s);
2293}
2294
2295void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002296session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002297{
2298 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002299 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002300 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002301 if (s->used) {
2302 if (closefunc != NULL)
2303 closefunc(s);
2304 else
2305 session_close(s);
2306 }
Damien Miller52b77be2001-10-10 15:14:37 +10002307 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002308}
2309
Ben Lindstrombba81212001-06-25 05:01:22 +00002310static char *
Damien Millere247cc42000-05-07 12:03:14 +10002311session_tty_list(void)
2312{
2313 static char buf[1024];
2314 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002315 char *cp;
2316
Damien Millere247cc42000-05-07 12:03:14 +10002317 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002318 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002319 Session *s = &sessions[i];
2320 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002321
Damien Millera8ed44b2003-01-10 09:53:12 +11002322 if (strncmp(s->tty, "/dev/", 5) != 0) {
2323 cp = strrchr(s->tty, '/');
2324 cp = (cp == NULL) ? s->tty : cp + 1;
2325 } else
2326 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002327
Damien Millere247cc42000-05-07 12:03:14 +10002328 if (buf[0] != '\0')
2329 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002330 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002331 }
2332 }
2333 if (buf[0] == '\0')
2334 strlcpy(buf, "notty", sizeof buf);
2335 return buf;
2336}
2337
2338void
2339session_proctitle(Session *s)
2340{
2341 if (s->pw == NULL)
2342 error("no user for session %d", s->self);
2343 else
2344 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2345}
2346
Ben Lindstrom768176b2001-06-09 01:29:12 +00002347int
2348session_setup_x11fwd(Session *s)
2349{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002350 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002351 char display[512], auth_display[512];
2352 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002353 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002354
2355 if (no_x11_forwarding_flag) {
2356 packet_send_debug("X11 forwarding disabled in user configuration file.");
2357 return 0;
2358 }
2359 if (!options.x11_forwarding) {
2360 debug("X11 forwarding disabled in server configuration file.");
2361 return 0;
2362 }
2363 if (!options.xauth_location ||
2364 (stat(options.xauth_location, &st) == -1)) {
2365 packet_send_debug("No xauth program; cannot forward with spoofing.");
2366 return 0;
2367 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002368 if (options.use_login) {
2369 packet_send_debug("X11 forwarding disabled; "
2370 "not compatible with UseLogin=yes.");
2371 return 0;
2372 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002373 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002374 debug("X11 display already set.");
2375 return 0;
2376 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002377 if (x11_create_display_inet(options.x11_display_offset,
2378 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002379 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002380 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002381 return 0;
2382 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002383 for (i = 0; s->x11_chanids[i] != -1; i++) {
2384 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002385 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002386 }
Kevin Steves366298c2001-12-19 17:58:01 +00002387
2388 /* Set up a suitable value for the DISPLAY variable. */
2389 if (gethostname(hostname, sizeof(hostname)) < 0)
2390 fatal("gethostname: %.100s", strerror(errno));
2391 /*
2392 * auth_display must be used as the displayname when the
2393 * authorization entry is added with xauth(1). This will be
2394 * different than the DISPLAY string for localhost displays.
2395 */
Damien Miller95c249f2002-02-05 12:11:34 +11002396 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002397 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002398 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002399 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002400 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002401 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002402 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002403 } else {
2404#ifdef IPADDR_IN_DISPLAY
2405 struct hostent *he;
2406 struct in_addr my_addr;
2407
2408 he = gethostbyname(hostname);
2409 if (he == NULL) {
2410 error("Can't get IP address for X11 DISPLAY.");
2411 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2412 return 0;
2413 }
2414 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002415 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002416 s->display_number, s->screen);
2417#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002418 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002419 s->display_number, s->screen);
2420#endif
2421 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002422 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002423 }
2424
Ben Lindstrom768176b2001-06-09 01:29:12 +00002425 return 1;
2426}
2427
Ben Lindstrombba81212001-06-25 05:01:22 +00002428static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002429do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002430{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002431 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002432}
2433
2434void
2435do_cleanup(Authctxt *authctxt)
2436{
2437 static int called = 0;
2438
2439 debug("do_cleanup");
2440
2441 /* no cleanup if we're in the child for login shell */
2442 if (is_child)
2443 return;
2444
2445 /* avoid double cleanup */
2446 if (called)
2447 return;
2448 called = 1;
2449
2450 if (authctxt == NULL)
2451 return;
2452#ifdef KRB5
2453 if (options.kerberos_ticket_cleanup &&
2454 authctxt->krb5_ctx)
2455 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002456#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002457
2458#ifdef GSSAPI
2459 if (compat20 && options.gss_cleanup_creds)
2460 ssh_gssapi_cleanup_creds();
2461#endif
2462
Darren Tucker8846a072003-10-07 11:30:15 +10002463#ifdef USE_PAM
2464 if (options.use_pam) {
2465 sshpam_cleanup();
2466 sshpam_thread_cleanup();
2467 }
2468#endif
2469
Darren Tucker3e33cec2003-10-02 16:12:36 +10002470 /* remove agent socket */
2471 auth_sock_cleanup_proc(authctxt->pw);
2472
2473 /*
2474 * Cleanup ptys/utmp only if privsep is disabled,
2475 * or if running in monitor.
2476 */
2477 if (!use_privsep || mm_is_monitor())
2478 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002479}