blob: 5e6627cb050e661448586b0cb415c8ea9067db5f [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 Miller39eda6e2005-11-05 14:52:50 +110036RCSID("$OpenBSD: session.c,v 1.187 2005/10/10 10:23:08 djm Exp $");
Damien Millerb38eff82000-04-01 11:09:21 +100037
Damien Millerb38eff82000-04-01 11:09:21 +100038#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000039#include "ssh1.h"
40#include "ssh2.h"
41#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000042#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100043#include "packet.h"
44#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100045#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100046#include "uidswap.h"
47#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000048#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100049#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100050#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100051#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "pathnames.h"
53#include "log.h"
54#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000055#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "serverloop.h"
57#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000058#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100059#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000060#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100061
Darren Tucker3c78c5e2004-01-23 22:03:10 +110062#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110063#include <kafs.h>
64#endif
65
Darren Tucker0efd1552003-08-26 11:49:55 +100066#ifdef GSSAPI
67#include "ssh-gss.h"
68#endif
69
Damien Millerb38eff82000-04-01 11:09:21 +100070/* func */
71
72Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000073void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100074void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000075void session_proctitle(Session *);
76int session_setup_x11fwd(Session *);
77void do_exec_pty(Session *, const char *);
78void do_exec_no_pty(Session *, const char *);
79void do_exec(Session *, const char *);
80void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000081#ifdef LOGIN_NEEDS_UTMPX
82static void do_pre_login(Session *s);
83#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000084void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100085void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000086int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100087
Ben Lindstrombba81212001-06-25 05:01:22 +000088static void do_authenticated1(Authctxt *);
89static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000090
Ben Lindstrombba81212001-06-25 05:01:22 +000091static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +000092
Damien Millerb38eff82000-04-01 11:09:21 +100093/* import */
94extern ServerOptions options;
95extern char *__progname;
96extern int log_stderr;
97extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +000098extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +100099extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000100extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000101extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000102
Damien Miller7b28dc52000-09-05 13:34:53 +1100103/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000104const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100105
Damien Millerb38eff82000-04-01 11:09:21 +1000106/* data */
107#define MAX_SESSIONS 10
108Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100109
Damien Millerad833b32000-08-23 10:46:23 +1000110#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000111login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000112#endif
113
Darren Tucker3e33cec2003-10-02 16:12:36 +1000114static int is_child = 0;
115
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000116/* Name and directory of socket for authentication agent forwarding. */
117static char *auth_sock_name = NULL;
118static char *auth_sock_dir = NULL;
119
120/* removes the agent forwarding socket */
121
122static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000123auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000124{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000125 if (auth_sock_name != NULL) {
126 temporarily_use_uid(pw);
127 unlink(auth_sock_name);
128 rmdir(auth_sock_dir);
129 auth_sock_name = NULL;
130 restore_uid();
131 }
132}
133
134static int
135auth_input_request_forwarding(struct passwd * pw)
136{
137 Channel *nc;
138 int sock;
139 struct sockaddr_un sunaddr;
140
141 if (auth_sock_name != NULL) {
142 error("authentication forwarding requested twice.");
143 return 0;
144 }
145
146 /* Temporarily drop privileged uid for mkdir/bind. */
147 temporarily_use_uid(pw);
148
149 /* Allocate a buffer for the socket name, and format the name. */
150 auth_sock_name = xmalloc(MAXPATHLEN);
151 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000152 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000153
154 /* Create private directory for socket */
155 if (mkdtemp(auth_sock_dir) == NULL) {
156 packet_send_debug("Agent forwarding disabled: "
157 "mkdtemp() failed: %.100s", strerror(errno));
158 restore_uid();
159 xfree(auth_sock_name);
160 xfree(auth_sock_dir);
161 auth_sock_name = NULL;
162 auth_sock_dir = NULL;
163 return 0;
164 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000165 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
166 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000167
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000168 /* Create the socket. */
169 sock = socket(AF_UNIX, SOCK_STREAM, 0);
170 if (sock < 0)
171 packet_disconnect("socket: %.100s", strerror(errno));
172
173 /* Bind it to the name. */
174 memset(&sunaddr, 0, sizeof(sunaddr));
175 sunaddr.sun_family = AF_UNIX;
176 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
177
178 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
179 packet_disconnect("bind: %.100s", strerror(errno));
180
181 /* Restore the privileged uid. */
182 restore_uid();
183
184 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100185 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000186 packet_disconnect("listen: %.100s", strerror(errno));
187
188 /* Allocate a channel for the authentication agent socket. */
189 nc = channel_new("auth socket",
190 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
191 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000192 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000193 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
194 return 1;
195}
196
Darren Tucker1921ed92004-02-10 13:23:28 +1100197static void
198display_loginmsg(void)
199{
Damien Miller46d38de2005-07-17 17:02:09 +1000200 if (buffer_len(&loginmsg) > 0) {
201 buffer_append(&loginmsg, "\0", 1);
202 printf("%s", (char *)buffer_ptr(&loginmsg));
203 buffer_clear(&loginmsg);
204 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100205}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000206
Ben Lindstromb31783d2001-03-22 02:02:12 +0000207void
208do_authenticated(Authctxt *authctxt)
209{
Damien Miller97f39ae2003-02-24 11:57:01 +1100210 setproctitle("%s", authctxt->pw->pw_name);
211
Ben Lindstromb31783d2001-03-22 02:02:12 +0000212 /*
213 * Cancel the alarm we set to limit the time taken for
214 * authentication.
215 */
216 alarm(0);
217 if (startup_pipe != -1) {
218 close(startup_pipe);
219 startup_pipe = -1;
220 }
Ben Lindstromb31783d2001-03-22 02:02:12 +0000221 /* setup the channel layer */
222 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
223 channel_permit_all_opens();
224
225 if (compat20)
226 do_authenticated2(authctxt);
227 else
228 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000229
Darren Tucker3e33cec2003-10-02 16:12:36 +1000230 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000231}
232
Damien Millerb38eff82000-04-01 11:09:21 +1000233/*
Damien Millerb38eff82000-04-01 11:09:21 +1000234 * Prepares for an interactive session. This is called after the user has
235 * been successfully authenticated. During this message exchange, pseudo
236 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
237 * are requested, etc.
238 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000239static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000240do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000241{
242 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000243 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100244 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000245 int enable_compression_after_reply = 0;
246 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000247
248 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100249 if (s == NULL) {
250 error("no more sessions");
251 return;
252 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000253 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000254 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000255
Damien Millerb38eff82000-04-01 11:09:21 +1000256 /*
257 * We stay in this loop until the client requests to execute a shell
258 * or a command.
259 */
260 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000261 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000262
263 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100264 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000265
266 /* Process the packet. */
267 switch (type) {
268 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000269 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100270 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000271 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000272 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100273 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000274 break;
275 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000276 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000277 debug2("compression disabled");
278 break;
279 }
Damien Millerb38eff82000-04-01 11:09:21 +1000280 /* Enable compression after we have responded with SUCCESS. */
281 enable_compression_after_reply = 1;
282 success = 1;
283 break;
284
285 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000286 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000287 break;
288
289 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000290 s->auth_proto = packet_get_string(&proto_len);
291 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000292
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000293 screen_flag = packet_get_protocol_flags() &
294 SSH_PROTOFLAG_SCREEN_NUMBER;
295 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
296
297 if (packet_remaining() == 4) {
298 if (!screen_flag)
299 debug2("Buggy client: "
300 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000301 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000302 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000303 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000304 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100305 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000306 success = session_setup_x11fwd(s);
307 if (!success) {
308 xfree(s->auth_proto);
309 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000310 s->auth_proto = NULL;
311 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000312 }
Damien Millerb38eff82000-04-01 11:09:21 +1000313 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000314
315 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
316 if (no_agent_forwarding_flag || compat13) {
317 debug("Authentication agent forwarding not permitted for this authentication.");
318 break;
319 }
320 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000321 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000322 break;
323
324 case SSH_CMSG_PORT_FORWARD_REQUEST:
325 if (no_port_forwarding_flag) {
326 debug("Port forwarding not permitted for this authentication.");
327 break;
328 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100329 if (!options.allow_tcp_forwarding) {
330 debug("Port forwarding not permitted.");
331 break;
332 }
Damien Millerb38eff82000-04-01 11:09:21 +1000333 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000334 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000335 success = 1;
336 break;
337
338 case SSH_CMSG_MAX_PACKET_SIZE:
339 if (packet_set_maxsize(packet_get_int()) > 0)
340 success = 1;
341 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100342
Damien Millerb38eff82000-04-01 11:09:21 +1000343 case SSH_CMSG_EXEC_SHELL:
344 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000345 if (type == SSH_CMSG_EXEC_CMD) {
346 command = packet_get_string(&dlen);
347 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000348 do_exec(s, command);
349 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000350 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000351 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000352 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100353 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000354 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000355 return;
356
357 default:
358 /*
359 * Any unknown messages in this phase are ignored,
360 * and a failure message is returned.
361 */
Damien Miller996acd22003-04-09 20:59:48 +1000362 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000363 }
364 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
365 packet_send();
366 packet_write_wait();
367
368 /* Enable compression now that we have replied if appropriate. */
369 if (enable_compression_after_reply) {
370 enable_compression_after_reply = 0;
371 packet_start_compression(compression_level);
372 }
373 }
374}
375
376/*
377 * This is called to fork and execute a command when we have no tty. This
378 * will call do_child from the child, and server_loop from the parent after
379 * setting up file descriptors and such.
380 */
Damien Miller4af51302000-04-16 11:18:38 +1000381void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000382do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000383{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000384 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000385
386#ifdef USE_PIPES
387 int pin[2], pout[2], perr[2];
388 /* Allocate pipes for communicating with the program. */
389 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
390 packet_disconnect("Could not create pipes: %.100s",
391 strerror(errno));
392#else /* USE_PIPES */
393 int inout[2], err[2];
394 /* Uses socket pairs to communicate with the program. */
395 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
396 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
397 packet_disconnect("Could not create socket pairs: %.100s",
398 strerror(errno));
399#endif /* USE_PIPES */
400 if (s == NULL)
401 fatal("do_exec_no_pty: no session");
402
Damien Millere247cc42000-05-07 12:03:14 +1000403 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000404
Damien Millerc5946332001-02-28 11:46:11 +1100405#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100406 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000407 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000408#endif /* USE_PAM */
409
Damien Millerb38eff82000-04-01 11:09:21 +1000410 /* Fork the child. */
411 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000412 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000413
Damien Millerb38eff82000-04-01 11:09:21 +1000414 /* Child. Reinitialize the log since the pid has changed. */
415 log_init(__progname, options.log_level, options.log_facility, log_stderr);
416
417 /*
418 * Create a new session and process group since the 4.4BSD
419 * setlogin() affects the entire process group.
420 */
421 if (setsid() < 0)
422 error("setsid failed: %.100s", strerror(errno));
423
424#ifdef USE_PIPES
425 /*
426 * Redirect stdin. We close the parent side of the socket
427 * pair, and make the child side the standard input.
428 */
429 close(pin[1]);
430 if (dup2(pin[0], 0) < 0)
431 perror("dup2 stdin");
432 close(pin[0]);
433
434 /* Redirect stdout. */
435 close(pout[0]);
436 if (dup2(pout[1], 1) < 0)
437 perror("dup2 stdout");
438 close(pout[1]);
439
440 /* Redirect stderr. */
441 close(perr[0]);
442 if (dup2(perr[1], 2) < 0)
443 perror("dup2 stderr");
444 close(perr[1]);
445#else /* USE_PIPES */
446 /*
447 * Redirect stdin, stdout, and stderr. Stdin and stdout will
448 * use the same socket, as some programs (particularly rdist)
449 * seem to depend on it.
450 */
451 close(inout[1]);
452 close(err[1]);
453 if (dup2(inout[0], 0) < 0) /* stdin */
454 perror("dup2 stdin");
455 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
456 perror("dup2 stdout");
457 if (dup2(err[0], 2) < 0) /* stderr */
458 perror("dup2 stderr");
459#endif /* USE_PIPES */
460
Tim Rice81ed5182002-09-25 17:38:46 -0700461#ifdef _UNICOS
462 cray_init_job(s->pw); /* set up cray jid and tmpdir */
463#endif
464
Damien Millerb38eff82000-04-01 11:09:21 +1000465 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000466 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000467 /* NOTREACHED */
468 }
Tim Rice81ed5182002-09-25 17:38:46 -0700469#ifdef _UNICOS
470 signal(WJSIGNAL, cray_job_termination_handler);
471#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100472#ifdef HAVE_CYGWIN
473 if (is_winnt)
474 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
475#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000476 if (pid < 0)
477 packet_disconnect("fork failed: %.100s", strerror(errno));
478 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000479 /* Set interactive/non-interactive mode. */
480 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000481#ifdef USE_PIPES
482 /* We are the parent. Close the child sides of the pipes. */
483 close(pin[0]);
484 close(pout[1]);
485 close(perr[1]);
486
Damien Millerefb4afe2000-04-12 18:45:05 +1000487 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000488 if (s->is_subsystem) {
489 close(perr[0]);
490 perr[0] = -1;
491 }
492 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000493 } else {
494 /* Enter the interactive session. */
495 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000496 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000497 }
Damien Millerb38eff82000-04-01 11:09:21 +1000498#else /* USE_PIPES */
499 /* We are the parent. Close the child sides of the socket pairs. */
500 close(inout[0]);
501 close(err[0]);
502
503 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100504 * Clear loginmsg, since it's the child's responsibility to display
505 * it to the user, otherwise multiple sessions may accumulate
506 * multiple copies of the login messages.
507 */
508 buffer_clear(&loginmsg);
509
510 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000511 * Enter the interactive session. Note: server_loop must be able to
512 * handle the case that fdin and fdout are the same.
513 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000514 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000515 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000516 } else {
517 server_loop(pid, inout[1], inout[1], err[1]);
518 /* server_loop has closed inout[1] and err[1]. */
519 }
Damien Millerb38eff82000-04-01 11:09:21 +1000520#endif /* USE_PIPES */
521}
522
523/*
524 * This is called to fork and execute a command when we have a tty. This
525 * will call do_child from the child, and server_loop from the parent after
526 * setting up file descriptors, controlling tty, updating wtmp, utmp,
527 * lastlog, and other such operations.
528 */
Damien Miller4af51302000-04-16 11:18:38 +1000529void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000530do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000531{
Damien Millerb38eff82000-04-01 11:09:21 +1000532 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000533 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000534
535 if (s == NULL)
536 fatal("do_exec_pty: no session");
537 ptyfd = s->ptyfd;
538 ttyfd = s->ttyfd;
539
Damien Millerc5946332001-02-28 11:46:11 +1100540#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000541 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000542 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100543 if (!use_privsep)
544 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000545 }
Damien Miller5a761312001-02-27 09:28:23 +1100546#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000547
Damien Millerb38eff82000-04-01 11:09:21 +1000548 /* Fork the child. */
549 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000550 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000551
Damien Miller942da032000-08-18 13:59:06 +1000552 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000553 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000554 /* Close the master side of the pseudo tty. */
555 close(ptyfd);
556
557 /* Make the pseudo tty our controlling tty. */
558 pty_make_controlling_tty(&ttyfd, s->tty);
559
Damien Miller9c751422001-10-10 15:02:46 +1000560 /* Redirect stdin/stdout/stderr from the pseudo tty. */
561 if (dup2(ttyfd, 0) < 0)
562 error("dup2 stdin: %s", strerror(errno));
563 if (dup2(ttyfd, 1) < 0)
564 error("dup2 stdout: %s", strerror(errno));
565 if (dup2(ttyfd, 2) < 0)
566 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000567
568 /* Close the extra descriptor for the pseudo tty. */
569 close(ttyfd);
570
Damien Miller942da032000-08-18 13:59:06 +1000571 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000572#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700573 if (!(options.use_login && command == NULL)) {
574#ifdef _UNICOS
575 cray_init_job(s->pw); /* set up cray jid and tmpdir */
576#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100577 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700578 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000579# ifdef LOGIN_NEEDS_UTMPX
580 else
581 do_pre_login(s);
582# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000583#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000584
Damien Millerb38eff82000-04-01 11:09:21 +1000585 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000586 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000587 /* NOTREACHED */
588 }
Tim Rice81ed5182002-09-25 17:38:46 -0700589#ifdef _UNICOS
590 signal(WJSIGNAL, cray_job_termination_handler);
591#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100592#ifdef HAVE_CYGWIN
593 if (is_winnt)
594 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
595#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000596 if (pid < 0)
597 packet_disconnect("fork failed: %.100s", strerror(errno));
598 s->pid = pid;
599
600 /* Parent. Close the slave side of the pseudo tty. */
601 close(ttyfd);
602
603 /*
604 * Create another descriptor of the pty master side for use as the
605 * standard input. We could use the original descriptor, but this
606 * simplifies code in server_loop. The descriptor is bidirectional.
607 */
608 fdout = dup(ptyfd);
609 if (fdout < 0)
610 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
611
612 /* we keep a reference to the pty master */
613 ptymaster = dup(ptyfd);
614 if (ptymaster < 0)
615 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
616 s->ptymaster = ptymaster;
617
618 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000619 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000620 if (compat20) {
621 session_set_fds(s, ptyfd, fdout, -1);
622 } else {
623 server_loop(pid, ptyfd, fdout, -1);
624 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000625 }
Damien Millerb38eff82000-04-01 11:09:21 +1000626}
627
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000628#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000629static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000630do_pre_login(Session *s)
631{
632 socklen_t fromlen;
633 struct sockaddr_storage from;
634 pid_t pid = getpid();
635
636 /*
637 * Get IP address of client. If the connection is not a socket, let
638 * the address be 0.0.0.0.
639 */
640 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000641 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000642 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000643 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100644 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000645 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000646 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000647 }
648 }
649
650 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000651 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000652 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000653}
654#endif
655
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000656/*
657 * This is called to fork and execute a command. If another command is
658 * to be forced, execute that instead.
659 */
660void
661do_exec(Session *s, const char *command)
662{
663 if (forced_command) {
664 original_command = command;
665 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000666 debug("Forced command '%.900s'", command);
667 }
668
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100669#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100670 if (command != NULL)
671 PRIVSEP(audit_run_command(command));
672 else if (s->ttyfd == -1) {
673 char *shell = s->pw->pw_shell;
674
675 if (shell[0] == '\0') /* empty shell means /bin/sh */
676 shell =_PATH_BSHELL;
677 PRIVSEP(audit_run_command(shell));
678 }
679#endif
680
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000681 if (s->ttyfd != -1)
682 do_exec_pty(s, command);
683 else
684 do_exec_no_pty(s, command);
685
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000686 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000687
Darren Tucker09991742004-07-17 17:05:14 +1000688 /*
689 * Clear loginmsg: it's the child's responsibility to display
690 * it to the user, otherwise multiple sessions may accumulate
691 * multiple copies of the login messages.
692 */
693 buffer_clear(&loginmsg);
694}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000695
Damien Miller942da032000-08-18 13:59:06 +1000696/* administrative, login(1)-like work */
697void
Damien Miller69b69aa2000-10-28 14:19:58 +1100698do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000699{
Damien Miller942da032000-08-18 13:59:06 +1000700 socklen_t fromlen;
701 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000702 struct passwd * pw = s->pw;
703 pid_t pid = getpid();
704
705 /*
706 * Get IP address of client. If the connection is not a socket, let
707 * the address be 0.0.0.0.
708 */
709 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000710 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000711 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000712 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000713 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000714 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000715 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000716 }
717 }
718
719 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000720 if (!use_privsep)
721 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
722 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000723 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000724 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000725
Kevin Steves092f2ef2000-10-14 13:36:13 +0000726#ifdef USE_PAM
727 /*
728 * If password change is needed, do it now.
729 * This needs to occur before the ~/.hushlogin check.
730 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100731 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
732 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000733 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100734 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000735 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000736 }
737#endif
738
Damien Millercf205e82001-04-16 18:29:15 +1000739 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000740 return;
741
Darren Tucker1921ed92004-02-10 13:23:28 +1100742 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000743
Damien Millercf205e82001-04-16 18:29:15 +1000744 do_motd();
745}
746
747/*
748 * Display the message of the day.
749 */
750void
751do_motd(void)
752{
753 FILE *f;
754 char buf[256];
755
Damien Miller942da032000-08-18 13:59:06 +1000756 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000757#ifdef HAVE_LOGIN_CAP
758 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
759 "/etc/motd"), "r");
760#else
Damien Miller942da032000-08-18 13:59:06 +1000761 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000762#endif
Damien Miller942da032000-08-18 13:59:06 +1000763 if (f) {
764 while (fgets(buf, sizeof(buf), f))
765 fputs(buf, stdout);
766 fclose(f);
767 }
768 }
769}
770
Kevin Steves8f63caa2001-07-04 18:23:02 +0000771
772/*
773 * Check for quiet login, either .hushlogin or command given.
774 */
775int
776check_quietlogin(Session *s, const char *command)
777{
778 char buf[256];
779 struct passwd *pw = s->pw;
780 struct stat st;
781
782 /* Return 1 if .hushlogin exists or a command given. */
783 if (command != NULL)
784 return 1;
785 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
786#ifdef HAVE_LOGIN_CAP
787 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
788 return 1;
789#else
790 if (stat(buf, &st) >= 0)
791 return 1;
792#endif
793 return 0;
794}
795
Damien Millerb38eff82000-04-01 11:09:21 +1000796/*
797 * Sets the value of the given variable in the environment. If the variable
798 * already exists, its value is overriden.
799 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000800void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000801child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100802 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000803{
Damien Millerb38eff82000-04-01 11:09:21 +1000804 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000805 u_int envsize;
806 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000807
808 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000809 * If we're passed an uninitialized list, allocate a single null
810 * entry before continuing.
811 */
812 if (*envp == NULL && *envsizep == 0) {
813 *envp = xmalloc(sizeof(char *));
814 *envp[0] = NULL;
815 *envsizep = 1;
816 }
817
818 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000819 * Find the slot where the value should be stored. If the variable
820 * already exists, we reuse the slot; otherwise we append a new slot
821 * at the end of the array, expanding if necessary.
822 */
823 env = *envp;
824 namelen = strlen(name);
825 for (i = 0; env[i]; i++)
826 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
827 break;
828 if (env[i]) {
829 /* Reuse the slot. */
830 xfree(env[i]);
831 } else {
832 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000833 envsize = *envsizep;
834 if (i >= envsize - 1) {
835 if (envsize >= 1000)
836 fatal("child_set_env: too many env vars");
837 envsize += 50;
838 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
839 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000840 }
841 /* Need to set the NULL pointer at end of array beyond the new slot. */
842 env[i + 1] = NULL;
843 }
844
845 /* Allocate space and format the variable in the appropriate slot. */
846 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
847 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
848}
849
850/*
851 * Reads environment variables from the given file and adds/overrides them
852 * into the environment. If the file does not exist, this does nothing.
853 * Otherwise, it must consist of empty lines, comments (line starts with '#')
854 * and assignments of the form name=value. No other forms are allowed.
855 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000856static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000857read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100858 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000859{
860 FILE *f;
861 char buf[4096];
862 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000863 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000864
865 f = fopen(filename, "r");
866 if (!f)
867 return;
868
869 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000870 if (++lineno > 1000)
871 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000872 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
873 ;
874 if (!*cp || *cp == '#' || *cp == '\n')
875 continue;
876 if (strchr(cp, '\n'))
877 *strchr(cp, '\n') = '\0';
878 value = strchr(cp, '=');
879 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000880 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
881 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000882 continue;
883 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000884 /*
885 * Replace the equals sign by nul, and advance value to
886 * the value string.
887 */
Damien Millerb38eff82000-04-01 11:09:21 +1000888 *value = '\0';
889 value++;
890 child_set_env(env, envsize, cp, value);
891 }
892 fclose(f);
893}
894
Darren Tuckere1a790d2003-09-16 11:52:19 +1000895#ifdef HAVE_ETC_DEFAULT_LOGIN
896/*
897 * Return named variable from specified environment, or NULL if not present.
898 */
899static char *
900child_get_env(char **env, const char *name)
901{
902 int i;
903 size_t len;
904
905 len = strlen(name);
906 for (i=0; env[i] != NULL; i++)
907 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
908 return(env[i] + len + 1);
909 return NULL;
910}
911
912/*
913 * Read /etc/default/login.
914 * We pick up the PATH (or SUPATH for root) and UMASK.
915 */
916static void
917read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
918{
919 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000920 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000921 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000922
923 /*
924 * We don't want to copy the whole file to the child's environment,
925 * so we use a temporary environment and copy the variables we're
926 * interested in.
927 */
928 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
929
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000930 if (tmpenv == NULL)
931 return;
932
Darren Tuckere1a790d2003-09-16 11:52:19 +1000933 if (uid == 0)
934 var = child_get_env(tmpenv, "SUPATH");
935 else
936 var = child_get_env(tmpenv, "PATH");
937 if (var != NULL)
938 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100939
Darren Tuckere1a790d2003-09-16 11:52:19 +1000940 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
941 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000942 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100943
Darren Tuckere1a790d2003-09-16 11:52:19 +1000944 for (i = 0; tmpenv[i] != NULL; i++)
945 xfree(tmpenv[i]);
946 xfree(tmpenv);
947}
948#endif /* HAVE_ETC_DEFAULT_LOGIN */
949
Damien Miller7dff8692005-05-26 11:34:51 +1000950void
951copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000952{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100953 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000954 int i;
955
Damien Millerbb9ffc12002-01-08 10:59:32 +1100956 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000957 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000958
Damien Millerbb9ffc12002-01-08 10:59:32 +1100959 for(i = 0; source[i] != NULL; i++) {
960 var_name = xstrdup(source[i]);
961 if ((var_val = strstr(var_name, "=")) == NULL) {
962 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000963 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000964 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100965 *var_val++ = '\0';
966
967 debug3("Copy environment: %s=%s", var_name, var_val);
968 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100969
Damien Millerbb9ffc12002-01-08 10:59:32 +1100970 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000971 }
972}
Damien Millercb5e44a2000-09-29 12:12:36 +1100973
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000974static char **
975do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000976{
Damien Millerb38eff82000-04-01 11:09:21 +1000977 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000978 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000979 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000980 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000981
Damien Millerb38eff82000-04-01 11:09:21 +1000982 /* Initialize the environment. */
983 envsize = 100;
984 env = xmalloc(envsize * sizeof(char *));
985 env[0] = NULL;
986
Damien Millerbac2d8a2000-09-05 16:13:06 +1100987#ifdef HAVE_CYGWIN
988 /*
989 * The Windows environment contains some setting which are
990 * important for a running system. They must not be dropped.
991 */
Darren Tucker14c372d2004-08-30 20:42:08 +1000992 {
993 char **p;
994
995 p = fetch_windows_environment();
996 copy_environment(p, &env, &envsize);
997 free_windows_environment(p);
998 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100999#endif
1000
Darren Tucker0efd1552003-08-26 11:49:55 +10001001#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001002 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001003 * the childs environment as they see fit
1004 */
1005 ssh_gssapi_do_child(&env, &envsize);
1006#endif
1007
Damien Millerb38eff82000-04-01 11:09:21 +10001008 if (!options.use_login) {
1009 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001010 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001011 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001012 s->env[i].val);
1013
Damien Millerb38eff82000-04-01 11:09:21 +10001014 child_set_env(&env, &envsize, "USER", pw->pw_name);
1015 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001016#ifdef _AIX
1017 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1018#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001019 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001020#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001021 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1022 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1023 else
1024 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001025#else /* HAVE_LOGIN_CAP */
1026# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001027 /*
1028 * There's no standard path on Windows. The path contains
1029 * important components pointing to the system directories,
1030 * needed for loading shared libraries. So the path better
1031 * remains intact here.
1032 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001033# ifdef HAVE_ETC_DEFAULT_LOGIN
1034 read_etc_default_login(&env, &envsize, pw->pw_uid);
1035 path = child_get_env(env, "PATH");
1036# endif /* HAVE_ETC_DEFAULT_LOGIN */
1037 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001038 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001039 s->pw->pw_uid == 0 ?
1040 SUPERUSER_PATH : _PATH_STDPATH);
1041 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001042# endif /* HAVE_CYGWIN */
1043#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001044
1045 snprintf(buf, sizeof buf, "%.200s/%.50s",
1046 _PATH_MAILDIR, pw->pw_name);
1047 child_set_env(&env, &envsize, "MAIL", buf);
1048
1049 /* Normal systems set SHELL by default. */
1050 child_set_env(&env, &envsize, "SHELL", shell);
1051 }
1052 if (getenv("TZ"))
1053 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1054
1055 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001056 if (!options.use_login) {
1057 while (custom_environment) {
1058 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001059 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001060
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001061 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001062 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001063 if (str[i] == '=') {
1064 str[i] = 0;
1065 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001066 }
1067 custom_environment = ce->next;
1068 xfree(ce->s);
1069 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001070 }
Damien Millerb38eff82000-04-01 11:09:21 +10001071 }
1072
Damien Millerf37e2462002-09-19 11:47:55 +10001073 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001074 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001075 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001076 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1077
Damien Miller00111382003-03-10 11:21:17 +11001078 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001079 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001080 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1081 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001082 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1083
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001084 if (s->ttyfd != -1)
1085 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1086 if (s->term)
1087 child_set_env(&env, &envsize, "TERM", s->term);
1088 if (s->display)
1089 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001090 if (original_command)
1091 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1092 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001093
Tim Rice81ed5182002-09-25 17:38:46 -07001094#ifdef _UNICOS
1095 if (cray_tmpdir[0] != '\0')
1096 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1097#endif /* _UNICOS */
1098
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001099 /*
1100 * Since we clear KRB5CCNAME at startup, if it's set now then it
1101 * must have been set by a native authentication method (eg AIX or
1102 * SIA), so copy it to the child.
1103 */
1104 {
1105 char *cp;
1106
1107 if ((cp = getenv("KRB5CCNAME")) != NULL)
1108 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1109 }
1110
Damien Millerb38eff82000-04-01 11:09:21 +10001111#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001112 {
1113 char *cp;
1114
1115 if ((cp = getenv("AUTHSTATE")) != NULL)
1116 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001117 read_environment_file(&env, &envsize, "/etc/environment");
1118 }
Damien Millerb38eff82000-04-01 11:09:21 +10001119#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001120#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001121 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001122 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001123 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001124#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001125#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001126 /*
1127 * Pull in any environment variables that may have
1128 * been set by PAM.
1129 */
Damien Miller4e448a32003-05-14 15:11:48 +10001130 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001131 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001132
Damien Millerc756e9b2003-11-17 21:41:42 +11001133 p = fetch_pam_child_environment();
1134 copy_environment(p, &env, &envsize);
1135 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001136
Damien Millerc756e9b2003-11-17 21:41:42 +11001137 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001138 copy_environment(p, &env, &envsize);
1139 free_pam_environment(p);
1140 }
Damien Millerb38eff82000-04-01 11:09:21 +10001141#endif /* USE_PAM */
1142
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001143 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001144 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001145 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001146
1147 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001148 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001149 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001150 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001151 read_environment_file(&env, &envsize, buf);
1152 }
1153 if (debug_flag) {
1154 /* dump the environment */
1155 fprintf(stderr, "Environment:\n");
1156 for (i = 0; env[i]; i++)
1157 fprintf(stderr, " %.200s\n", env[i]);
1158 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001159 return env;
1160}
1161
1162/*
1163 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1164 * first in this order).
1165 */
1166static void
1167do_rc_files(Session *s, const char *shell)
1168{
1169 FILE *f = NULL;
1170 char cmd[1024];
1171 int do_xauth;
1172 struct stat st;
1173
1174 do_xauth =
1175 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1176
1177 /* ignore _PATH_SSH_USER_RC for subsystems */
1178 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1179 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1180 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1181 if (debug_flag)
1182 fprintf(stderr, "Running %s\n", cmd);
1183 f = popen(cmd, "w");
1184 if (f) {
1185 if (do_xauth)
1186 fprintf(f, "%s %s\n", s->auth_proto,
1187 s->auth_data);
1188 pclose(f);
1189 } else
1190 fprintf(stderr, "Could not run %s\n",
1191 _PATH_SSH_USER_RC);
1192 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1193 if (debug_flag)
1194 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1195 _PATH_SSH_SYSTEM_RC);
1196 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1197 if (f) {
1198 if (do_xauth)
1199 fprintf(f, "%s %s\n", s->auth_proto,
1200 s->auth_data);
1201 pclose(f);
1202 } else
1203 fprintf(stderr, "Could not run %s\n",
1204 _PATH_SSH_SYSTEM_RC);
1205 } else if (do_xauth && options.xauth_location != NULL) {
1206 /* Add authority data to .Xauthority if appropriate. */
1207 if (debug_flag) {
1208 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001209 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001210 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001211 fprintf(stderr,
1212 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001213 options.xauth_location, s->auth_display,
1214 s->auth_proto, s->auth_data);
1215 }
1216 snprintf(cmd, sizeof cmd, "%s -q -",
1217 options.xauth_location);
1218 f = popen(cmd, "w");
1219 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001220 fprintf(f, "remove %s\n",
1221 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001222 fprintf(f, "add %s %s %s\n",
1223 s->auth_display, s->auth_proto,
1224 s->auth_data);
1225 pclose(f);
1226 } else {
1227 fprintf(stderr, "Could not run %s\n",
1228 cmd);
1229 }
1230 }
1231}
1232
1233static void
1234do_nologin(struct passwd *pw)
1235{
1236 FILE *f = NULL;
1237 char buf[1024];
1238
1239#ifdef HAVE_LOGIN_CAP
1240 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1241 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1242 _PATH_NOLOGIN), "r");
1243#else
1244 if (pw->pw_uid)
1245 f = fopen(_PATH_NOLOGIN, "r");
1246#endif
1247 if (f) {
1248 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001249 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001250 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001251 while (fgets(buf, sizeof(buf), f))
1252 fputs(buf, stderr);
1253 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001254 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001255 exit(254);
1256 }
1257}
1258
1259/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001260void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001261do_setusercontext(struct passwd *pw)
1262{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001263#ifndef HAVE_CYGWIN
1264 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001265#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001266 {
1267
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001268#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001269 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1270 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001271#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001272#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001273# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001274 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001275# endif
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001276#ifdef GSSAPI
1277 if (options.gss_authentication) {
1278 temporarily_use_uid(pw);
1279 ssh_gssapi_storecreds();
1280 restore_uid();
1281 }
1282#endif
Damien Millerd3526362004-01-23 14:16:26 +11001283# ifdef USE_PAM
1284 if (options.use_pam) {
1285 do_pam_session();
1286 do_pam_setcred(0);
1287 }
1288# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001289 if (setusercontext(lc, pw, pw->pw_uid,
1290 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1291 perror("unable to set user context");
1292 exit(1);
1293 }
1294#else
1295# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1296 /* Sets login uid for accounting */
1297 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1298 error("setluid: %s", strerror(errno));
1299# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1300
1301 if (setlogin(pw->pw_name) < 0)
1302 error("setlogin failed: %s", strerror(errno));
1303 if (setgid(pw->pw_gid) < 0) {
1304 perror("setgid");
1305 exit(1);
1306 }
1307 /* Initialize the group list. */
1308 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1309 perror("initgroups");
1310 exit(1);
1311 }
1312 endgrent();
Darren Tuckerc97b01a2005-02-16 16:47:37 +11001313#ifdef GSSAPI
1314 if (options.gss_authentication) {
1315 temporarily_use_uid(pw);
1316 ssh_gssapi_storecreds();
1317 restore_uid();
1318 }
1319#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001320# ifdef USE_PAM
1321 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001322 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001323 * These will have been wiped by the above initgroups() call.
1324 * Reestablish them here.
1325 */
Damien Miller341c6e62003-09-02 23:18:52 +10001326 if (options.use_pam) {
1327 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001328 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001329 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001330# endif /* USE_PAM */
1331# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1332 irix_setusercontext(pw);
1333# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001334# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001335 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001336# endif /* _AIX */
Tim Rice66fd2172005-08-31 09:59:49 -07001337#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -07001338 if (set_id(pw->pw_name) != 0) {
1339 exit(1);
1340 }
Tim Rice66fd2172005-08-31 09:59:49 -07001341#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001342 /* Permanently switch to the desired uid. */
1343 permanently_set_uid(pw);
1344#endif
1345 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001346
1347#ifdef HAVE_CYGWIN
1348 if (is_winnt)
1349#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001350 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1351 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1352}
1353
Ben Lindstrom08105192002-03-22 02:50:06 +00001354static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001355do_pwchange(Session *s)
1356{
Darren Tucker09991742004-07-17 17:05:14 +10001357 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001358 fprintf(stderr, "WARNING: Your password has expired.\n");
1359 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001360 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001361 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001362#ifdef PASSWD_NEEDS_USERNAME
1363 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1364 (char *)NULL);
1365#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001366 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001367#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001368 perror("passwd");
1369 } else {
1370 fprintf(stderr,
1371 "Password change required but no TTY available.\n");
1372 }
1373 exit(1);
1374}
1375
1376static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377launch_login(struct passwd *pw, const char *hostname)
1378{
1379 /* Launch login(1). */
1380
Ben Lindstrom378a4172002-06-07 14:49:56 +00001381 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001382#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001383 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001384#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001385#ifdef LOGIN_NO_ENDOPT
1386 "-p", "-f", pw->pw_name, (char *)NULL);
1387#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001388 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001389#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001390
1391 /* Login couldn't be executed, die. */
1392
1393 perror("login");
1394 exit(1);
1395}
1396
Darren Tucker23bc8d02004-02-06 16:24:31 +11001397static void
1398child_close_fds(void)
1399{
1400 int i;
1401
1402 if (packet_get_connection_in() == packet_get_connection_out())
1403 close(packet_get_connection_in());
1404 else {
1405 close(packet_get_connection_in());
1406 close(packet_get_connection_out());
1407 }
1408 /*
1409 * Close all descriptors related to channels. They will still remain
1410 * open in the parent.
1411 */
1412 /* XXX better use close-on-exec? -markus */
1413 channel_close_all();
1414
1415 /*
1416 * Close any extra file descriptors. Note that there may still be
1417 * descriptors left by system functions. They will be closed later.
1418 */
1419 endpwent();
1420
1421 /*
1422 * Close any extra open file descriptors so that we don\'t have them
1423 * hanging around in clients. Note that we want to do this after
1424 * initgroups, because at least on Solaris 2.3 it leaves file
1425 * descriptors open.
1426 */
1427 for (i = 3; i < 64; i++)
1428 close(i);
1429}
1430
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001431/*
1432 * Performs common processing for the child, such as setting up the
1433 * environment, closing extra file descriptors, setting the user and group
1434 * ids, and executing the command or shell.
1435 */
1436void
1437do_child(Session *s, const char *command)
1438{
1439 extern char **environ;
1440 char **env;
1441 char *argv[10];
1442 const char *shell, *shell0, *hostname = NULL;
1443 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001444
1445 /* remove hostkey from the child's memory */
1446 destroy_sensitive_data();
1447
Darren Tucker23bc8d02004-02-06 16:24:31 +11001448 /* Force a password change */
1449 if (s->authctxt->force_pwchange) {
1450 do_setusercontext(pw);
1451 child_close_fds();
1452 do_pwchange(s);
1453 exit(1);
1454 }
1455
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001456 /* login(1) is only called if we execute the login shell */
1457 if (options.use_login && command != NULL)
1458 options.use_login = 0;
1459
Tim Rice81ed5182002-09-25 17:38:46 -07001460#ifdef _UNICOS
1461 cray_setup(pw->pw_uid, pw->pw_name, command);
1462#endif /* _UNICOS */
1463
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001464 /*
1465 * Login(1) does this as well, and it needs uid 0 for the "-h"
1466 * switch, so we let login(1) to this for us.
1467 */
1468 if (!options.use_login) {
1469#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001470 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001471 if (!check_quietlogin(s, command))
1472 do_motd();
1473#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001474 /* When PAM is enabled we rely on it to do the nologin check */
1475 if (!options.use_pam)
1476 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001477 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001478 /*
1479 * PAM session modules in do_setusercontext may have
1480 * generated messages, so if this in an interactive
1481 * login then display them too.
1482 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001483 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001484 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001485#endif /* HAVE_OSF_SIA */
1486 }
1487
Darren Tucker69687f42004-09-11 22:17:26 +10001488#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001489 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1490 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001491 display_loginmsg();
1492 exit(254);
1493 }
1494#endif
1495
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001496 /*
1497 * Get the shell from the password data. An empty shell field is
1498 * legal, and means /bin/sh.
1499 */
1500 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001501
1502 /*
1503 * Make sure $SHELL points to the shell from the password file,
1504 * even if shell is overridden from login.conf
1505 */
1506 env = do_setup_env(s, shell);
1507
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001508#ifdef HAVE_LOGIN_CAP
1509 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1510#endif
1511
Damien Millerad833b32000-08-23 10:46:23 +10001512 /* we have to stash the hostname before we close our socket. */
1513 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001514 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001515 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001516 /*
1517 * Close the connection descriptors; note that this is the child, and
1518 * the server will still have the socket open, and it is important
1519 * that we do not shutdown it. Note that the descriptors cannot be
1520 * closed before building the environment, as we call
1521 * get_remote_ipaddr there.
1522 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001523 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001524
Damien Millerb38eff82000-04-01 11:09:21 +10001525 /*
Damien Miller05eda432002-02-10 18:32:28 +11001526 * Must take new environment into use so that .ssh/rc,
1527 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001528 */
1529 environ = env;
1530
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001531#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001532 /*
1533 * At this point, we check to see if AFS is active and if we have
1534 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1535 * if we can (and need to) extend the ticket into an AFS token. If
1536 * we don't do this, we run into potential problems if the user's
1537 * home directory is in AFS and it's not world-readable.
1538 */
1539
1540 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001541 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001542 char cell[64];
1543
1544 debug("Getting AFS token");
1545
1546 k_setpag();
1547
1548 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1549 krb5_afslog(s->authctxt->krb5_ctx,
1550 s->authctxt->krb5_fwd_ccache, cell, NULL);
1551
1552 krb5_afslog_home(s->authctxt->krb5_ctx,
1553 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1554 }
1555#endif
1556
Damien Miller139d4cd2001-10-10 15:07:44 +10001557 /* Change current directory to the user\'s home directory. */
1558 if (chdir(pw->pw_dir) < 0) {
1559 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1560 pw->pw_dir, strerror(errno));
1561#ifdef HAVE_LOGIN_CAP
1562 if (login_getcapbool(lc, "requirehome", 0))
1563 exit(1);
1564#endif
1565 }
1566
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001567 if (!options.use_login)
1568 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001569
1570 /* restore SIGPIPE for child */
1571 signal(SIGPIPE, SIG_DFL);
1572
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001573 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001574 launch_login(pw, hostname);
1575 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001576 }
1577
1578 /* Get the last component of the shell name. */
1579 if ((shell0 = strrchr(shell, '/')) != NULL)
1580 shell0++;
1581 else
1582 shell0 = shell;
1583
Damien Millerb38eff82000-04-01 11:09:21 +10001584 /*
1585 * If we have no command, execute the shell. In this case, the shell
1586 * name to be passed in argv[0] is preceded by '-' to indicate that
1587 * this is a login shell.
1588 */
1589 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001590 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001591
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001592 /* Start the shell. Set initial character to '-'. */
1593 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001594
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001595 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1596 >= sizeof(argv0) - 1) {
1597 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001598 perror(shell);
1599 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001600 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001601
1602 /* Execute the shell. */
1603 argv[0] = argv0;
1604 argv[1] = NULL;
1605 execve(shell, argv, env);
1606
1607 /* Executing the shell failed. */
1608 perror(shell);
1609 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001610 }
1611 /*
1612 * Execute the command using the user's shell. This uses the -c
1613 * option to execute the command.
1614 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001615 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001616 argv[1] = "-c";
1617 argv[2] = (char *) command;
1618 argv[3] = NULL;
1619 execve(shell, argv, env);
1620 perror(shell);
1621 exit(1);
1622}
1623
1624Session *
1625session_new(void)
1626{
1627 int i;
1628 static int did_init = 0;
1629 if (!did_init) {
1630 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001631 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001632 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001633 }
1634 did_init = 1;
1635 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001636 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001637 Session *s = &sessions[i];
1638 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001639 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001640 s->chanid = -1;
1641 s->ptyfd = -1;
1642 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001643 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001644 s->self = i;
Damien Miller2b9b0452005-07-17 17:19:24 +10001645 s->x11_chanids = NULL;
Damien Miller15b29522000-10-14 12:33:48 +11001646 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001647 return s;
1648 }
1649 }
1650 return NULL;
1651}
1652
Ben Lindstrombba81212001-06-25 05:01:22 +00001653static void
Damien Millerb38eff82000-04-01 11:09:21 +10001654session_dump(void)
1655{
1656 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001657 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001658 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001659 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001660 s->used,
1661 s->self,
1662 s,
1663 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001664 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001665 }
1666}
1667
Damien Millerefb4afe2000-04-12 18:45:05 +10001668int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001669session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001670{
1671 Session *s = session_new();
1672 debug("session_open: channel %d", chanid);
1673 if (s == NULL) {
1674 error("no more sessions");
1675 return 0;
1676 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001677 s->authctxt = authctxt;
1678 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001679 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001680 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001681 debug("session_open: session %d: link with channel %d", s->self, chanid);
1682 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001683 return 1;
1684}
1685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686Session *
1687session_by_tty(char *tty)
1688{
1689 int i;
1690 for (i = 0; i < MAX_SESSIONS; i++) {
1691 Session *s = &sessions[i];
1692 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1693 debug("session_by_tty: session %d tty %s", i, tty);
1694 return s;
1695 }
1696 }
1697 debug("session_by_tty: unknown tty %.100s", tty);
1698 session_dump();
1699 return NULL;
1700}
1701
Ben Lindstrombba81212001-06-25 05:01:22 +00001702static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001703session_by_channel(int id)
1704{
1705 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001706 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001707 Session *s = &sessions[i];
1708 if (s->used && s->chanid == id) {
1709 debug("session_by_channel: session %d channel %d", i, id);
1710 return s;
1711 }
1712 }
1713 debug("session_by_channel: unknown channel %d", id);
1714 session_dump();
1715 return NULL;
1716}
1717
Ben Lindstrombba81212001-06-25 05:01:22 +00001718static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001719session_by_x11_channel(int id)
1720{
1721 int i, j;
1722
1723 for (i = 0; i < MAX_SESSIONS; i++) {
1724 Session *s = &sessions[i];
1725
1726 if (s->x11_chanids == NULL || !s->used)
1727 continue;
1728 for (j = 0; s->x11_chanids[j] != -1; j++) {
1729 if (s->x11_chanids[j] == id) {
1730 debug("session_by_x11_channel: session %d "
1731 "channel %d", s->self, id);
1732 return s;
1733 }
1734 }
1735 }
1736 debug("session_by_x11_channel: unknown channel %d", id);
1737 session_dump();
1738 return NULL;
1739}
1740
1741static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001742session_by_pid(pid_t pid)
1743{
1744 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001745 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001746 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001747 Session *s = &sessions[i];
1748 if (s->used && s->pid == pid)
1749 return s;
1750 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001751 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001752 session_dump();
1753 return NULL;
1754}
1755
Ben Lindstrombba81212001-06-25 05:01:22 +00001756static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001757session_window_change_req(Session *s)
1758{
1759 s->col = packet_get_int();
1760 s->row = packet_get_int();
1761 s->xpixel = packet_get_int();
1762 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001763 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001764 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1765 return 1;
1766}
1767
Ben Lindstrombba81212001-06-25 05:01:22 +00001768static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001769session_pty_req(Session *s)
1770{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001771 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001772 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001773
Ben Lindstrom49c12602001-06-13 04:37:36 +00001774 if (no_pty_flag) {
1775 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001776 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001777 }
1778 if (s->ttyfd != -1) {
1779 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001780 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001781 }
1782
Damien Millerefb4afe2000-04-12 18:45:05 +10001783 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001784
1785 if (compat20) {
1786 s->col = packet_get_int();
1787 s->row = packet_get_int();
1788 } else {
1789 s->row = packet_get_int();
1790 s->col = packet_get_int();
1791 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001792 s->xpixel = packet_get_int();
1793 s->ypixel = packet_get_int();
1794
1795 if (strcmp(s->term, "") == 0) {
1796 xfree(s->term);
1797 s->term = NULL;
1798 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001799
Damien Millerefb4afe2000-04-12 18:45:05 +10001800 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001801 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001802 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001803 if (s->term)
1804 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001805 s->term = NULL;
1806 s->ptyfd = -1;
1807 s->ttyfd = -1;
1808 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001809 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001810 }
1811 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001812
1813 /* for SSH1 the tty modes length is not given */
1814 if (!compat20)
1815 n_bytes = packet_remaining();
1816 tty_parse_modes(s->ttyfd, &n_bytes);
1817
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001818 if (!use_privsep)
1819 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001820
1821 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001822 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1823
Damien Miller48b03fc2002-01-22 23:11:40 +11001824 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001825 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001826 return 1;
1827}
1828
Ben Lindstrombba81212001-06-25 05:01:22 +00001829static int
Damien Millerbd483e72000-04-30 10:00:53 +10001830session_subsystem_req(Session *s)
1831{
Damien Millerae452462001-10-10 15:08:06 +10001832 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001833 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001834 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001835 char *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10001836 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001837
Damien Miller48b03fc2002-01-22 23:11:40 +11001838 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001839 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001840
Damien Millerf6d9e222000-06-18 14:50:44 +10001841 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001842 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1843 cmd = options.subsystem_command[i];
1844 if (stat(cmd, &st) < 0) {
1845 error("subsystem: cannot stat %s: %s", cmd,
1846 strerror(errno));
1847 break;
1848 }
1849 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001850 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001851 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001852 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001853 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001854 }
1855 }
1856
1857 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001858 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001859 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001860
Damien Millerbd483e72000-04-30 10:00:53 +10001861 xfree(subsys);
1862 return success;
1863}
1864
Ben Lindstrombba81212001-06-25 05:01:22 +00001865static int
Damien Millerbd483e72000-04-30 10:00:53 +10001866session_x11_req(Session *s)
1867{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001868 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001869
Damien Miller2b9b0452005-07-17 17:19:24 +10001870 if (s->auth_proto != NULL || s->auth_data != NULL) {
1871 error("session_x11_req: session %d: "
1872 "x11 fowarding already active", s->self);
1873 return 0;
1874 }
Damien Millerbd483e72000-04-30 10:00:53 +10001875 s->single_connection = packet_get_char();
1876 s->auth_proto = packet_get_string(NULL);
1877 s->auth_data = packet_get_string(NULL);
1878 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001879 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001880
Ben Lindstrom768176b2001-06-09 01:29:12 +00001881 success = session_setup_x11fwd(s);
1882 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001883 xfree(s->auth_proto);
1884 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001885 s->auth_proto = NULL;
1886 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001887 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001888 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001889}
1890
Ben Lindstrombba81212001-06-25 05:01:22 +00001891static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001892session_shell_req(Session *s)
1893{
Damien Miller48b03fc2002-01-22 23:11:40 +11001894 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001895 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001896 return 1;
1897}
1898
Ben Lindstrombba81212001-06-25 05:01:22 +00001899static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001900session_exec_req(Session *s)
1901{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001902 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001903 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001904 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001905 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001906 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001907 return 1;
1908}
1909
Ben Lindstrombba81212001-06-25 05:01:22 +00001910static int
Damien Miller54c45982003-05-15 10:20:13 +10001911session_break_req(Session *s)
1912{
Damien Miller54c45982003-05-15 10:20:13 +10001913
Darren Tucker1f8311c2004-05-13 16:39:33 +10001914 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001915 packet_check_eom();
1916
Darren Tucker3bdbd842003-08-13 20:31:05 +10001917 if (s->ttyfd == -1 ||
1918 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001919 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001920 return 1;
1921}
1922
1923static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001924session_env_req(Session *s)
1925{
1926 char *name, *val;
1927 u_int name_len, val_len, i;
1928
1929 name = packet_get_string(&name_len);
1930 val = packet_get_string(&val_len);
1931 packet_check_eom();
1932
1933 /* Don't set too many environment variables */
1934 if (s->num_env > 128) {
1935 debug2("Ignoring env request %s: too many env vars", name);
1936 goto fail;
1937 }
1938
1939 for (i = 0; i < options.num_accept_env; i++) {
1940 if (match_pattern(name, options.accept_env[i])) {
1941 debug2("Setting env %d: %s=%s", s->num_env, name, val);
1942 s->env = xrealloc(s->env, sizeof(*s->env) *
1943 (s->num_env + 1));
1944 s->env[s->num_env].name = name;
1945 s->env[s->num_env].val = val;
1946 s->num_env++;
1947 return (1);
1948 }
1949 }
1950 debug2("Ignoring env request %s: disallowed name", name);
1951
1952 fail:
1953 xfree(name);
1954 xfree(val);
1955 return (0);
1956}
1957
1958static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001959session_auth_agent_req(Session *s)
1960{
1961 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001962 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001963 if (no_agent_forwarding_flag) {
1964 debug("session_auth_agent_req: no_agent_forwarding_flag");
1965 return 0;
1966 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001967 if (called) {
1968 return 0;
1969 } else {
1970 called = 1;
1971 return auth_input_request_forwarding(s->pw);
1972 }
1973}
1974
Damien Millerc7ef63d2002-02-05 12:21:42 +11001975int
1976session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001977{
Damien Millerefb4afe2000-04-12 18:45:05 +10001978 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001979 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001980
Damien Millerc7ef63d2002-02-05 12:21:42 +11001981 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001982 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001983 c->self, rtype);
1984 return 0;
1985 }
1986 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001987
1988 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001989 * a session is in LARVAL state until a shell, a command
1990 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001991 */
1992 if (c->type == SSH_CHANNEL_LARVAL) {
1993 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001994 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001995 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001996 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001997 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001998 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001999 } else if (strcmp(rtype, "x11-req") == 0) {
2000 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002001 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2002 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002003 } else if (strcmp(rtype, "subsystem") == 0) {
2004 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002005 } else if (strcmp(rtype, "env") == 0) {
2006 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002007 }
2008 }
2009 if (strcmp(rtype, "window-change") == 0) {
2010 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002011 } else if (strcmp(rtype, "break") == 0) {
2012 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002013 }
Damien Millera6b1d162004-06-30 22:41:07 +10002014
Damien Millerc7ef63d2002-02-05 12:21:42 +11002015 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002016}
2017
2018void
2019session_set_fds(Session *s, int fdin, int fdout, int fderr)
2020{
2021 if (!compat20)
2022 fatal("session_set_fds: called for proto != 2.0");
2023 /*
2024 * now that have a child and a pipe to the child,
2025 * we can activate our channel and register the fd's
2026 */
2027 if (s->chanid == -1)
2028 fatal("no channel for session %d", s->self);
2029 channel_set_fds(s->chanid,
2030 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002031 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002032 1,
2033 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002034}
2035
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002036/*
2037 * Function to perform pty cleanup. Also called if we get aborted abnormally
2038 * (e.g., due to a dropped connection).
2039 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002040void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002041session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002042{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002043 if (s == NULL) {
2044 error("session_pty_cleanup: no session");
2045 return;
2046 }
2047 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002048 return;
2049
Kevin Steves43cdef32001-02-11 14:12:08 +00002050 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002051
Damien Millerb38eff82000-04-01 11:09:21 +10002052 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002053 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002054 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002055
2056 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002057 if (getuid() == 0)
2058 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002059
2060 /*
2061 * Close the server side of the socket pairs. We must do this after
2062 * the pty cleanup, so that another process doesn't get this pty
2063 * while we're still cleaning up.
2064 */
2065 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002066 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002067
2068 /* unlink pty from session */
2069 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002070}
Damien Millerefb4afe2000-04-12 18:45:05 +10002071
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002072void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002073session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002074{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002075 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002076}
2077
Damien Miller5a80bba2002-09-04 16:39:02 +10002078static char *
2079sig2name(int sig)
2080{
2081#define SSH_SIG(x) if (sig == SIG ## x) return #x
2082 SSH_SIG(ABRT);
2083 SSH_SIG(ALRM);
2084 SSH_SIG(FPE);
2085 SSH_SIG(HUP);
2086 SSH_SIG(ILL);
2087 SSH_SIG(INT);
2088 SSH_SIG(KILL);
2089 SSH_SIG(PIPE);
2090 SSH_SIG(QUIT);
2091 SSH_SIG(SEGV);
2092 SSH_SIG(TERM);
2093 SSH_SIG(USR1);
2094 SSH_SIG(USR2);
2095#undef SSH_SIG
2096 return "SIG@openssh.com";
2097}
2098
Ben Lindstrombba81212001-06-25 05:01:22 +00002099static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002100session_close_x11(int id)
2101{
2102 Channel *c;
2103
2104 if ((c = channel_lookup(id)) == NULL) {
2105 debug("session_close_x11: x11 channel %d missing", id);
2106 } else {
2107 /* Detach X11 listener */
2108 debug("session_close_x11: detach x11 channel %d", id);
2109 channel_cancel_cleanup(id);
2110 if (c->ostate != CHAN_OUTPUT_CLOSED)
2111 chan_mark_dead(c);
2112 }
2113}
2114
2115static void
2116session_close_single_x11(int id, void *arg)
2117{
2118 Session *s;
2119 u_int i;
2120
2121 debug3("session_close_single_x11: channel %d", id);
2122 channel_cancel_cleanup(id);
2123 if ((s = session_by_x11_channel(id)) == NULL)
2124 fatal("session_close_single_x11: no x11 channel %d", id);
2125 for (i = 0; s->x11_chanids[i] != -1; i++) {
2126 debug("session_close_single_x11: session %d: "
2127 "closing channel %d", s->self, s->x11_chanids[i]);
2128 /*
2129 * The channel "id" is already closing, but make sure we
2130 * close all of its siblings.
2131 */
2132 if (s->x11_chanids[i] != id)
2133 session_close_x11(s->x11_chanids[i]);
2134 }
2135 xfree(s->x11_chanids);
2136 s->x11_chanids = NULL;
2137 if (s->display) {
2138 xfree(s->display);
2139 s->display = NULL;
2140 }
2141 if (s->auth_proto) {
2142 xfree(s->auth_proto);
2143 s->auth_proto = NULL;
2144 }
2145 if (s->auth_data) {
2146 xfree(s->auth_data);
2147 s->auth_data = NULL;
2148 }
2149 if (s->auth_display) {
2150 xfree(s->auth_display);
2151 s->auth_display = NULL;
2152 }
2153}
2154
2155static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002156session_exit_message(Session *s, int status)
2157{
2158 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002159
2160 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002161 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002162 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002163 debug("session_exit_message: session %d channel %d pid %ld",
2164 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002165
2166 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002167 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002168 packet_put_int(WEXITSTATUS(status));
2169 packet_send();
2170 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002171 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002172 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002173#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002174 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002175#else /* WCOREDUMP */
2176 packet_put_char(0);
2177#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002178 packet_put_cstring("");
2179 packet_put_cstring("");
2180 packet_send();
2181 } else {
2182 /* Some weird exit cause. Just exit. */
2183 packet_disconnect("wait returned status %04x.", status);
2184 }
2185
2186 /* disconnect channel */
2187 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002188 s->pid = 0;
2189
2190 /*
2191 * Adjust cleanup callback attachment to send close messages when
2192 * the channel gets EOF. The session will be then be closed
2193 * by session_close_by_channel when the childs close their fds.
2194 */
2195 channel_register_cleanup(c->self, session_close_by_channel, 1);
2196
Damien Miller166fca82000-04-20 07:42:21 +10002197 /*
2198 * emulate a write failure with 'chan_write_failed', nobody will be
2199 * interested in data we write.
2200 * Note that we must not call 'chan_read_failed', since there could
2201 * be some more data waiting in the pipe.
2202 */
Damien Millerbd483e72000-04-30 10:00:53 +10002203 if (c->ostate != CHAN_OUTPUT_CLOSED)
2204 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002205}
2206
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002207void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002208session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002209{
Damien Millereccb9de2005-06-17 12:59:34 +10002210 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002211
Ben Lindstromce0f6342002-06-11 16:42:49 +00002212 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002213 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002214 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002215 if (s->term)
2216 xfree(s->term);
2217 if (s->display)
2218 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002219 if (s->x11_chanids)
2220 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002221 if (s->auth_display)
2222 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002223 if (s->auth_data)
2224 xfree(s->auth_data);
2225 if (s->auth_proto)
2226 xfree(s->auth_proto);
2227 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002228 for (i = 0; i < s->num_env; i++) {
2229 xfree(s->env[i].name);
2230 xfree(s->env[i].val);
2231 }
2232 if (s->env != NULL)
2233 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002234 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002235}
2236
2237void
2238session_close_by_pid(pid_t pid, int status)
2239{
2240 Session *s = session_by_pid(pid);
2241 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002242 debug("session_close_by_pid: no session for pid %ld",
2243 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002244 return;
2245 }
2246 if (s->chanid != -1)
2247 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002248 if (s->ttyfd != -1)
2249 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002250}
2251
2252/*
2253 * this is called when a channel dies before
2254 * the session 'child' itself dies
2255 */
2256void
2257session_close_by_channel(int id, void *arg)
2258{
2259 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002260 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002261
Damien Millerefb4afe2000-04-12 18:45:05 +10002262 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002263 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002264 return;
2265 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002266 debug("session_close_by_channel: channel %d child %ld",
2267 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002268 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002269 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002270 /*
2271 * delay detach of session, but release pty, since
2272 * the fd's to the child are already closed
2273 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002274 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002275 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002276 return;
2277 }
2278 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002279 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002280
2281 /* Close any X11 listeners associated with this session */
2282 if (s->x11_chanids != NULL) {
2283 for (i = 0; s->x11_chanids[i] != -1; i++) {
2284 session_close_x11(s->x11_chanids[i]);
2285 s->x11_chanids[i] = -1;
2286 }
2287 }
2288
Damien Millerefb4afe2000-04-12 18:45:05 +10002289 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002290 session_close(s);
2291}
2292
2293void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002294session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002295{
2296 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002297 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002298 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002299 if (s->used) {
2300 if (closefunc != NULL)
2301 closefunc(s);
2302 else
2303 session_close(s);
2304 }
Damien Miller52b77be2001-10-10 15:14:37 +10002305 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002306}
2307
Ben Lindstrombba81212001-06-25 05:01:22 +00002308static char *
Damien Millere247cc42000-05-07 12:03:14 +10002309session_tty_list(void)
2310{
2311 static char buf[1024];
2312 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002313 char *cp;
2314
Damien Millere247cc42000-05-07 12:03:14 +10002315 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002316 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002317 Session *s = &sessions[i];
2318 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002319
Damien Millera8ed44b2003-01-10 09:53:12 +11002320 if (strncmp(s->tty, "/dev/", 5) != 0) {
2321 cp = strrchr(s->tty, '/');
2322 cp = (cp == NULL) ? s->tty : cp + 1;
2323 } else
2324 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002325
Damien Millere247cc42000-05-07 12:03:14 +10002326 if (buf[0] != '\0')
2327 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002328 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002329 }
2330 }
2331 if (buf[0] == '\0')
2332 strlcpy(buf, "notty", sizeof buf);
2333 return buf;
2334}
2335
2336void
2337session_proctitle(Session *s)
2338{
2339 if (s->pw == NULL)
2340 error("no user for session %d", s->self);
2341 else
2342 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2343}
2344
Ben Lindstrom768176b2001-06-09 01:29:12 +00002345int
2346session_setup_x11fwd(Session *s)
2347{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002348 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002349 char display[512], auth_display[512];
2350 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002351 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002352
2353 if (no_x11_forwarding_flag) {
2354 packet_send_debug("X11 forwarding disabled in user configuration file.");
2355 return 0;
2356 }
2357 if (!options.x11_forwarding) {
2358 debug("X11 forwarding disabled in server configuration file.");
2359 return 0;
2360 }
2361 if (!options.xauth_location ||
2362 (stat(options.xauth_location, &st) == -1)) {
2363 packet_send_debug("No xauth program; cannot forward with spoofing.");
2364 return 0;
2365 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002366 if (options.use_login) {
2367 packet_send_debug("X11 forwarding disabled; "
2368 "not compatible with UseLogin=yes.");
2369 return 0;
2370 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002371 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002372 debug("X11 display already set.");
2373 return 0;
2374 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002375 if (x11_create_display_inet(options.x11_display_offset,
2376 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002377 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002378 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002379 return 0;
2380 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002381 for (i = 0; s->x11_chanids[i] != -1; i++) {
2382 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002383 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002384 }
Kevin Steves366298c2001-12-19 17:58:01 +00002385
2386 /* Set up a suitable value for the DISPLAY variable. */
2387 if (gethostname(hostname, sizeof(hostname)) < 0)
2388 fatal("gethostname: %.100s", strerror(errno));
2389 /*
2390 * auth_display must be used as the displayname when the
2391 * authorization entry is added with xauth(1). This will be
2392 * different than the DISPLAY string for localhost displays.
2393 */
Damien Miller95c249f2002-02-05 12:11:34 +11002394 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002395 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002396 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002397 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002398 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002399 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002400 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002401 } else {
2402#ifdef IPADDR_IN_DISPLAY
2403 struct hostent *he;
2404 struct in_addr my_addr;
2405
2406 he = gethostbyname(hostname);
2407 if (he == NULL) {
2408 error("Can't get IP address for X11 DISPLAY.");
2409 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2410 return 0;
2411 }
2412 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002413 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002414 s->display_number, s->screen);
2415#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002416 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002417 s->display_number, s->screen);
2418#endif
2419 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002420 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002421 }
2422
Ben Lindstrom768176b2001-06-09 01:29:12 +00002423 return 1;
2424}
2425
Ben Lindstrombba81212001-06-25 05:01:22 +00002426static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002427do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002428{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002429 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002430}
2431
2432void
2433do_cleanup(Authctxt *authctxt)
2434{
2435 static int called = 0;
2436
2437 debug("do_cleanup");
2438
2439 /* no cleanup if we're in the child for login shell */
2440 if (is_child)
2441 return;
2442
2443 /* avoid double cleanup */
2444 if (called)
2445 return;
2446 called = 1;
2447
2448 if (authctxt == NULL)
2449 return;
2450#ifdef KRB5
2451 if (options.kerberos_ticket_cleanup &&
2452 authctxt->krb5_ctx)
2453 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002454#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002455
2456#ifdef GSSAPI
2457 if (compat20 && options.gss_cleanup_creds)
2458 ssh_gssapi_cleanup_creds();
2459#endif
2460
Darren Tucker8846a072003-10-07 11:30:15 +10002461#ifdef USE_PAM
2462 if (options.use_pam) {
2463 sshpam_cleanup();
2464 sshpam_thread_cleanup();
2465 }
2466#endif
2467
Darren Tucker3e33cec2003-10-02 16:12:36 +10002468 /* remove agent socket */
2469 auth_sock_cleanup_proc(authctxt->pw);
2470
2471 /*
2472 * Cleanup ptys/utmp only if privsep is disabled,
2473 * or if running in monitor.
2474 */
2475 if (!use_privsep || mm_is_monitor())
2476 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002477}