blob: 796c5177cd56940f3a0f61d38f928d372550413e [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 Miller54c45982003-05-15 10:20:13 +100036RCSID("$OpenBSD: session.c,v 1.157 2003/05/14 22:24:42 markus 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"
Damien Millerb38eff82000-04-01 11:09:21 +100045#include "mpaux.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"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000059#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100060
Damien Millerbac2d8a2000-09-05 16:13:06 +110061#ifdef HAVE_CYGWIN
62#include <windows.h>
63#include <sys/cygwin.h>
64#define is_winnt (GetVersion() < 0x80000000)
65#endif
66
Damien Millerb38eff82000-04-01 11:09:21 +100067/* func */
68
69Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000070void session_set_fds(Session *, int, int, int);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071void session_pty_cleanup(void *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000072void session_proctitle(Session *);
73int session_setup_x11fwd(Session *);
74void do_exec_pty(Session *, const char *);
75void do_exec_no_pty(Session *, const char *);
76void do_exec(Session *, const char *);
77void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000078#ifdef LOGIN_NEEDS_UTMPX
79static void do_pre_login(Session *s);
80#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000081void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100082void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000083int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100084
Ben Lindstrombba81212001-06-25 05:01:22 +000085static void do_authenticated1(Authctxt *);
86static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000087
Ben Lindstrombba81212001-06-25 05:01:22 +000088static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +000089
Damien Millerb38eff82000-04-01 11:09:21 +100090/* import */
91extern ServerOptions options;
92extern char *__progname;
93extern int log_stderr;
94extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +000095extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +100096extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +000097extern void destroy_sensitive_data(void);
Damien Miller37023962000-07-11 17:31:38 +100098
Damien Miller7b28dc52000-09-05 13:34:53 +110099/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000100const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100101
Damien Millerb38eff82000-04-01 11:09:21 +1000102/* data */
103#define MAX_SESSIONS 10
104Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100105
Damien Millerd2c208a2000-05-17 22:00:02 +1000106#ifdef WITH_AIXAUTHENTICATE
Damien Millerd2c208a2000-05-17 22:00:02 +1000107char *aixloginmsg;
108#endif /* WITH_AIXAUTHENTICATE */
Damien Millerb38eff82000-04-01 11:09:21 +1000109
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
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000114/* Name and directory of socket for authentication agent forwarding. */
115static char *auth_sock_name = NULL;
116static char *auth_sock_dir = NULL;
117
118/* removes the agent forwarding socket */
119
120static void
121auth_sock_cleanup_proc(void *_pw)
122{
123 struct passwd *pw = _pw;
124
125 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);
152 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
153
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
168 /* delete agent socket on fatal() */
169 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
170
171 /* Create the socket. */
172 sock = socket(AF_UNIX, SOCK_STREAM, 0);
173 if (sock < 0)
174 packet_disconnect("socket: %.100s", strerror(errno));
175
176 /* Bind it to the name. */
177 memset(&sunaddr, 0, sizeof(sunaddr));
178 sunaddr.sun_family = AF_UNIX;
179 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
180
181 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
182 packet_disconnect("bind: %.100s", strerror(errno));
183
184 /* Restore the privileged uid. */
185 restore_uid();
186
187 /* Start listening on the socket. */
188 if (listen(sock, 5) < 0)
189 packet_disconnect("listen: %.100s", strerror(errno));
190
191 /* Allocate a channel for the authentication agent socket. */
192 nc = channel_new("auth socket",
193 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
194 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000195 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000196 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
197 return 1;
198}
199
200
Ben Lindstromb31783d2001-03-22 02:02:12 +0000201void
202do_authenticated(Authctxt *authctxt)
203{
Damien Miller97f39ae2003-02-24 11:57:01 +1100204 setproctitle("%s", authctxt->pw->pw_name);
205
Ben Lindstromb31783d2001-03-22 02:02:12 +0000206 /*
207 * Cancel the alarm we set to limit the time taken for
208 * authentication.
209 */
210 alarm(0);
211 if (startup_pipe != -1) {
212 close(startup_pipe);
213 startup_pipe = -1;
214 }
Damien Millere49d0962001-11-13 23:46:18 +1100215
Ben Lindstromb31783d2001-03-22 02:02:12 +0000216 /* setup the channel layer */
217 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
218 channel_permit_all_opens();
219
220 if (compat20)
221 do_authenticated2(authctxt);
222 else
223 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000224
Ben Lindstrom2bcdf062001-06-13 04:41:41 +0000225 /* remove agent socket */
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000226 if (auth_sock_name != NULL)
Ben Lindstrom983c0982001-06-09 01:20:06 +0000227 auth_sock_cleanup_proc(authctxt->pw);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000228#ifdef KRB4
229 if (options.kerberos_ticket_cleanup)
230 krb4_cleanup_proc(authctxt);
231#endif
232#ifdef KRB5
233 if (options.kerberos_ticket_cleanup)
234 krb5_cleanup_proc(authctxt);
235#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000236}
237
Damien Millerb38eff82000-04-01 11:09:21 +1000238/*
Damien Millerb38eff82000-04-01 11:09:21 +1000239 * Prepares for an interactive session. This is called after the user has
240 * been successfully authenticated. During this message exchange, pseudo
241 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
242 * are requested, etc.
243 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000244static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000245do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000246{
247 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000248 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100249 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000250 int enable_compression_after_reply = 0;
251 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000252
253 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000254 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000255 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000256
Damien Millerb38eff82000-04-01 11:09:21 +1000257 /*
258 * We stay in this loop until the client requests to execute a shell
259 * or a command.
260 */
261 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000262 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000263
264 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100265 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000266
267 /* Process the packet. */
268 switch (type) {
269 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000270 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100271 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000272 if (compression_level < 1 || compression_level > 9) {
273 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100274 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000275 break;
276 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000277 if (!options.compression) {
278 debug2("compression disabled");
279 break;
280 }
Damien Millerb38eff82000-04-01 11:09:21 +1000281 /* Enable compression after we have responded with SUCCESS. */
282 enable_compression_after_reply = 1;
283 success = 1;
284 break;
285
286 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000287 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000288 break;
289
290 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000291 s->auth_proto = packet_get_string(&proto_len);
292 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000293
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000294 screen_flag = packet_get_protocol_flags() &
295 SSH_PROTOFLAG_SCREEN_NUMBER;
296 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
297
298 if (packet_remaining() == 4) {
299 if (!screen_flag)
300 debug2("Buggy client: "
301 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000302 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000303 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000304 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000305 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100306 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000307 success = session_setup_x11fwd(s);
308 if (!success) {
309 xfree(s->auth_proto);
310 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000311 s->auth_proto = NULL;
312 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000313 }
Damien Millerb38eff82000-04-01 11:09:21 +1000314 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000315
316 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
317 if (no_agent_forwarding_flag || compat13) {
318 debug("Authentication agent forwarding not permitted for this authentication.");
319 break;
320 }
321 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000322 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000323 break;
324
325 case SSH_CMSG_PORT_FORWARD_REQUEST:
326 if (no_port_forwarding_flag) {
327 debug("Port forwarding not permitted for this authentication.");
328 break;
329 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100330 if (!options.allow_tcp_forwarding) {
331 debug("Port forwarding not permitted.");
332 break;
333 }
Damien Millerb38eff82000-04-01 11:09:21 +1000334 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000335 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000336 success = 1;
337 break;
338
339 case SSH_CMSG_MAX_PACKET_SIZE:
340 if (packet_set_maxsize(packet_get_int()) > 0)
341 success = 1;
342 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100343
Ben Lindstromec95ed92001-07-04 04:21:14 +0000344#if defined(AFS) || defined(KRB5)
345 case SSH_CMSG_HAVE_KERBEROS_TGT:
346 if (!options.kerberos_tgt_passing) {
347 verbose("Kerberos TGT passing disabled.");
348 } else {
349 char *kdata = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100350 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100351
Ben Lindstromec95ed92001-07-04 04:21:14 +0000352 /* XXX - 0x41, see creds_to_radix version */
353 if (kdata[0] != 0x41) {
354#ifdef KRB5
355 krb5_data tgt;
356 tgt.data = kdata;
357 tgt.length = dlen;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100358
Ben Lindstromec95ed92001-07-04 04:21:14 +0000359 if (auth_krb5_tgt(s->authctxt, &tgt))
360 success = 1;
361 else
362 verbose("Kerberos v5 TGT refused for %.100s", s->authctxt->user);
363#endif /* KRB5 */
364 } else {
365#ifdef AFS
366 if (auth_krb4_tgt(s->authctxt, kdata))
367 success = 1;
368 else
369 verbose("Kerberos v4 TGT refused for %.100s", s->authctxt->user);
370#endif /* AFS */
371 }
372 xfree(kdata);
373 }
374 break;
375#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100376
Ben Lindstromec95ed92001-07-04 04:21:14 +0000377#ifdef AFS
378 case SSH_CMSG_HAVE_AFS_TOKEN:
379 if (!options.afs_token_passing || !k_hasafs()) {
380 verbose("AFS token passing disabled.");
381 } else {
382 /* Accept AFS token. */
383 char *token = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100384 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100385
Ben Lindstromec95ed92001-07-04 04:21:14 +0000386 if (auth_afs_token(s->authctxt, token))
387 success = 1;
388 else
389 verbose("AFS token refused for %.100s",
390 s->authctxt->user);
391 xfree(token);
392 }
393 break;
394#endif /* AFS */
Damien Millerb38eff82000-04-01 11:09:21 +1000395
396 case SSH_CMSG_EXEC_SHELL:
397 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000398 if (type == SSH_CMSG_EXEC_CMD) {
399 command = packet_get_string(&dlen);
400 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000401 do_exec(s, command);
402 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000403 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000404 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100406 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000407 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 return;
409
410 default:
411 /*
412 * Any unknown messages in this phase are ignored,
413 * and a failure message is returned.
414 */
Damien Miller996acd22003-04-09 20:59:48 +1000415 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000416 }
417 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
418 packet_send();
419 packet_write_wait();
420
421 /* Enable compression now that we have replied if appropriate. */
422 if (enable_compression_after_reply) {
423 enable_compression_after_reply = 0;
424 packet_start_compression(compression_level);
425 }
426 }
427}
428
429/*
430 * This is called to fork and execute a command when we have no tty. This
431 * will call do_child from the child, and server_loop from the parent after
432 * setting up file descriptors and such.
433 */
Damien Miller4af51302000-04-16 11:18:38 +1000434void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000435do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000436{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000437 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000438
439#ifdef USE_PIPES
440 int pin[2], pout[2], perr[2];
441 /* Allocate pipes for communicating with the program. */
442 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
443 packet_disconnect("Could not create pipes: %.100s",
444 strerror(errno));
445#else /* USE_PIPES */
446 int inout[2], err[2];
447 /* Uses socket pairs to communicate with the program. */
448 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
449 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
450 packet_disconnect("Could not create socket pairs: %.100s",
451 strerror(errno));
452#endif /* USE_PIPES */
453 if (s == NULL)
454 fatal("do_exec_no_pty: no session");
455
Damien Millere247cc42000-05-07 12:03:14 +1000456 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000457
Damien Millerc5946332001-02-28 11:46:11 +1100458#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000459 if (options.use_pam) {
460 do_pam_session(s->pw->pw_name, NULL);
461 do_pam_setcred(1);
462 if (is_pam_password_change_required())
463 packet_disconnect("Password change required but no "
464 "TTY available");
465 }
Kevin Stevesff793a22001-02-21 16:36:51 +0000466#endif /* USE_PAM */
467
Damien Millerb38eff82000-04-01 11:09:21 +1000468 /* Fork the child. */
469 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000470 fatal_remove_all_cleanups();
471
Damien Millerb38eff82000-04-01 11:09:21 +1000472 /* Child. Reinitialize the log since the pid has changed. */
473 log_init(__progname, options.log_level, options.log_facility, log_stderr);
474
475 /*
476 * Create a new session and process group since the 4.4BSD
477 * setlogin() affects the entire process group.
478 */
479 if (setsid() < 0)
480 error("setsid failed: %.100s", strerror(errno));
481
482#ifdef USE_PIPES
483 /*
484 * Redirect stdin. We close the parent side of the socket
485 * pair, and make the child side the standard input.
486 */
487 close(pin[1]);
488 if (dup2(pin[0], 0) < 0)
489 perror("dup2 stdin");
490 close(pin[0]);
491
492 /* Redirect stdout. */
493 close(pout[0]);
494 if (dup2(pout[1], 1) < 0)
495 perror("dup2 stdout");
496 close(pout[1]);
497
498 /* Redirect stderr. */
499 close(perr[0]);
500 if (dup2(perr[1], 2) < 0)
501 perror("dup2 stderr");
502 close(perr[1]);
503#else /* USE_PIPES */
504 /*
505 * Redirect stdin, stdout, and stderr. Stdin and stdout will
506 * use the same socket, as some programs (particularly rdist)
507 * seem to depend on it.
508 */
509 close(inout[1]);
510 close(err[1]);
511 if (dup2(inout[0], 0) < 0) /* stdin */
512 perror("dup2 stdin");
513 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
514 perror("dup2 stdout");
515 if (dup2(err[0], 2) < 0) /* stderr */
516 perror("dup2 stderr");
517#endif /* USE_PIPES */
518
Tim Rice81ed5182002-09-25 17:38:46 -0700519#ifdef _UNICOS
520 cray_init_job(s->pw); /* set up cray jid and tmpdir */
521#endif
522
Damien Millerb38eff82000-04-01 11:09:21 +1000523 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000524 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000525 /* NOTREACHED */
526 }
Tim Rice81ed5182002-09-25 17:38:46 -0700527#ifdef _UNICOS
528 signal(WJSIGNAL, cray_job_termination_handler);
529#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100530#ifdef HAVE_CYGWIN
531 if (is_winnt)
532 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
533#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000534 if (pid < 0)
535 packet_disconnect("fork failed: %.100s", strerror(errno));
536 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000537 /* Set interactive/non-interactive mode. */
538 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000539#ifdef USE_PIPES
540 /* We are the parent. Close the child sides of the pipes. */
541 close(pin[0]);
542 close(pout[1]);
543 close(perr[1]);
544
Damien Millerefb4afe2000-04-12 18:45:05 +1000545 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000546 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000547 } else {
548 /* Enter the interactive session. */
549 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000550 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000551 }
Damien Millerb38eff82000-04-01 11:09:21 +1000552#else /* USE_PIPES */
553 /* We are the parent. Close the child sides of the socket pairs. */
554 close(inout[0]);
555 close(err[0]);
556
557 /*
558 * Enter the interactive session. Note: server_loop must be able to
559 * handle the case that fdin and fdout are the same.
560 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000561 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000562 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000563 } else {
564 server_loop(pid, inout[1], inout[1], err[1]);
565 /* server_loop has closed inout[1] and err[1]. */
566 }
Damien Millerb38eff82000-04-01 11:09:21 +1000567#endif /* USE_PIPES */
568}
569
570/*
571 * This is called to fork and execute a command when we have a tty. This
572 * will call do_child from the child, and server_loop from the parent after
573 * setting up file descriptors, controlling tty, updating wtmp, utmp,
574 * lastlog, and other such operations.
575 */
Damien Miller4af51302000-04-16 11:18:38 +1000576void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000577do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000578{
Damien Millerb38eff82000-04-01 11:09:21 +1000579 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000580 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000581
582 if (s == NULL)
583 fatal("do_exec_pty: no session");
584 ptyfd = s->ptyfd;
585 ttyfd = s->ttyfd;
586
Damien Millerc5946332001-02-28 11:46:11 +1100587#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000588 if (options.use_pam) {
589 do_pam_session(s->pw->pw_name, s->tty);
590 do_pam_setcred(1);
591 }
Damien Miller5a761312001-02-27 09:28:23 +1100592#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000593
Damien Millerb38eff82000-04-01 11:09:21 +1000594 /* Fork the child. */
595 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000596 fatal_remove_all_cleanups();
Ben Lindstrombddd5512001-07-04 04:53:53 +0000597
Damien Miller942da032000-08-18 13:59:06 +1000598 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000599 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000600 /* Close the master side of the pseudo tty. */
601 close(ptyfd);
602
603 /* Make the pseudo tty our controlling tty. */
604 pty_make_controlling_tty(&ttyfd, s->tty);
605
Damien Miller9c751422001-10-10 15:02:46 +1000606 /* Redirect stdin/stdout/stderr from the pseudo tty. */
607 if (dup2(ttyfd, 0) < 0)
608 error("dup2 stdin: %s", strerror(errno));
609 if (dup2(ttyfd, 1) < 0)
610 error("dup2 stdout: %s", strerror(errno));
611 if (dup2(ttyfd, 2) < 0)
612 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000613
614 /* Close the extra descriptor for the pseudo tty. */
615 close(ttyfd);
616
Damien Miller942da032000-08-18 13:59:06 +1000617 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000618#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700619 if (!(options.use_login && command == NULL)) {
620#ifdef _UNICOS
621 cray_init_job(s->pw); /* set up cray jid and tmpdir */
622#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100623 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700624 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000625# ifdef LOGIN_NEEDS_UTMPX
626 else
627 do_pre_login(s);
628# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000629#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000630
Damien Millerb38eff82000-04-01 11:09:21 +1000631 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000632 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000633 /* NOTREACHED */
634 }
Tim Rice81ed5182002-09-25 17:38:46 -0700635#ifdef _UNICOS
636 signal(WJSIGNAL, cray_job_termination_handler);
637#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100638#ifdef HAVE_CYGWIN
639 if (is_winnt)
640 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
641#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000642 if (pid < 0)
643 packet_disconnect("fork failed: %.100s", strerror(errno));
644 s->pid = pid;
645
646 /* Parent. Close the slave side of the pseudo tty. */
647 close(ttyfd);
648
649 /*
650 * Create another descriptor of the pty master side for use as the
651 * standard input. We could use the original descriptor, but this
652 * simplifies code in server_loop. The descriptor is bidirectional.
653 */
654 fdout = dup(ptyfd);
655 if (fdout < 0)
656 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
657
658 /* we keep a reference to the pty master */
659 ptymaster = dup(ptyfd);
660 if (ptymaster < 0)
661 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
662 s->ptymaster = ptymaster;
663
664 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000665 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000666 if (compat20) {
667 session_set_fds(s, ptyfd, fdout, -1);
668 } else {
669 server_loop(pid, ptyfd, fdout, -1);
670 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000671 }
Damien Millerb38eff82000-04-01 11:09:21 +1000672}
673
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000674#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000675static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000676do_pre_login(Session *s)
677{
678 socklen_t fromlen;
679 struct sockaddr_storage from;
680 pid_t pid = getpid();
681
682 /*
683 * Get IP address of client. If the connection is not a socket, let
684 * the address be 0.0.0.0.
685 */
686 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000687 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000688 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000689 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100690 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000691 debug("getpeername: %.100s", strerror(errno));
692 fatal_cleanup();
693 }
694 }
695
696 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Millerf3451a22002-02-05 12:40:46 +1100697 get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping),
Kevin Steves678ee512003-01-01 23:43:55 +0000698 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000699}
700#endif
701
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000702/*
703 * This is called to fork and execute a command. If another command is
704 * to be forced, execute that instead.
705 */
706void
707do_exec(Session *s, const char *command)
708{
709 if (forced_command) {
710 original_command = command;
711 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000712 debug("Forced command '%.900s'", command);
713 }
714
715 if (s->ttyfd != -1)
716 do_exec_pty(s, command);
717 else
718 do_exec_no_pty(s, command);
719
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000720 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000721}
722
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000723
Damien Miller942da032000-08-18 13:59:06 +1000724/* administrative, login(1)-like work */
725void
Damien Miller69b69aa2000-10-28 14:19:58 +1100726do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000727{
Damien Miller942da032000-08-18 13:59:06 +1000728 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000729 socklen_t fromlen;
730 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000731 struct passwd * pw = s->pw;
732 pid_t pid = getpid();
733
734 /*
735 * Get IP address of client. If the connection is not a socket, let
736 * the address be 0.0.0.0.
737 */
738 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000739 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000740 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000741 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000742 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000743 debug("getpeername: %.100s", strerror(errno));
744 fatal_cleanup();
745 }
746 }
747
748 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000749 if (!use_privsep)
750 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
751 get_remote_name_or_ip(utmp_len,
752 options.verify_reverse_mapping),
Damien Millerebc23062002-09-04 16:45:09 +1000753 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000754
Kevin Steves092f2ef2000-10-14 13:36:13 +0000755#ifdef USE_PAM
756 /*
757 * If password change is needed, do it now.
758 * This needs to occur before the ~/.hushlogin check.
759 */
Damien Miller4e448a32003-05-14 15:11:48 +1000760 if (options.use_pam && is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000761 print_pam_messages();
762 do_pam_chauthtok();
763 }
764#endif
765
Damien Millercf205e82001-04-16 18:29:15 +1000766 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000767 return;
768
769#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000770 if (options.use_pam && !is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000771 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000772#endif /* USE_PAM */
773#ifdef WITH_AIXAUTHENTICATE
774 if (aixloginmsg && *aixloginmsg)
775 printf("%s\n", aixloginmsg);
776#endif /* WITH_AIXAUTHENTICATE */
777
Tim Rice81ed5182002-09-25 17:38:46 -0700778#ifndef NO_SSH_LASTLOG
Ben Lindstromc447fee2002-04-02 20:35:35 +0000779 if (options.print_lastlog && s->last_login_time != 0) {
780 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000781 if (strchr(time_string, '\n'))
782 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000783 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000784 printf("Last login: %s\r\n", time_string);
785 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000786 printf("Last login: %s from %s\r\n", time_string,
787 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000788 }
Tim Rice81ed5182002-09-25 17:38:46 -0700789#endif /* NO_SSH_LASTLOG */
Damien Millercf205e82001-04-16 18:29:15 +1000790
791 do_motd();
792}
793
794/*
795 * Display the message of the day.
796 */
797void
798do_motd(void)
799{
800 FILE *f;
801 char buf[256];
802
Damien Miller942da032000-08-18 13:59:06 +1000803 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000804#ifdef HAVE_LOGIN_CAP
805 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
806 "/etc/motd"), "r");
807#else
Damien Miller942da032000-08-18 13:59:06 +1000808 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000809#endif
Damien Miller942da032000-08-18 13:59:06 +1000810 if (f) {
811 while (fgets(buf, sizeof(buf), f))
812 fputs(buf, stdout);
813 fclose(f);
814 }
815 }
816}
817
Kevin Steves8f63caa2001-07-04 18:23:02 +0000818
819/*
820 * Check for quiet login, either .hushlogin or command given.
821 */
822int
823check_quietlogin(Session *s, const char *command)
824{
825 char buf[256];
826 struct passwd *pw = s->pw;
827 struct stat st;
828
829 /* Return 1 if .hushlogin exists or a command given. */
830 if (command != NULL)
831 return 1;
832 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
833#ifdef HAVE_LOGIN_CAP
834 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
835 return 1;
836#else
837 if (stat(buf, &st) >= 0)
838 return 1;
839#endif
840 return 0;
841}
842
Damien Millerb38eff82000-04-01 11:09:21 +1000843/*
844 * Sets the value of the given variable in the environment. If the variable
845 * already exists, its value is overriden.
846 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000847static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000848child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100849 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000850{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000851 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000852 char **env;
853
854 /*
855 * Find the slot where the value should be stored. If the variable
856 * already exists, we reuse the slot; otherwise we append a new slot
857 * at the end of the array, expanding if necessary.
858 */
859 env = *envp;
860 namelen = strlen(name);
861 for (i = 0; env[i]; i++)
862 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
863 break;
864 if (env[i]) {
865 /* Reuse the slot. */
866 xfree(env[i]);
867 } else {
868 /* New variable. Expand if necessary. */
869 if (i >= (*envsizep) - 1) {
Damien Millera0796ca2002-06-26 19:15:07 +1000870 if (*envsizep >= 1000)
871 fatal("child_set_env: too many env vars,"
872 " skipping: %.100s", name);
Damien Millerb38eff82000-04-01 11:09:21 +1000873 (*envsizep) += 50;
874 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
875 }
876 /* Need to set the NULL pointer at end of array beyond the new slot. */
877 env[i + 1] = NULL;
878 }
879
880 /* Allocate space and format the variable in the appropriate slot. */
881 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
882 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
883}
884
885/*
886 * Reads environment variables from the given file and adds/overrides them
887 * into the environment. If the file does not exist, this does nothing.
888 * Otherwise, it must consist of empty lines, comments (line starts with '#')
889 * and assignments of the form name=value. No other forms are allowed.
890 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000891static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000892read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100893 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000894{
895 FILE *f;
896 char buf[4096];
897 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000898 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000899
900 f = fopen(filename, "r");
901 if (!f)
902 return;
903
904 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000905 if (++lineno > 1000)
906 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000907 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
908 ;
909 if (!*cp || *cp == '#' || *cp == '\n')
910 continue;
911 if (strchr(cp, '\n'))
912 *strchr(cp, '\n') = '\0';
913 value = strchr(cp, '=');
914 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000915 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
916 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000917 continue;
918 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000919 /*
920 * Replace the equals sign by nul, and advance value to
921 * the value string.
922 */
Damien Millerb38eff82000-04-01 11:09:21 +1000923 *value = '\0';
924 value++;
925 child_set_env(env, envsize, cp, value);
926 }
927 fclose(f);
928}
929
Damien Millerbb9ffc12002-01-08 10:59:32 +1100930void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000931{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100932 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000933 int i;
934
Damien Millerbb9ffc12002-01-08 10:59:32 +1100935 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000936 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000937
Damien Millerbb9ffc12002-01-08 10:59:32 +1100938 for(i = 0; source[i] != NULL; i++) {
939 var_name = xstrdup(source[i]);
940 if ((var_val = strstr(var_name, "=")) == NULL) {
941 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000942 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000943 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100944 *var_val++ = '\0';
945
946 debug3("Copy environment: %s=%s", var_name, var_val);
947 child_set_env(env, envsize, var_name, var_val);
948
949 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000950 }
951}
Damien Millercb5e44a2000-09-29 12:12:36 +1100952
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000953static char **
954do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000955{
Damien Millerb38eff82000-04-01 11:09:21 +1000956 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000957 u_int i, envsize;
Damien Miller00111382003-03-10 11:21:17 +1100958 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000959 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000960
Damien Millerb38eff82000-04-01 11:09:21 +1000961 /* Initialize the environment. */
962 envsize = 100;
963 env = xmalloc(envsize * sizeof(char *));
964 env[0] = NULL;
965
Damien Millerbac2d8a2000-09-05 16:13:06 +1100966#ifdef HAVE_CYGWIN
967 /*
968 * The Windows environment contains some setting which are
969 * important for a running system. They must not be dropped.
970 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100971 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100972#endif
973
Damien Millerb38eff82000-04-01 11:09:21 +1000974 if (!options.use_login) {
975 /* Set basic environment. */
976 child_set_env(&env, &envsize, "USER", pw->pw_name);
977 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +1100978#ifdef _AIX
979 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
980#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000981 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +1000982#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +0000983 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
984 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
985 else
986 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +1100987#else /* HAVE_LOGIN_CAP */
988# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +1100989 /*
990 * There's no standard path on Windows. The path contains
991 * important components pointing to the system directories,
992 * needed for loading shared libraries. So the path better
993 * remains intact here.
994 */
Damien Millera18bbd32002-05-13 10:48:57 +1000995# ifdef SUPERUSER_PATH
996 child_set_env(&env, &envsize, "PATH",
997 s->pw->pw_uid == 0 ? SUPERUSER_PATH : _PATH_STDPATH);
998# else
Damien Millerb38eff82000-04-01 11:09:21 +1000999 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millera18bbd32002-05-13 10:48:57 +10001000# endif /* SUPERUSER_PATH */
Damien Millercb5e44a2000-09-29 12:12:36 +11001001# endif /* HAVE_CYGWIN */
1002#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001003
1004 snprintf(buf, sizeof buf, "%.200s/%.50s",
1005 _PATH_MAILDIR, pw->pw_name);
1006 child_set_env(&env, &envsize, "MAIL", buf);
1007
1008 /* Normal systems set SHELL by default. */
1009 child_set_env(&env, &envsize, "SHELL", shell);
1010 }
1011 if (getenv("TZ"))
1012 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1013
1014 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001015 if (!options.use_login) {
1016 while (custom_environment) {
1017 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001018 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001019
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001020 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001021 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001022 if (str[i] == '=') {
1023 str[i] = 0;
1024 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001025 }
1026 custom_environment = ce->next;
1027 xfree(ce->s);
1028 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001029 }
Damien Millerb38eff82000-04-01 11:09:21 +10001030 }
1031
Damien Millerf37e2462002-09-19 11:47:55 +10001032 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001033 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001034 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001035 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1036
Damien Miller00111382003-03-10 11:21:17 +11001037 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001038 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001039 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1040 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001041 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1042
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001043 if (s->ttyfd != -1)
1044 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1045 if (s->term)
1046 child_set_env(&env, &envsize, "TERM", s->term);
1047 if (s->display)
1048 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001049 if (original_command)
1050 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1051 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001052
Tim Rice81ed5182002-09-25 17:38:46 -07001053#ifdef _UNICOS
1054 if (cray_tmpdir[0] != '\0')
1055 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1056#endif /* _UNICOS */
1057
Damien Millerb38eff82000-04-01 11:09:21 +10001058#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001059 {
1060 char *cp;
1061
1062 if ((cp = getenv("AUTHSTATE")) != NULL)
1063 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1064 if ((cp = getenv("KRB5CCNAME")) != NULL)
1065 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1066 read_environment_file(&env, &envsize, "/etc/environment");
1067 }
Damien Millerb38eff82000-04-01 11:09:21 +10001068#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001069#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +00001070 if (s->authctxt->krb4_ticket_file)
1071 child_set_env(&env, &envsize, "KRBTKFILE",
1072 s->authctxt->krb4_ticket_file);
1073#endif
1074#ifdef KRB5
1075 if (s->authctxt->krb5_ticket_file)
1076 child_set_env(&env, &envsize, "KRB5CCNAME",
1077 s->authctxt->krb5_ticket_file);
1078#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001079#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001080 /*
1081 * Pull in any environment variables that may have
1082 * been set by PAM.
1083 */
Damien Miller4e448a32003-05-14 15:11:48 +10001084 if (options.use_pam) {
1085 char **p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001086
Kevin Steves38b050a2002-07-23 00:44:07 +00001087 copy_environment(p, &env, &envsize);
1088 free_pam_environment(p);
1089 }
Damien Millerb38eff82000-04-01 11:09:21 +10001090#endif /* USE_PAM */
1091
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001092 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001093 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001094 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001095
1096 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001097 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001098 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001099 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001100 read_environment_file(&env, &envsize, buf);
1101 }
1102 if (debug_flag) {
1103 /* dump the environment */
1104 fprintf(stderr, "Environment:\n");
1105 for (i = 0; env[i]; i++)
1106 fprintf(stderr, " %.200s\n", env[i]);
1107 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001108 return env;
1109}
1110
1111/*
1112 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1113 * first in this order).
1114 */
1115static void
1116do_rc_files(Session *s, const char *shell)
1117{
1118 FILE *f = NULL;
1119 char cmd[1024];
1120 int do_xauth;
1121 struct stat st;
1122
1123 do_xauth =
1124 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1125
1126 /* ignore _PATH_SSH_USER_RC for subsystems */
1127 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1128 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1129 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1130 if (debug_flag)
1131 fprintf(stderr, "Running %s\n", cmd);
1132 f = popen(cmd, "w");
1133 if (f) {
1134 if (do_xauth)
1135 fprintf(f, "%s %s\n", s->auth_proto,
1136 s->auth_data);
1137 pclose(f);
1138 } else
1139 fprintf(stderr, "Could not run %s\n",
1140 _PATH_SSH_USER_RC);
1141 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1142 if (debug_flag)
1143 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1144 _PATH_SSH_SYSTEM_RC);
1145 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1146 if (f) {
1147 if (do_xauth)
1148 fprintf(f, "%s %s\n", s->auth_proto,
1149 s->auth_data);
1150 pclose(f);
1151 } else
1152 fprintf(stderr, "Could not run %s\n",
1153 _PATH_SSH_SYSTEM_RC);
1154 } else if (do_xauth && options.xauth_location != NULL) {
1155 /* Add authority data to .Xauthority if appropriate. */
1156 if (debug_flag) {
1157 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001158 "Running %.500s remove %.100s\n",
1159 options.xauth_location, s->auth_display);
1160 fprintf(stderr,
1161 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001162 options.xauth_location, s->auth_display,
1163 s->auth_proto, s->auth_data);
1164 }
1165 snprintf(cmd, sizeof cmd, "%s -q -",
1166 options.xauth_location);
1167 f = popen(cmd, "w");
1168 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001169 fprintf(f, "remove %s\n",
1170 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001171 fprintf(f, "add %s %s %s\n",
1172 s->auth_display, s->auth_proto,
1173 s->auth_data);
1174 pclose(f);
1175 } else {
1176 fprintf(stderr, "Could not run %s\n",
1177 cmd);
1178 }
1179 }
1180}
1181
1182static void
1183do_nologin(struct passwd *pw)
1184{
1185 FILE *f = NULL;
1186 char buf[1024];
1187
1188#ifdef HAVE_LOGIN_CAP
1189 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1190 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1191 _PATH_NOLOGIN), "r");
1192#else
1193 if (pw->pw_uid)
1194 f = fopen(_PATH_NOLOGIN, "r");
1195#endif
1196 if (f) {
1197 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001198 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001199 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001200 while (fgets(buf, sizeof(buf), f))
1201 fputs(buf, stderr);
1202 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001203 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001204 exit(254);
1205 }
1206}
1207
1208/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001209void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001210do_setusercontext(struct passwd *pw)
1211{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001212#ifndef HAVE_CYGWIN
1213 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001214#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001215 {
1216
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001217#ifdef HAVE_SETPCRED
1218 setpcred(pw->pw_name);
1219#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001220#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001221# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001222 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001223# endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001224 if (setusercontext(lc, pw, pw->pw_uid,
1225 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1226 perror("unable to set user context");
1227 exit(1);
1228 }
1229#else
1230# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1231 /* Sets login uid for accounting */
1232 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1233 error("setluid: %s", strerror(errno));
1234# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1235
1236 if (setlogin(pw->pw_name) < 0)
1237 error("setlogin failed: %s", strerror(errno));
1238 if (setgid(pw->pw_gid) < 0) {
1239 perror("setgid");
1240 exit(1);
1241 }
1242 /* Initialize the group list. */
1243 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1244 perror("initgroups");
1245 exit(1);
1246 }
1247 endgrent();
1248# ifdef USE_PAM
1249 /*
1250 * PAM credentials may take the form of supplementary groups.
1251 * These will have been wiped by the above initgroups() call.
1252 * Reestablish them here.
1253 */
Damien Miller4e448a32003-05-14 15:11:48 +10001254 if (options.use_pam)
1255 do_pam_setcred(0);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001256# endif /* USE_PAM */
1257# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1258 irix_setusercontext(pw);
1259# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001260# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001261 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001262# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001263 /* Permanently switch to the desired uid. */
1264 permanently_set_uid(pw);
1265#endif
1266 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001267
1268#ifdef HAVE_CYGWIN
1269 if (is_winnt)
1270#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001271 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1272 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1273}
1274
Ben Lindstrom08105192002-03-22 02:50:06 +00001275static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001276launch_login(struct passwd *pw, const char *hostname)
1277{
1278 /* Launch login(1). */
1279
Ben Lindstrom378a4172002-06-07 14:49:56 +00001280 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001281#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001282 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001283#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001284#ifdef LOGIN_NO_ENDOPT
1285 "-p", "-f", pw->pw_name, (char *)NULL);
1286#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001287 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001288#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001289
1290 /* Login couldn't be executed, die. */
1291
1292 perror("login");
1293 exit(1);
1294}
1295
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001296/*
1297 * Performs common processing for the child, such as setting up the
1298 * environment, closing extra file descriptors, setting the user and group
1299 * ids, and executing the command or shell.
1300 */
1301void
1302do_child(Session *s, const char *command)
1303{
1304 extern char **environ;
1305 char **env;
1306 char *argv[10];
1307 const char *shell, *shell0, *hostname = NULL;
1308 struct passwd *pw = s->pw;
1309 u_int i;
1310
1311 /* remove hostkey from the child's memory */
1312 destroy_sensitive_data();
1313
1314 /* login(1) is only called if we execute the login shell */
1315 if (options.use_login && command != NULL)
1316 options.use_login = 0;
1317
Tim Rice81ed5182002-09-25 17:38:46 -07001318#ifdef _UNICOS
1319 cray_setup(pw->pw_uid, pw->pw_name, command);
1320#endif /* _UNICOS */
1321
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001322 /*
1323 * Login(1) does this as well, and it needs uid 0 for the "-h"
1324 * switch, so we let login(1) to this for us.
1325 */
1326 if (!options.use_login) {
1327#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001328 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001329 if (!check_quietlogin(s, command))
1330 do_motd();
1331#else /* HAVE_OSF_SIA */
1332 do_nologin(pw);
1333 do_setusercontext(pw);
1334#endif /* HAVE_OSF_SIA */
1335 }
1336
1337 /*
1338 * Get the shell from the password data. An empty shell field is
1339 * legal, and means /bin/sh.
1340 */
1341 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001342
1343 /*
1344 * Make sure $SHELL points to the shell from the password file,
1345 * even if shell is overridden from login.conf
1346 */
1347 env = do_setup_env(s, shell);
1348
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001349#ifdef HAVE_LOGIN_CAP
1350 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1351#endif
1352
Damien Millerad833b32000-08-23 10:46:23 +10001353 /* we have to stash the hostname before we close our socket. */
1354 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001355 hostname = get_remote_name_or_ip(utmp_len,
Damien Millerc5d86352002-02-05 12:13:41 +11001356 options.verify_reverse_mapping);
Damien Millerb38eff82000-04-01 11:09:21 +10001357 /*
1358 * Close the connection descriptors; note that this is the child, and
1359 * the server will still have the socket open, and it is important
1360 * that we do not shutdown it. Note that the descriptors cannot be
1361 * closed before building the environment, as we call
1362 * get_remote_ipaddr there.
1363 */
1364 if (packet_get_connection_in() == packet_get_connection_out())
1365 close(packet_get_connection_in());
1366 else {
1367 close(packet_get_connection_in());
1368 close(packet_get_connection_out());
1369 }
1370 /*
1371 * Close all descriptors related to channels. They will still remain
1372 * open in the parent.
1373 */
1374 /* XXX better use close-on-exec? -markus */
1375 channel_close_all();
1376
1377 /*
1378 * Close any extra file descriptors. Note that there may still be
1379 * descriptors left by system functions. They will be closed later.
1380 */
1381 endpwent();
1382
1383 /*
1384 * Close any extra open file descriptors so that we don\'t have them
1385 * hanging around in clients. Note that we want to do this after
1386 * initgroups, because at least on Solaris 2.3 it leaves file
1387 * descriptors open.
1388 */
1389 for (i = 3; i < 64; i++)
1390 close(i);
1391
Damien Millerb38eff82000-04-01 11:09:21 +10001392 /*
Damien Miller05eda432002-02-10 18:32:28 +11001393 * Must take new environment into use so that .ssh/rc,
1394 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001395 */
1396 environ = env;
1397
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001398#ifdef AFS
1399 /* Try to get AFS tokens for the local cell. */
1400 if (k_hasafs()) {
1401 char cell[64];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001402
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001403 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1404 krb_afslog(cell, 0);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001405
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001406 krb_afslog(0, 0);
1407 }
1408#endif /* AFS */
1409
Damien Miller139d4cd2001-10-10 15:07:44 +10001410 /* Change current directory to the user\'s home directory. */
1411 if (chdir(pw->pw_dir) < 0) {
1412 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1413 pw->pw_dir, strerror(errno));
1414#ifdef HAVE_LOGIN_CAP
1415 if (login_getcapbool(lc, "requirehome", 0))
1416 exit(1);
1417#endif
1418 }
1419
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001420 if (!options.use_login)
1421 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001422
1423 /* restore SIGPIPE for child */
1424 signal(SIGPIPE, SIG_DFL);
1425
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001426 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001427 launch_login(pw, hostname);
1428 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001429 }
1430
1431 /* Get the last component of the shell name. */
1432 if ((shell0 = strrchr(shell, '/')) != NULL)
1433 shell0++;
1434 else
1435 shell0 = shell;
1436
Damien Millerb38eff82000-04-01 11:09:21 +10001437 /*
1438 * If we have no command, execute the shell. In this case, the shell
1439 * name to be passed in argv[0] is preceded by '-' to indicate that
1440 * this is a login shell.
1441 */
1442 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001443 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001444
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001445 /* Start the shell. Set initial character to '-'. */
1446 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001447
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001448 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1449 >= sizeof(argv0) - 1) {
1450 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001451 perror(shell);
1452 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001453 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001454
1455 /* Execute the shell. */
1456 argv[0] = argv0;
1457 argv[1] = NULL;
1458 execve(shell, argv, env);
1459
1460 /* Executing the shell failed. */
1461 perror(shell);
1462 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001463 }
1464 /*
1465 * Execute the command using the user's shell. This uses the -c
1466 * option to execute the command.
1467 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001468 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001469 argv[1] = "-c";
1470 argv[2] = (char *) command;
1471 argv[3] = NULL;
1472 execve(shell, argv, env);
1473 perror(shell);
1474 exit(1);
1475}
1476
1477Session *
1478session_new(void)
1479{
1480 int i;
1481 static int did_init = 0;
1482 if (!did_init) {
1483 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001484 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001485 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001486 }
1487 did_init = 1;
1488 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001489 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001490 Session *s = &sessions[i];
1491 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001492 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001493 s->chanid = -1;
1494 s->ptyfd = -1;
1495 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001496 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001497 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001498 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001499 return s;
1500 }
1501 }
1502 return NULL;
1503}
1504
Ben Lindstrombba81212001-06-25 05:01:22 +00001505static void
Damien Millerb38eff82000-04-01 11:09:21 +10001506session_dump(void)
1507{
1508 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001509 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001510 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001511 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001512 s->used,
1513 s->self,
1514 s,
1515 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001516 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001517 }
1518}
1519
Damien Millerefb4afe2000-04-12 18:45:05 +10001520int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001521session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001522{
1523 Session *s = session_new();
1524 debug("session_open: channel %d", chanid);
1525 if (s == NULL) {
1526 error("no more sessions");
1527 return 0;
1528 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001529 s->authctxt = authctxt;
1530 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001531 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001532 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001533 debug("session_open: session %d: link with channel %d", s->self, chanid);
1534 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001535 return 1;
1536}
1537
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001538Session *
1539session_by_tty(char *tty)
1540{
1541 int i;
1542 for (i = 0; i < MAX_SESSIONS; i++) {
1543 Session *s = &sessions[i];
1544 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1545 debug("session_by_tty: session %d tty %s", i, tty);
1546 return s;
1547 }
1548 }
1549 debug("session_by_tty: unknown tty %.100s", tty);
1550 session_dump();
1551 return NULL;
1552}
1553
Ben Lindstrombba81212001-06-25 05:01:22 +00001554static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001555session_by_channel(int id)
1556{
1557 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001558 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001559 Session *s = &sessions[i];
1560 if (s->used && s->chanid == id) {
1561 debug("session_by_channel: session %d channel %d", i, id);
1562 return s;
1563 }
1564 }
1565 debug("session_by_channel: unknown channel %d", id);
1566 session_dump();
1567 return NULL;
1568}
1569
Ben Lindstrombba81212001-06-25 05:01:22 +00001570static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001571session_by_pid(pid_t pid)
1572{
1573 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001574 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001575 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001576 Session *s = &sessions[i];
1577 if (s->used && s->pid == pid)
1578 return s;
1579 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001580 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001581 session_dump();
1582 return NULL;
1583}
1584
Ben Lindstrombba81212001-06-25 05:01:22 +00001585static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001586session_window_change_req(Session *s)
1587{
1588 s->col = packet_get_int();
1589 s->row = packet_get_int();
1590 s->xpixel = packet_get_int();
1591 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001592 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001593 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1594 return 1;
1595}
1596
Ben Lindstrombba81212001-06-25 05:01:22 +00001597static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001598session_pty_req(Session *s)
1599{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001600 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001601 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001602
Ben Lindstrom49c12602001-06-13 04:37:36 +00001603 if (no_pty_flag) {
1604 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001605 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001606 }
1607 if (s->ttyfd != -1) {
1608 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001609 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001610 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001611 /* Get the time and hostname when the user last logged in. */
1612 if (options.print_lastlog) {
1613 s->hostname[0] = '\0';
1614 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1615 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1616 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001617
Damien Millerefb4afe2000-04-12 18:45:05 +10001618 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001619
1620 if (compat20) {
1621 s->col = packet_get_int();
1622 s->row = packet_get_int();
1623 } else {
1624 s->row = packet_get_int();
1625 s->col = packet_get_int();
1626 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001627 s->xpixel = packet_get_int();
1628 s->ypixel = packet_get_int();
1629
1630 if (strcmp(s->term, "") == 0) {
1631 xfree(s->term);
1632 s->term = NULL;
1633 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001634
Damien Millerefb4afe2000-04-12 18:45:05 +10001635 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001636 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001637 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001638 if (s->term)
1639 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001640 s->term = NULL;
1641 s->ptyfd = -1;
1642 s->ttyfd = -1;
1643 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001644 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001645 }
1646 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001647
1648 /* for SSH1 the tty modes length is not given */
1649 if (!compat20)
1650 n_bytes = packet_remaining();
1651 tty_parse_modes(s->ttyfd, &n_bytes);
1652
Damien Millerefb4afe2000-04-12 18:45:05 +10001653 /*
1654 * Add a cleanup function to clear the utmp entry and record logout
1655 * time in case we call fatal() (e.g., the connection gets closed).
1656 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001657 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001658 if (!use_privsep)
1659 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001660
1661 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001662 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1663
Damien Miller48b03fc2002-01-22 23:11:40 +11001664 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001665 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001666 return 1;
1667}
1668
Ben Lindstrombba81212001-06-25 05:01:22 +00001669static int
Damien Millerbd483e72000-04-30 10:00:53 +10001670session_subsystem_req(Session *s)
1671{
Damien Millerae452462001-10-10 15:08:06 +10001672 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001673 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001674 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001675 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001676 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001677
Damien Miller48b03fc2002-01-22 23:11:40 +11001678 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001679 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001680
Damien Millerf6d9e222000-06-18 14:50:44 +10001681 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001682 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1683 cmd = options.subsystem_command[i];
1684 if (stat(cmd, &st) < 0) {
1685 error("subsystem: cannot stat %s: %s", cmd,
1686 strerror(errno));
1687 break;
1688 }
1689 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001690 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001691 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001692 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001693 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001694 }
1695 }
1696
1697 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001698 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001699 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001700
Damien Millerbd483e72000-04-30 10:00:53 +10001701 xfree(subsys);
1702 return success;
1703}
1704
Ben Lindstrombba81212001-06-25 05:01:22 +00001705static int
Damien Millerbd483e72000-04-30 10:00:53 +10001706session_x11_req(Session *s)
1707{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001708 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001709
1710 s->single_connection = packet_get_char();
1711 s->auth_proto = packet_get_string(NULL);
1712 s->auth_data = packet_get_string(NULL);
1713 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001714 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001715
Ben Lindstrom768176b2001-06-09 01:29:12 +00001716 success = session_setup_x11fwd(s);
1717 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001718 xfree(s->auth_proto);
1719 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001720 s->auth_proto = NULL;
1721 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001722 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001723 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001724}
1725
Ben Lindstrombba81212001-06-25 05:01:22 +00001726static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001727session_shell_req(Session *s)
1728{
Damien Miller48b03fc2002-01-22 23:11:40 +11001729 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001730 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001731 return 1;
1732}
1733
Ben Lindstrombba81212001-06-25 05:01:22 +00001734static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001735session_exec_req(Session *s)
1736{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001737 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001738 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001739 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001740 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001741 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001742 return 1;
1743}
1744
Ben Lindstrombba81212001-06-25 05:01:22 +00001745static int
Damien Miller54c45982003-05-15 10:20:13 +10001746session_break_req(Session *s)
1747{
1748 u_int break_length;
1749
1750 break_length = packet_get_int();
1751 packet_check_eom();
1752
1753 if (s->ttyfd == -1)
1754 return 0;
1755 /* we will sleep from 500ms to 3000ms */
1756 break_length = MIN(break_length, 3000);
1757 break_length = MAX(break_length, 500);
1758 ioctl(s->ttyfd, TIOCSBRK, NULL);
1759 /* should we care about EINTR? */
1760 usleep(break_length * 1000);
1761 ioctl(s->ttyfd, TIOCCBRK, NULL);
1762 return 1;
1763}
1764
1765static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001766session_auth_agent_req(Session *s)
1767{
1768 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001769 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001770 if (no_agent_forwarding_flag) {
1771 debug("session_auth_agent_req: no_agent_forwarding_flag");
1772 return 0;
1773 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001774 if (called) {
1775 return 0;
1776 } else {
1777 called = 1;
1778 return auth_input_request_forwarding(s->pw);
1779 }
1780}
1781
Damien Millerc7ef63d2002-02-05 12:21:42 +11001782int
1783session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001784{
Damien Millerefb4afe2000-04-12 18:45:05 +10001785 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001786 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001787
Damien Millerc7ef63d2002-02-05 12:21:42 +11001788 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001789 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001790 c->self, rtype);
1791 return 0;
1792 }
1793 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001794
1795 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001796 * a session is in LARVAL state until a shell, a command
1797 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001798 */
1799 if (c->type == SSH_CHANNEL_LARVAL) {
1800 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001801 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001802 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001803 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001804 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001805 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001806 } else if (strcmp(rtype, "x11-req") == 0) {
1807 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001808 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1809 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001810 } else if (strcmp(rtype, "subsystem") == 0) {
1811 success = session_subsystem_req(s);
Damien Miller54c45982003-05-15 10:20:13 +10001812 } else if (strcmp(rtype, "break") == 0) {
1813 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001814 }
1815 }
1816 if (strcmp(rtype, "window-change") == 0) {
1817 success = session_window_change_req(s);
1818 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001819 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001820}
1821
1822void
1823session_set_fds(Session *s, int fdin, int fdout, int fderr)
1824{
1825 if (!compat20)
1826 fatal("session_set_fds: called for proto != 2.0");
1827 /*
1828 * now that have a child and a pipe to the child,
1829 * we can activate our channel and register the fd's
1830 */
1831 if (s->chanid == -1)
1832 fatal("no channel for session %d", s->self);
1833 channel_set_fds(s->chanid,
1834 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001835 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001836 1,
1837 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001838}
1839
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001840/*
1841 * Function to perform pty cleanup. Also called if we get aborted abnormally
1842 * (e.g., due to a dropped connection).
1843 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001844void
1845session_pty_cleanup2(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001846{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001847 Session *s = session;
1848
1849 if (s == NULL) {
1850 error("session_pty_cleanup: no session");
1851 return;
1852 }
1853 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001854 return;
1855
Kevin Steves43cdef32001-02-11 14:12:08 +00001856 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001857
Damien Millerb38eff82000-04-01 11:09:21 +10001858 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001859 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001860 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001861
1862 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001863 if (getuid() == 0)
1864 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001865
1866 /*
1867 * Close the server side of the socket pairs. We must do this after
1868 * the pty cleanup, so that another process doesn't get this pty
1869 * while we're still cleaning up.
1870 */
1871 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001872 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001873
1874 /* unlink pty from session */
1875 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001876}
Damien Millerefb4afe2000-04-12 18:45:05 +10001877
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001878void
1879session_pty_cleanup(void *session)
1880{
1881 PRIVSEP(session_pty_cleanup2(session));
1882}
1883
Damien Miller5a80bba2002-09-04 16:39:02 +10001884static char *
1885sig2name(int sig)
1886{
1887#define SSH_SIG(x) if (sig == SIG ## x) return #x
1888 SSH_SIG(ABRT);
1889 SSH_SIG(ALRM);
1890 SSH_SIG(FPE);
1891 SSH_SIG(HUP);
1892 SSH_SIG(ILL);
1893 SSH_SIG(INT);
1894 SSH_SIG(KILL);
1895 SSH_SIG(PIPE);
1896 SSH_SIG(QUIT);
1897 SSH_SIG(SEGV);
1898 SSH_SIG(TERM);
1899 SSH_SIG(USR1);
1900 SSH_SIG(USR2);
1901#undef SSH_SIG
1902 return "SIG@openssh.com";
1903}
1904
Ben Lindstrombba81212001-06-25 05:01:22 +00001905static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001906session_exit_message(Session *s, int status)
1907{
1908 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001909
1910 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001911 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001912 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001913 debug("session_exit_message: session %d channel %d pid %ld",
1914 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001915
1916 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001917 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001918 packet_put_int(WEXITSTATUS(status));
1919 packet_send();
1920 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001921 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10001922 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001923#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001924 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001925#else /* WCOREDUMP */
1926 packet_put_char(0);
1927#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001928 packet_put_cstring("");
1929 packet_put_cstring("");
1930 packet_send();
1931 } else {
1932 /* Some weird exit cause. Just exit. */
1933 packet_disconnect("wait returned status %04x.", status);
1934 }
1935
1936 /* disconnect channel */
1937 debug("session_exit_message: release channel %d", s->chanid);
1938 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001939 /*
1940 * emulate a write failure with 'chan_write_failed', nobody will be
1941 * interested in data we write.
1942 * Note that we must not call 'chan_read_failed', since there could
1943 * be some more data waiting in the pipe.
1944 */
Damien Millerbd483e72000-04-30 10:00:53 +10001945 if (c->ostate != CHAN_OUTPUT_CLOSED)
1946 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001947 s->chanid = -1;
1948}
1949
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001950void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001951session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001952{
Ben Lindstromce0f6342002-06-11 16:42:49 +00001953 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001954 if (s->ttyfd != -1) {
1955 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1956 session_pty_cleanup(s);
1957 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001958 if (s->term)
1959 xfree(s->term);
1960 if (s->display)
1961 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001962 if (s->auth_display)
1963 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001964 if (s->auth_data)
1965 xfree(s->auth_data);
1966 if (s->auth_proto)
1967 xfree(s->auth_proto);
1968 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001969 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001970}
1971
1972void
1973session_close_by_pid(pid_t pid, int status)
1974{
1975 Session *s = session_by_pid(pid);
1976 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001977 debug("session_close_by_pid: no session for pid %ld",
1978 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001979 return;
1980 }
1981 if (s->chanid != -1)
1982 session_exit_message(s, status);
1983 session_close(s);
1984}
1985
1986/*
1987 * this is called when a channel dies before
1988 * the session 'child' itself dies
1989 */
1990void
1991session_close_by_channel(int id, void *arg)
1992{
1993 Session *s = session_by_channel(id);
1994 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001995 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001996 return;
1997 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001998 debug("session_close_by_channel: channel %d child %ld",
1999 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002000 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002001 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002002 /*
2003 * delay detach of session, but release pty, since
2004 * the fd's to the child are already closed
2005 */
2006 if (s->ttyfd != -1) {
2007 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
2008 session_pty_cleanup(s);
2009 }
Damien Miller3ec27592001-10-12 11:35:04 +10002010 return;
2011 }
2012 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002013 channel_cancel_cleanup(s->chanid);
2014 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002015 session_close(s);
2016}
2017
2018void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002019session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002020{
2021 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002022 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002023 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002024 if (s->used) {
2025 if (closefunc != NULL)
2026 closefunc(s);
2027 else
2028 session_close(s);
2029 }
Damien Miller52b77be2001-10-10 15:14:37 +10002030 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002031}
2032
Ben Lindstrombba81212001-06-25 05:01:22 +00002033static char *
Damien Millere247cc42000-05-07 12:03:14 +10002034session_tty_list(void)
2035{
2036 static char buf[1024];
2037 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002038 char *cp;
2039
Damien Millere247cc42000-05-07 12:03:14 +10002040 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002041 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002042 Session *s = &sessions[i];
2043 if (s->used && s->ttyfd != -1) {
Damien Millera8ed44b2003-01-10 09:53:12 +11002044
2045 if (strncmp(s->tty, "/dev/", 5) != 0) {
2046 cp = strrchr(s->tty, '/');
2047 cp = (cp == NULL) ? s->tty : cp + 1;
2048 } else
2049 cp = s->tty + 5;
2050
Damien Millere247cc42000-05-07 12:03:14 +10002051 if (buf[0] != '\0')
2052 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002053 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002054 }
2055 }
2056 if (buf[0] == '\0')
2057 strlcpy(buf, "notty", sizeof buf);
2058 return buf;
2059}
2060
2061void
2062session_proctitle(Session *s)
2063{
2064 if (s->pw == NULL)
2065 error("no user for session %d", s->self);
2066 else
2067 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2068}
2069
Ben Lindstrom768176b2001-06-09 01:29:12 +00002070int
2071session_setup_x11fwd(Session *s)
2072{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002073 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002074 char display[512], auth_display[512];
2075 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002076
2077 if (no_x11_forwarding_flag) {
2078 packet_send_debug("X11 forwarding disabled in user configuration file.");
2079 return 0;
2080 }
2081 if (!options.x11_forwarding) {
2082 debug("X11 forwarding disabled in server configuration file.");
2083 return 0;
2084 }
2085 if (!options.xauth_location ||
2086 (stat(options.xauth_location, &st) == -1)) {
2087 packet_send_debug("No xauth program; cannot forward with spoofing.");
2088 return 0;
2089 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002090 if (options.use_login) {
2091 packet_send_debug("X11 forwarding disabled; "
2092 "not compatible with UseLogin=yes.");
2093 return 0;
2094 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002095 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002096 debug("X11 display already set.");
2097 return 0;
2098 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002099 if (x11_create_display_inet(options.x11_display_offset,
2100 options.x11_use_localhost, s->single_connection,
2101 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002102 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002103 return 0;
2104 }
Kevin Steves366298c2001-12-19 17:58:01 +00002105
2106 /* Set up a suitable value for the DISPLAY variable. */
2107 if (gethostname(hostname, sizeof(hostname)) < 0)
2108 fatal("gethostname: %.100s", strerror(errno));
2109 /*
2110 * auth_display must be used as the displayname when the
2111 * authorization entry is added with xauth(1). This will be
2112 * different than the DISPLAY string for localhost displays.
2113 */
Damien Miller95c249f2002-02-05 12:11:34 +11002114 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002115 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002116 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002117 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002118 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002119 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002120 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002121 } else {
2122#ifdef IPADDR_IN_DISPLAY
2123 struct hostent *he;
2124 struct in_addr my_addr;
2125
2126 he = gethostbyname(hostname);
2127 if (he == NULL) {
2128 error("Can't get IP address for X11 DISPLAY.");
2129 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2130 return 0;
2131 }
2132 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002133 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002134 s->display_number, s->screen);
2135#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002136 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002137 s->display_number, s->screen);
2138#endif
2139 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002140 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002141 }
2142
Ben Lindstrom768176b2001-06-09 01:29:12 +00002143 return 1;
2144}
2145
Ben Lindstrombba81212001-06-25 05:01:22 +00002146static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002147do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002148{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002149 server_loop2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10002150}