blob: 1a86f5f8109f7a296fa1ea6c677e27a9d879204f [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 Millerb1ca8bb2003-05-14 13:45:42 +100036RCSID("$OpenBSD: session.c,v 1.156 2003/05/11 20:30:25 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 Miller665af9c2001-06-27 09:34:15 +1000459 do_pam_session(s->pw->pw_name, NULL);
Damien Millerf9e93002001-03-27 16:12:24 +1000460 do_pam_setcred(1);
Damien Millerc3aa3dd2001-10-28 22:34:52 +1100461 if (is_pam_password_change_required())
462 packet_disconnect("Password change required but no "
463 "TTY available");
Kevin Stevesff793a22001-02-21 16:36:51 +0000464#endif /* USE_PAM */
465
Damien Millerb38eff82000-04-01 11:09:21 +1000466 /* Fork the child. */
467 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000468 fatal_remove_all_cleanups();
469
Damien Millerb38eff82000-04-01 11:09:21 +1000470 /* Child. Reinitialize the log since the pid has changed. */
471 log_init(__progname, options.log_level, options.log_facility, log_stderr);
472
473 /*
474 * Create a new session and process group since the 4.4BSD
475 * setlogin() affects the entire process group.
476 */
477 if (setsid() < 0)
478 error("setsid failed: %.100s", strerror(errno));
479
480#ifdef USE_PIPES
481 /*
482 * Redirect stdin. We close the parent side of the socket
483 * pair, and make the child side the standard input.
484 */
485 close(pin[1]);
486 if (dup2(pin[0], 0) < 0)
487 perror("dup2 stdin");
488 close(pin[0]);
489
490 /* Redirect stdout. */
491 close(pout[0]);
492 if (dup2(pout[1], 1) < 0)
493 perror("dup2 stdout");
494 close(pout[1]);
495
496 /* Redirect stderr. */
497 close(perr[0]);
498 if (dup2(perr[1], 2) < 0)
499 perror("dup2 stderr");
500 close(perr[1]);
501#else /* USE_PIPES */
502 /*
503 * Redirect stdin, stdout, and stderr. Stdin and stdout will
504 * use the same socket, as some programs (particularly rdist)
505 * seem to depend on it.
506 */
507 close(inout[1]);
508 close(err[1]);
509 if (dup2(inout[0], 0) < 0) /* stdin */
510 perror("dup2 stdin");
511 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
512 perror("dup2 stdout");
513 if (dup2(err[0], 2) < 0) /* stderr */
514 perror("dup2 stderr");
515#endif /* USE_PIPES */
516
Tim Rice81ed5182002-09-25 17:38:46 -0700517#ifdef _UNICOS
518 cray_init_job(s->pw); /* set up cray jid and tmpdir */
519#endif
520
Damien Millerb38eff82000-04-01 11:09:21 +1000521 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000522 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000523 /* NOTREACHED */
524 }
Tim Rice81ed5182002-09-25 17:38:46 -0700525#ifdef _UNICOS
526 signal(WJSIGNAL, cray_job_termination_handler);
527#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100528#ifdef HAVE_CYGWIN
529 if (is_winnt)
530 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
531#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000532 if (pid < 0)
533 packet_disconnect("fork failed: %.100s", strerror(errno));
534 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000535 /* Set interactive/non-interactive mode. */
536 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000537#ifdef USE_PIPES
538 /* We are the parent. Close the child sides of the pipes. */
539 close(pin[0]);
540 close(pout[1]);
541 close(perr[1]);
542
Damien Millerefb4afe2000-04-12 18:45:05 +1000543 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000544 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000545 } else {
546 /* Enter the interactive session. */
547 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000548 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000549 }
Damien Millerb38eff82000-04-01 11:09:21 +1000550#else /* USE_PIPES */
551 /* We are the parent. Close the child sides of the socket pairs. */
552 close(inout[0]);
553 close(err[0]);
554
555 /*
556 * Enter the interactive session. Note: server_loop must be able to
557 * handle the case that fdin and fdout are the same.
558 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000559 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000560 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000561 } else {
562 server_loop(pid, inout[1], inout[1], err[1]);
563 /* server_loop has closed inout[1] and err[1]. */
564 }
Damien Millerb38eff82000-04-01 11:09:21 +1000565#endif /* USE_PIPES */
566}
567
568/*
569 * This is called to fork and execute a command when we have a tty. This
570 * will call do_child from the child, and server_loop from the parent after
571 * setting up file descriptors, controlling tty, updating wtmp, utmp,
572 * lastlog, and other such operations.
573 */
Damien Miller4af51302000-04-16 11:18:38 +1000574void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000575do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000576{
Damien Millerb38eff82000-04-01 11:09:21 +1000577 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000578 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000579
580 if (s == NULL)
581 fatal("do_exec_pty: no session");
582 ptyfd = s->ptyfd;
583 ttyfd = s->ttyfd;
584
Damien Millerc5946332001-02-28 11:46:11 +1100585#if defined(USE_PAM)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000586 do_pam_session(s->pw->pw_name, s->tty);
Damien Millerf9e93002001-03-27 16:12:24 +1000587 do_pam_setcred(1);
Damien Miller5a761312001-02-27 09:28:23 +1100588#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000589
Damien Millerb38eff82000-04-01 11:09:21 +1000590 /* Fork the child. */
591 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000592 fatal_remove_all_cleanups();
Ben Lindstrombddd5512001-07-04 04:53:53 +0000593
Damien Miller942da032000-08-18 13:59:06 +1000594 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000595 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000596 /* Close the master side of the pseudo tty. */
597 close(ptyfd);
598
599 /* Make the pseudo tty our controlling tty. */
600 pty_make_controlling_tty(&ttyfd, s->tty);
601
Damien Miller9c751422001-10-10 15:02:46 +1000602 /* Redirect stdin/stdout/stderr from the pseudo tty. */
603 if (dup2(ttyfd, 0) < 0)
604 error("dup2 stdin: %s", strerror(errno));
605 if (dup2(ttyfd, 1) < 0)
606 error("dup2 stdout: %s", strerror(errno));
607 if (dup2(ttyfd, 2) < 0)
608 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000609
610 /* Close the extra descriptor for the pseudo tty. */
611 close(ttyfd);
612
Damien Miller942da032000-08-18 13:59:06 +1000613 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000614#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700615 if (!(options.use_login && command == NULL)) {
616#ifdef _UNICOS
617 cray_init_job(s->pw); /* set up cray jid and tmpdir */
618#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100619 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700620 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000621# ifdef LOGIN_NEEDS_UTMPX
622 else
623 do_pre_login(s);
624# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000625#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000626
Damien Millerb38eff82000-04-01 11:09:21 +1000627 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000628 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000629 /* NOTREACHED */
630 }
Tim Rice81ed5182002-09-25 17:38:46 -0700631#ifdef _UNICOS
632 signal(WJSIGNAL, cray_job_termination_handler);
633#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100634#ifdef HAVE_CYGWIN
635 if (is_winnt)
636 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
637#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000638 if (pid < 0)
639 packet_disconnect("fork failed: %.100s", strerror(errno));
640 s->pid = pid;
641
642 /* Parent. Close the slave side of the pseudo tty. */
643 close(ttyfd);
644
645 /*
646 * Create another descriptor of the pty master side for use as the
647 * standard input. We could use the original descriptor, but this
648 * simplifies code in server_loop. The descriptor is bidirectional.
649 */
650 fdout = dup(ptyfd);
651 if (fdout < 0)
652 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
653
654 /* we keep a reference to the pty master */
655 ptymaster = dup(ptyfd);
656 if (ptymaster < 0)
657 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
658 s->ptymaster = ptymaster;
659
660 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000661 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000662 if (compat20) {
663 session_set_fds(s, ptyfd, fdout, -1);
664 } else {
665 server_loop(pid, ptyfd, fdout, -1);
666 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000667 }
Damien Millerb38eff82000-04-01 11:09:21 +1000668}
669
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000670#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000671static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000672do_pre_login(Session *s)
673{
674 socklen_t fromlen;
675 struct sockaddr_storage from;
676 pid_t pid = getpid();
677
678 /*
679 * Get IP address of client. If the connection is not a socket, let
680 * the address be 0.0.0.0.
681 */
682 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000683 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000684 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000685 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100686 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000687 debug("getpeername: %.100s", strerror(errno));
688 fatal_cleanup();
689 }
690 }
691
692 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Millerf3451a22002-02-05 12:40:46 +1100693 get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping),
Kevin Steves678ee512003-01-01 23:43:55 +0000694 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000695}
696#endif
697
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000698/*
699 * This is called to fork and execute a command. If another command is
700 * to be forced, execute that instead.
701 */
702void
703do_exec(Session *s, const char *command)
704{
705 if (forced_command) {
706 original_command = command;
707 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000708 debug("Forced command '%.900s'", command);
709 }
710
711 if (s->ttyfd != -1)
712 do_exec_pty(s, command);
713 else
714 do_exec_no_pty(s, command);
715
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000716 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000717}
718
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000719
Damien Miller942da032000-08-18 13:59:06 +1000720/* administrative, login(1)-like work */
721void
Damien Miller69b69aa2000-10-28 14:19:58 +1100722do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000723{
Damien Miller942da032000-08-18 13:59:06 +1000724 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000725 socklen_t fromlen;
726 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000727 struct passwd * pw = s->pw;
728 pid_t pid = getpid();
729
730 /*
731 * Get IP address of client. If the connection is not a socket, let
732 * the address be 0.0.0.0.
733 */
734 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000735 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000736 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000737 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000738 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000739 debug("getpeername: %.100s", strerror(errno));
740 fatal_cleanup();
741 }
742 }
743
744 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000745 if (!use_privsep)
746 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
747 get_remote_name_or_ip(utmp_len,
748 options.verify_reverse_mapping),
Damien Millerebc23062002-09-04 16:45:09 +1000749 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000750
Kevin Steves092f2ef2000-10-14 13:36:13 +0000751#ifdef USE_PAM
752 /*
753 * If password change is needed, do it now.
754 * This needs to occur before the ~/.hushlogin check.
755 */
Damien Miller646aa602001-02-15 11:51:32 +1100756 if (is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000757 print_pam_messages();
758 do_pam_chauthtok();
759 }
760#endif
761
Damien Millercf205e82001-04-16 18:29:15 +1000762 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000763 return;
764
765#ifdef USE_PAM
Damien Miller646aa602001-02-15 11:51:32 +1100766 if (!is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000767 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000768#endif /* USE_PAM */
769#ifdef WITH_AIXAUTHENTICATE
770 if (aixloginmsg && *aixloginmsg)
771 printf("%s\n", aixloginmsg);
772#endif /* WITH_AIXAUTHENTICATE */
773
Tim Rice81ed5182002-09-25 17:38:46 -0700774#ifndef NO_SSH_LASTLOG
Ben Lindstromc447fee2002-04-02 20:35:35 +0000775 if (options.print_lastlog && s->last_login_time != 0) {
776 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000777 if (strchr(time_string, '\n'))
778 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000779 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000780 printf("Last login: %s\r\n", time_string);
781 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000782 printf("Last login: %s from %s\r\n", time_string,
783 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000784 }
Tim Rice81ed5182002-09-25 17:38:46 -0700785#endif /* NO_SSH_LASTLOG */
Damien Millercf205e82001-04-16 18:29:15 +1000786
787 do_motd();
788}
789
790/*
791 * Display the message of the day.
792 */
793void
794do_motd(void)
795{
796 FILE *f;
797 char buf[256];
798
Damien Miller942da032000-08-18 13:59:06 +1000799 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000800#ifdef HAVE_LOGIN_CAP
801 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
802 "/etc/motd"), "r");
803#else
Damien Miller942da032000-08-18 13:59:06 +1000804 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000805#endif
Damien Miller942da032000-08-18 13:59:06 +1000806 if (f) {
807 while (fgets(buf, sizeof(buf), f))
808 fputs(buf, stdout);
809 fclose(f);
810 }
811 }
812}
813
Kevin Steves8f63caa2001-07-04 18:23:02 +0000814
815/*
816 * Check for quiet login, either .hushlogin or command given.
817 */
818int
819check_quietlogin(Session *s, const char *command)
820{
821 char buf[256];
822 struct passwd *pw = s->pw;
823 struct stat st;
824
825 /* Return 1 if .hushlogin exists or a command given. */
826 if (command != NULL)
827 return 1;
828 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
829#ifdef HAVE_LOGIN_CAP
830 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
831 return 1;
832#else
833 if (stat(buf, &st) >= 0)
834 return 1;
835#endif
836 return 0;
837}
838
Damien Millerb38eff82000-04-01 11:09:21 +1000839/*
840 * Sets the value of the given variable in the environment. If the variable
841 * already exists, its value is overriden.
842 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000843static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000844child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100845 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000846{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000847 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000848 char **env;
849
850 /*
851 * Find the slot where the value should be stored. If the variable
852 * already exists, we reuse the slot; otherwise we append a new slot
853 * at the end of the array, expanding if necessary.
854 */
855 env = *envp;
856 namelen = strlen(name);
857 for (i = 0; env[i]; i++)
858 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
859 break;
860 if (env[i]) {
861 /* Reuse the slot. */
862 xfree(env[i]);
863 } else {
864 /* New variable. Expand if necessary. */
865 if (i >= (*envsizep) - 1) {
Damien Millera0796ca2002-06-26 19:15:07 +1000866 if (*envsizep >= 1000)
867 fatal("child_set_env: too many env vars,"
868 " skipping: %.100s", name);
Damien Millerb38eff82000-04-01 11:09:21 +1000869 (*envsizep) += 50;
870 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
871 }
872 /* Need to set the NULL pointer at end of array beyond the new slot. */
873 env[i + 1] = NULL;
874 }
875
876 /* Allocate space and format the variable in the appropriate slot. */
877 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
878 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
879}
880
881/*
882 * Reads environment variables from the given file and adds/overrides them
883 * into the environment. If the file does not exist, this does nothing.
884 * Otherwise, it must consist of empty lines, comments (line starts with '#')
885 * and assignments of the form name=value. No other forms are allowed.
886 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000887static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000888read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100889 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000890{
891 FILE *f;
892 char buf[4096];
893 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000894 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000895
896 f = fopen(filename, "r");
897 if (!f)
898 return;
899
900 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000901 if (++lineno > 1000)
902 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000903 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
904 ;
905 if (!*cp || *cp == '#' || *cp == '\n')
906 continue;
907 if (strchr(cp, '\n'))
908 *strchr(cp, '\n') = '\0';
909 value = strchr(cp, '=');
910 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000911 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
912 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000913 continue;
914 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000915 /*
916 * Replace the equals sign by nul, and advance value to
917 * the value string.
918 */
Damien Millerb38eff82000-04-01 11:09:21 +1000919 *value = '\0';
920 value++;
921 child_set_env(env, envsize, cp, value);
922 }
923 fclose(f);
924}
925
Damien Millerbb9ffc12002-01-08 10:59:32 +1100926void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000927{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100928 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000929 int i;
930
Damien Millerbb9ffc12002-01-08 10:59:32 +1100931 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000932 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000933
Damien Millerbb9ffc12002-01-08 10:59:32 +1100934 for(i = 0; source[i] != NULL; i++) {
935 var_name = xstrdup(source[i]);
936 if ((var_val = strstr(var_name, "=")) == NULL) {
937 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000938 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000939 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100940 *var_val++ = '\0';
941
942 debug3("Copy environment: %s=%s", var_name, var_val);
943 child_set_env(env, envsize, var_name, var_val);
944
945 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000946 }
947}
Damien Millercb5e44a2000-09-29 12:12:36 +1100948
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000949static char **
950do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000951{
Damien Millerb38eff82000-04-01 11:09:21 +1000952 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000953 u_int i, envsize;
Damien Miller00111382003-03-10 11:21:17 +1100954 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000955 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000956
Damien Millerb38eff82000-04-01 11:09:21 +1000957 /* Initialize the environment. */
958 envsize = 100;
959 env = xmalloc(envsize * sizeof(char *));
960 env[0] = NULL;
961
Damien Millerbac2d8a2000-09-05 16:13:06 +1100962#ifdef HAVE_CYGWIN
963 /*
964 * The Windows environment contains some setting which are
965 * important for a running system. They must not be dropped.
966 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100967 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100968#endif
969
Damien Millerb38eff82000-04-01 11:09:21 +1000970 if (!options.use_login) {
971 /* Set basic environment. */
972 child_set_env(&env, &envsize, "USER", pw->pw_name);
973 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +1100974#ifdef _AIX
975 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
976#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000977 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +1000978#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +0000979 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
980 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
981 else
982 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +1100983#else /* HAVE_LOGIN_CAP */
984# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +1100985 /*
986 * There's no standard path on Windows. The path contains
987 * important components pointing to the system directories,
988 * needed for loading shared libraries. So the path better
989 * remains intact here.
990 */
Damien Millera18bbd32002-05-13 10:48:57 +1000991# ifdef SUPERUSER_PATH
992 child_set_env(&env, &envsize, "PATH",
993 s->pw->pw_uid == 0 ? SUPERUSER_PATH : _PATH_STDPATH);
994# else
Damien Millerb38eff82000-04-01 11:09:21 +1000995 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millera18bbd32002-05-13 10:48:57 +1000996# endif /* SUPERUSER_PATH */
Damien Millercb5e44a2000-09-29 12:12:36 +1100997# endif /* HAVE_CYGWIN */
998#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +1000999
1000 snprintf(buf, sizeof buf, "%.200s/%.50s",
1001 _PATH_MAILDIR, pw->pw_name);
1002 child_set_env(&env, &envsize, "MAIL", buf);
1003
1004 /* Normal systems set SHELL by default. */
1005 child_set_env(&env, &envsize, "SHELL", shell);
1006 }
1007 if (getenv("TZ"))
1008 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1009
1010 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001011 if (!options.use_login) {
1012 while (custom_environment) {
1013 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001014 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001015
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001016 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001017 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001018 if (str[i] == '=') {
1019 str[i] = 0;
1020 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001021 }
1022 custom_environment = ce->next;
1023 xfree(ce->s);
1024 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001025 }
Damien Millerb38eff82000-04-01 11:09:21 +10001026 }
1027
Damien Millerf37e2462002-09-19 11:47:55 +10001028 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001029 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001030 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001031 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1032
Damien Miller00111382003-03-10 11:21:17 +11001033 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001034 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001035 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1036 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001037 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1038
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001039 if (s->ttyfd != -1)
1040 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1041 if (s->term)
1042 child_set_env(&env, &envsize, "TERM", s->term);
1043 if (s->display)
1044 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001045 if (original_command)
1046 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1047 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001048
Tim Rice81ed5182002-09-25 17:38:46 -07001049#ifdef _UNICOS
1050 if (cray_tmpdir[0] != '\0')
1051 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1052#endif /* _UNICOS */
1053
Damien Millerb38eff82000-04-01 11:09:21 +10001054#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001055 {
1056 char *cp;
1057
1058 if ((cp = getenv("AUTHSTATE")) != NULL)
1059 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1060 if ((cp = getenv("KRB5CCNAME")) != NULL)
1061 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1062 read_environment_file(&env, &envsize, "/etc/environment");
1063 }
Damien Millerb38eff82000-04-01 11:09:21 +10001064#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001065#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +00001066 if (s->authctxt->krb4_ticket_file)
1067 child_set_env(&env, &envsize, "KRBTKFILE",
1068 s->authctxt->krb4_ticket_file);
1069#endif
1070#ifdef KRB5
1071 if (s->authctxt->krb5_ticket_file)
1072 child_set_env(&env, &envsize, "KRB5CCNAME",
1073 s->authctxt->krb5_ticket_file);
1074#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001075#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001076 /*
1077 * Pull in any environment variables that may have
1078 * been set by PAM.
1079 */
1080 {
1081 char **p;
1082
1083 p = fetch_pam_environment();
1084 copy_environment(p, &env, &envsize);
1085 free_pam_environment(p);
1086 }
Damien Millerb38eff82000-04-01 11:09:21 +10001087#endif /* USE_PAM */
1088
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001089 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001090 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001091 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001092
1093 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001094 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001095 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001096 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001097 read_environment_file(&env, &envsize, buf);
1098 }
1099 if (debug_flag) {
1100 /* dump the environment */
1101 fprintf(stderr, "Environment:\n");
1102 for (i = 0; env[i]; i++)
1103 fprintf(stderr, " %.200s\n", env[i]);
1104 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001105 return env;
1106}
1107
1108/*
1109 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1110 * first in this order).
1111 */
1112static void
1113do_rc_files(Session *s, const char *shell)
1114{
1115 FILE *f = NULL;
1116 char cmd[1024];
1117 int do_xauth;
1118 struct stat st;
1119
1120 do_xauth =
1121 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1122
1123 /* ignore _PATH_SSH_USER_RC for subsystems */
1124 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1125 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1126 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1127 if (debug_flag)
1128 fprintf(stderr, "Running %s\n", cmd);
1129 f = popen(cmd, "w");
1130 if (f) {
1131 if (do_xauth)
1132 fprintf(f, "%s %s\n", s->auth_proto,
1133 s->auth_data);
1134 pclose(f);
1135 } else
1136 fprintf(stderr, "Could not run %s\n",
1137 _PATH_SSH_USER_RC);
1138 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1139 if (debug_flag)
1140 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1141 _PATH_SSH_SYSTEM_RC);
1142 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1143 if (f) {
1144 if (do_xauth)
1145 fprintf(f, "%s %s\n", s->auth_proto,
1146 s->auth_data);
1147 pclose(f);
1148 } else
1149 fprintf(stderr, "Could not run %s\n",
1150 _PATH_SSH_SYSTEM_RC);
1151 } else if (do_xauth && options.xauth_location != NULL) {
1152 /* Add authority data to .Xauthority if appropriate. */
1153 if (debug_flag) {
1154 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001155 "Running %.500s remove %.100s\n",
1156 options.xauth_location, s->auth_display);
1157 fprintf(stderr,
1158 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001159 options.xauth_location, s->auth_display,
1160 s->auth_proto, s->auth_data);
1161 }
1162 snprintf(cmd, sizeof cmd, "%s -q -",
1163 options.xauth_location);
1164 f = popen(cmd, "w");
1165 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001166 fprintf(f, "remove %s\n",
1167 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001168 fprintf(f, "add %s %s %s\n",
1169 s->auth_display, s->auth_proto,
1170 s->auth_data);
1171 pclose(f);
1172 } else {
1173 fprintf(stderr, "Could not run %s\n",
1174 cmd);
1175 }
1176 }
1177}
1178
1179static void
1180do_nologin(struct passwd *pw)
1181{
1182 FILE *f = NULL;
1183 char buf[1024];
1184
1185#ifdef HAVE_LOGIN_CAP
1186 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1187 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1188 _PATH_NOLOGIN), "r");
1189#else
1190 if (pw->pw_uid)
1191 f = fopen(_PATH_NOLOGIN, "r");
1192#endif
1193 if (f) {
1194 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001195 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001196 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001197 while (fgets(buf, sizeof(buf), f))
1198 fputs(buf, stderr);
1199 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001200 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001201 exit(254);
1202 }
1203}
1204
1205/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001206void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001207do_setusercontext(struct passwd *pw)
1208{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001209#ifndef HAVE_CYGWIN
1210 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001211#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001212 {
1213
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001214#ifdef HAVE_SETPCRED
1215 setpcred(pw->pw_name);
1216#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001217#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001218# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001219 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001220# endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001221 if (setusercontext(lc, pw, pw->pw_uid,
1222 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1223 perror("unable to set user context");
1224 exit(1);
1225 }
1226#else
1227# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1228 /* Sets login uid for accounting */
1229 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1230 error("setluid: %s", strerror(errno));
1231# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1232
1233 if (setlogin(pw->pw_name) < 0)
1234 error("setlogin failed: %s", strerror(errno));
1235 if (setgid(pw->pw_gid) < 0) {
1236 perror("setgid");
1237 exit(1);
1238 }
1239 /* Initialize the group list. */
1240 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1241 perror("initgroups");
1242 exit(1);
1243 }
1244 endgrent();
1245# ifdef USE_PAM
1246 /*
1247 * PAM credentials may take the form of supplementary groups.
1248 * These will have been wiped by the above initgroups() call.
1249 * Reestablish them here.
1250 */
1251 do_pam_setcred(0);
1252# endif /* USE_PAM */
1253# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1254 irix_setusercontext(pw);
1255# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001256# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001257 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001258# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001259 /* Permanently switch to the desired uid. */
1260 permanently_set_uid(pw);
1261#endif
1262 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001263
1264#ifdef HAVE_CYGWIN
1265 if (is_winnt)
1266#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001267 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1268 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1269}
1270
Ben Lindstrom08105192002-03-22 02:50:06 +00001271static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001272launch_login(struct passwd *pw, const char *hostname)
1273{
1274 /* Launch login(1). */
1275
Ben Lindstrom378a4172002-06-07 14:49:56 +00001276 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001277#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001278 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001279#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001280#ifdef LOGIN_NO_ENDOPT
1281 "-p", "-f", pw->pw_name, (char *)NULL);
1282#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001283 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001284#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001285
1286 /* Login couldn't be executed, die. */
1287
1288 perror("login");
1289 exit(1);
1290}
1291
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001292/*
1293 * Performs common processing for the child, such as setting up the
1294 * environment, closing extra file descriptors, setting the user and group
1295 * ids, and executing the command or shell.
1296 */
1297void
1298do_child(Session *s, const char *command)
1299{
1300 extern char **environ;
1301 char **env;
1302 char *argv[10];
1303 const char *shell, *shell0, *hostname = NULL;
1304 struct passwd *pw = s->pw;
1305 u_int i;
1306
1307 /* remove hostkey from the child's memory */
1308 destroy_sensitive_data();
1309
1310 /* login(1) is only called if we execute the login shell */
1311 if (options.use_login && command != NULL)
1312 options.use_login = 0;
1313
Tim Rice81ed5182002-09-25 17:38:46 -07001314#ifdef _UNICOS
1315 cray_setup(pw->pw_uid, pw->pw_name, command);
1316#endif /* _UNICOS */
1317
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001318 /*
1319 * Login(1) does this as well, and it needs uid 0 for the "-h"
1320 * switch, so we let login(1) to this for us.
1321 */
1322 if (!options.use_login) {
1323#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001324 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001325 if (!check_quietlogin(s, command))
1326 do_motd();
1327#else /* HAVE_OSF_SIA */
1328 do_nologin(pw);
1329 do_setusercontext(pw);
1330#endif /* HAVE_OSF_SIA */
1331 }
1332
1333 /*
1334 * Get the shell from the password data. An empty shell field is
1335 * legal, and means /bin/sh.
1336 */
1337 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001338
1339 /*
1340 * Make sure $SHELL points to the shell from the password file,
1341 * even if shell is overridden from login.conf
1342 */
1343 env = do_setup_env(s, shell);
1344
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001345#ifdef HAVE_LOGIN_CAP
1346 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1347#endif
1348
Damien Millerad833b32000-08-23 10:46:23 +10001349 /* we have to stash the hostname before we close our socket. */
1350 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001351 hostname = get_remote_name_or_ip(utmp_len,
Damien Millerc5d86352002-02-05 12:13:41 +11001352 options.verify_reverse_mapping);
Damien Millerb38eff82000-04-01 11:09:21 +10001353 /*
1354 * Close the connection descriptors; note that this is the child, and
1355 * the server will still have the socket open, and it is important
1356 * that we do not shutdown it. Note that the descriptors cannot be
1357 * closed before building the environment, as we call
1358 * get_remote_ipaddr there.
1359 */
1360 if (packet_get_connection_in() == packet_get_connection_out())
1361 close(packet_get_connection_in());
1362 else {
1363 close(packet_get_connection_in());
1364 close(packet_get_connection_out());
1365 }
1366 /*
1367 * Close all descriptors related to channels. They will still remain
1368 * open in the parent.
1369 */
1370 /* XXX better use close-on-exec? -markus */
1371 channel_close_all();
1372
1373 /*
1374 * Close any extra file descriptors. Note that there may still be
1375 * descriptors left by system functions. They will be closed later.
1376 */
1377 endpwent();
1378
1379 /*
1380 * Close any extra open file descriptors so that we don\'t have them
1381 * hanging around in clients. Note that we want to do this after
1382 * initgroups, because at least on Solaris 2.3 it leaves file
1383 * descriptors open.
1384 */
1385 for (i = 3; i < 64; i++)
1386 close(i);
1387
Damien Millerb38eff82000-04-01 11:09:21 +10001388 /*
Damien Miller05eda432002-02-10 18:32:28 +11001389 * Must take new environment into use so that .ssh/rc,
1390 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001391 */
1392 environ = env;
1393
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001394#ifdef AFS
1395 /* Try to get AFS tokens for the local cell. */
1396 if (k_hasafs()) {
1397 char cell[64];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001398
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001399 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1400 krb_afslog(cell, 0);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001401
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001402 krb_afslog(0, 0);
1403 }
1404#endif /* AFS */
1405
Damien Miller139d4cd2001-10-10 15:07:44 +10001406 /* Change current directory to the user\'s home directory. */
1407 if (chdir(pw->pw_dir) < 0) {
1408 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1409 pw->pw_dir, strerror(errno));
1410#ifdef HAVE_LOGIN_CAP
1411 if (login_getcapbool(lc, "requirehome", 0))
1412 exit(1);
1413#endif
1414 }
1415
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001416 if (!options.use_login)
1417 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001418
1419 /* restore SIGPIPE for child */
1420 signal(SIGPIPE, SIG_DFL);
1421
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001422 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001423 launch_login(pw, hostname);
1424 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001425 }
1426
1427 /* Get the last component of the shell name. */
1428 if ((shell0 = strrchr(shell, '/')) != NULL)
1429 shell0++;
1430 else
1431 shell0 = shell;
1432
Damien Millerb38eff82000-04-01 11:09:21 +10001433 /*
1434 * If we have no command, execute the shell. In this case, the shell
1435 * name to be passed in argv[0] is preceded by '-' to indicate that
1436 * this is a login shell.
1437 */
1438 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001439 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001440
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001441 /* Start the shell. Set initial character to '-'. */
1442 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001443
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001444 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1445 >= sizeof(argv0) - 1) {
1446 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001447 perror(shell);
1448 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001449 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001450
1451 /* Execute the shell. */
1452 argv[0] = argv0;
1453 argv[1] = NULL;
1454 execve(shell, argv, env);
1455
1456 /* Executing the shell failed. */
1457 perror(shell);
1458 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001459 }
1460 /*
1461 * Execute the command using the user's shell. This uses the -c
1462 * option to execute the command.
1463 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001464 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001465 argv[1] = "-c";
1466 argv[2] = (char *) command;
1467 argv[3] = NULL;
1468 execve(shell, argv, env);
1469 perror(shell);
1470 exit(1);
1471}
1472
1473Session *
1474session_new(void)
1475{
1476 int i;
1477 static int did_init = 0;
1478 if (!did_init) {
1479 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001480 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001481 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001482 }
1483 did_init = 1;
1484 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001485 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001486 Session *s = &sessions[i];
1487 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001488 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001489 s->chanid = -1;
1490 s->ptyfd = -1;
1491 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001492 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001493 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001494 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001495 return s;
1496 }
1497 }
1498 return NULL;
1499}
1500
Ben Lindstrombba81212001-06-25 05:01:22 +00001501static void
Damien Millerb38eff82000-04-01 11:09:21 +10001502session_dump(void)
1503{
1504 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001505 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001506 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001507 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001508 s->used,
1509 s->self,
1510 s,
1511 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001512 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001513 }
1514}
1515
Damien Millerefb4afe2000-04-12 18:45:05 +10001516int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001517session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001518{
1519 Session *s = session_new();
1520 debug("session_open: channel %d", chanid);
1521 if (s == NULL) {
1522 error("no more sessions");
1523 return 0;
1524 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001525 s->authctxt = authctxt;
1526 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001527 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001528 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001529 debug("session_open: session %d: link with channel %d", s->self, chanid);
1530 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001531 return 1;
1532}
1533
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001534Session *
1535session_by_tty(char *tty)
1536{
1537 int i;
1538 for (i = 0; i < MAX_SESSIONS; i++) {
1539 Session *s = &sessions[i];
1540 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1541 debug("session_by_tty: session %d tty %s", i, tty);
1542 return s;
1543 }
1544 }
1545 debug("session_by_tty: unknown tty %.100s", tty);
1546 session_dump();
1547 return NULL;
1548}
1549
Ben Lindstrombba81212001-06-25 05:01:22 +00001550static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001551session_by_channel(int id)
1552{
1553 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001554 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001555 Session *s = &sessions[i];
1556 if (s->used && s->chanid == id) {
1557 debug("session_by_channel: session %d channel %d", i, id);
1558 return s;
1559 }
1560 }
1561 debug("session_by_channel: unknown channel %d", id);
1562 session_dump();
1563 return NULL;
1564}
1565
Ben Lindstrombba81212001-06-25 05:01:22 +00001566static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001567session_by_pid(pid_t pid)
1568{
1569 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001570 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001571 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001572 Session *s = &sessions[i];
1573 if (s->used && s->pid == pid)
1574 return s;
1575 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001576 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001577 session_dump();
1578 return NULL;
1579}
1580
Ben Lindstrombba81212001-06-25 05:01:22 +00001581static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001582session_window_change_req(Session *s)
1583{
1584 s->col = packet_get_int();
1585 s->row = packet_get_int();
1586 s->xpixel = packet_get_int();
1587 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001588 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001589 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1590 return 1;
1591}
1592
Ben Lindstrombba81212001-06-25 05:01:22 +00001593static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001594session_pty_req(Session *s)
1595{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001596 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001597 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001598
Ben Lindstrom49c12602001-06-13 04:37:36 +00001599 if (no_pty_flag) {
1600 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001601 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001602 }
1603 if (s->ttyfd != -1) {
1604 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001605 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001606 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001607 /* Get the time and hostname when the user last logged in. */
1608 if (options.print_lastlog) {
1609 s->hostname[0] = '\0';
1610 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1611 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1612 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001613
Damien Millerefb4afe2000-04-12 18:45:05 +10001614 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001615
1616 if (compat20) {
1617 s->col = packet_get_int();
1618 s->row = packet_get_int();
1619 } else {
1620 s->row = packet_get_int();
1621 s->col = packet_get_int();
1622 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001623 s->xpixel = packet_get_int();
1624 s->ypixel = packet_get_int();
1625
1626 if (strcmp(s->term, "") == 0) {
1627 xfree(s->term);
1628 s->term = NULL;
1629 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001630
Damien Millerefb4afe2000-04-12 18:45:05 +10001631 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001632 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001633 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001634 if (s->term)
1635 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001636 s->term = NULL;
1637 s->ptyfd = -1;
1638 s->ttyfd = -1;
1639 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001640 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001641 }
1642 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001643
1644 /* for SSH1 the tty modes length is not given */
1645 if (!compat20)
1646 n_bytes = packet_remaining();
1647 tty_parse_modes(s->ttyfd, &n_bytes);
1648
Damien Millerefb4afe2000-04-12 18:45:05 +10001649 /*
1650 * Add a cleanup function to clear the utmp entry and record logout
1651 * time in case we call fatal() (e.g., the connection gets closed).
1652 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001653 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001654 if (!use_privsep)
1655 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001656
1657 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001658 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1659
Damien Miller48b03fc2002-01-22 23:11:40 +11001660 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001661 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001662 return 1;
1663}
1664
Ben Lindstrombba81212001-06-25 05:01:22 +00001665static int
Damien Millerbd483e72000-04-30 10:00:53 +10001666session_subsystem_req(Session *s)
1667{
Damien Millerae452462001-10-10 15:08:06 +10001668 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001669 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001670 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001671 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001672 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001673
Damien Miller48b03fc2002-01-22 23:11:40 +11001674 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001675 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001676
Damien Millerf6d9e222000-06-18 14:50:44 +10001677 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001678 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1679 cmd = options.subsystem_command[i];
1680 if (stat(cmd, &st) < 0) {
1681 error("subsystem: cannot stat %s: %s", cmd,
1682 strerror(errno));
1683 break;
1684 }
1685 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001686 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001687 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001688 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001689 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001690 }
1691 }
1692
1693 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001694 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001695 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001696
Damien Millerbd483e72000-04-30 10:00:53 +10001697 xfree(subsys);
1698 return success;
1699}
1700
Ben Lindstrombba81212001-06-25 05:01:22 +00001701static int
Damien Millerbd483e72000-04-30 10:00:53 +10001702session_x11_req(Session *s)
1703{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001704 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001705
1706 s->single_connection = packet_get_char();
1707 s->auth_proto = packet_get_string(NULL);
1708 s->auth_data = packet_get_string(NULL);
1709 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001710 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001711
Ben Lindstrom768176b2001-06-09 01:29:12 +00001712 success = session_setup_x11fwd(s);
1713 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001714 xfree(s->auth_proto);
1715 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001716 s->auth_proto = NULL;
1717 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001718 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001719 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001720}
1721
Ben Lindstrombba81212001-06-25 05:01:22 +00001722static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001723session_shell_req(Session *s)
1724{
Damien Miller48b03fc2002-01-22 23:11:40 +11001725 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001726 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001727 return 1;
1728}
1729
Ben Lindstrombba81212001-06-25 05:01:22 +00001730static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001731session_exec_req(Session *s)
1732{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001733 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001734 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001735 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001736 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001737 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001738 return 1;
1739}
1740
Ben Lindstrombba81212001-06-25 05:01:22 +00001741static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742session_auth_agent_req(Session *s)
1743{
1744 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001745 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001746 if (no_agent_forwarding_flag) {
1747 debug("session_auth_agent_req: no_agent_forwarding_flag");
1748 return 0;
1749 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001750 if (called) {
1751 return 0;
1752 } else {
1753 called = 1;
1754 return auth_input_request_forwarding(s->pw);
1755 }
1756}
1757
Damien Millerc7ef63d2002-02-05 12:21:42 +11001758int
1759session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001760{
Damien Millerefb4afe2000-04-12 18:45:05 +10001761 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001762 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001763
Damien Millerc7ef63d2002-02-05 12:21:42 +11001764 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001765 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001766 c->self, rtype);
1767 return 0;
1768 }
1769 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001770
1771 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001772 * a session is in LARVAL state until a shell, a command
1773 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001774 */
1775 if (c->type == SSH_CHANNEL_LARVAL) {
1776 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001777 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001778 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001779 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001780 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001781 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001782 } else if (strcmp(rtype, "x11-req") == 0) {
1783 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001784 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1785 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001786 } else if (strcmp(rtype, "subsystem") == 0) {
1787 success = session_subsystem_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001788 }
1789 }
1790 if (strcmp(rtype, "window-change") == 0) {
1791 success = session_window_change_req(s);
1792 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001793 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001794}
1795
1796void
1797session_set_fds(Session *s, int fdin, int fdout, int fderr)
1798{
1799 if (!compat20)
1800 fatal("session_set_fds: called for proto != 2.0");
1801 /*
1802 * now that have a child and a pipe to the child,
1803 * we can activate our channel and register the fd's
1804 */
1805 if (s->chanid == -1)
1806 fatal("no channel for session %d", s->self);
1807 channel_set_fds(s->chanid,
1808 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001809 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001810 1,
1811 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001812}
1813
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001814/*
1815 * Function to perform pty cleanup. Also called if we get aborted abnormally
1816 * (e.g., due to a dropped connection).
1817 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001818void
1819session_pty_cleanup2(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001820{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001821 Session *s = session;
1822
1823 if (s == NULL) {
1824 error("session_pty_cleanup: no session");
1825 return;
1826 }
1827 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001828 return;
1829
Kevin Steves43cdef32001-02-11 14:12:08 +00001830 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001831
Damien Millerb38eff82000-04-01 11:09:21 +10001832 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001833 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001834 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001835
1836 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001837 if (getuid() == 0)
1838 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001839
1840 /*
1841 * Close the server side of the socket pairs. We must do this after
1842 * the pty cleanup, so that another process doesn't get this pty
1843 * while we're still cleaning up.
1844 */
1845 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001846 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001847
1848 /* unlink pty from session */
1849 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001850}
Damien Millerefb4afe2000-04-12 18:45:05 +10001851
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001852void
1853session_pty_cleanup(void *session)
1854{
1855 PRIVSEP(session_pty_cleanup2(session));
1856}
1857
Damien Miller5a80bba2002-09-04 16:39:02 +10001858static char *
1859sig2name(int sig)
1860{
1861#define SSH_SIG(x) if (sig == SIG ## x) return #x
1862 SSH_SIG(ABRT);
1863 SSH_SIG(ALRM);
1864 SSH_SIG(FPE);
1865 SSH_SIG(HUP);
1866 SSH_SIG(ILL);
1867 SSH_SIG(INT);
1868 SSH_SIG(KILL);
1869 SSH_SIG(PIPE);
1870 SSH_SIG(QUIT);
1871 SSH_SIG(SEGV);
1872 SSH_SIG(TERM);
1873 SSH_SIG(USR1);
1874 SSH_SIG(USR2);
1875#undef SSH_SIG
1876 return "SIG@openssh.com";
1877}
1878
Ben Lindstrombba81212001-06-25 05:01:22 +00001879static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001880session_exit_message(Session *s, int status)
1881{
1882 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001883
1884 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001885 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001886 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001887 debug("session_exit_message: session %d channel %d pid %ld",
1888 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001889
1890 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001891 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001892 packet_put_int(WEXITSTATUS(status));
1893 packet_send();
1894 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001895 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10001896 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001897#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001898 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001899#else /* WCOREDUMP */
1900 packet_put_char(0);
1901#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001902 packet_put_cstring("");
1903 packet_put_cstring("");
1904 packet_send();
1905 } else {
1906 /* Some weird exit cause. Just exit. */
1907 packet_disconnect("wait returned status %04x.", status);
1908 }
1909
1910 /* disconnect channel */
1911 debug("session_exit_message: release channel %d", s->chanid);
1912 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001913 /*
1914 * emulate a write failure with 'chan_write_failed', nobody will be
1915 * interested in data we write.
1916 * Note that we must not call 'chan_read_failed', since there could
1917 * be some more data waiting in the pipe.
1918 */
Damien Millerbd483e72000-04-30 10:00:53 +10001919 if (c->ostate != CHAN_OUTPUT_CLOSED)
1920 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001921 s->chanid = -1;
1922}
1923
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001924void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001925session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001926{
Ben Lindstromce0f6342002-06-11 16:42:49 +00001927 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001928 if (s->ttyfd != -1) {
1929 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1930 session_pty_cleanup(s);
1931 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001932 if (s->term)
1933 xfree(s->term);
1934 if (s->display)
1935 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001936 if (s->auth_display)
1937 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001938 if (s->auth_data)
1939 xfree(s->auth_data);
1940 if (s->auth_proto)
1941 xfree(s->auth_proto);
1942 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001943 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001944}
1945
1946void
1947session_close_by_pid(pid_t pid, int status)
1948{
1949 Session *s = session_by_pid(pid);
1950 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001951 debug("session_close_by_pid: no session for pid %ld",
1952 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001953 return;
1954 }
1955 if (s->chanid != -1)
1956 session_exit_message(s, status);
1957 session_close(s);
1958}
1959
1960/*
1961 * this is called when a channel dies before
1962 * the session 'child' itself dies
1963 */
1964void
1965session_close_by_channel(int id, void *arg)
1966{
1967 Session *s = session_by_channel(id);
1968 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001969 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001970 return;
1971 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001972 debug("session_close_by_channel: channel %d child %ld",
1973 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10001974 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10001975 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10001976 /*
1977 * delay detach of session, but release pty, since
1978 * the fd's to the child are already closed
1979 */
1980 if (s->ttyfd != -1) {
1981 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1982 session_pty_cleanup(s);
1983 }
Damien Miller3ec27592001-10-12 11:35:04 +10001984 return;
1985 }
1986 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10001987 channel_cancel_cleanup(s->chanid);
1988 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10001989 session_close(s);
1990}
1991
1992void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001993session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10001994{
1995 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001996 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10001997 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001998 if (s->used) {
1999 if (closefunc != NULL)
2000 closefunc(s);
2001 else
2002 session_close(s);
2003 }
Damien Miller52b77be2001-10-10 15:14:37 +10002004 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002005}
2006
Ben Lindstrombba81212001-06-25 05:01:22 +00002007static char *
Damien Millere247cc42000-05-07 12:03:14 +10002008session_tty_list(void)
2009{
2010 static char buf[1024];
2011 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002012 char *cp;
2013
Damien Millere247cc42000-05-07 12:03:14 +10002014 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002015 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002016 Session *s = &sessions[i];
2017 if (s->used && s->ttyfd != -1) {
Damien Millera8ed44b2003-01-10 09:53:12 +11002018
2019 if (strncmp(s->tty, "/dev/", 5) != 0) {
2020 cp = strrchr(s->tty, '/');
2021 cp = (cp == NULL) ? s->tty : cp + 1;
2022 } else
2023 cp = s->tty + 5;
2024
Damien Millere247cc42000-05-07 12:03:14 +10002025 if (buf[0] != '\0')
2026 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002027 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002028 }
2029 }
2030 if (buf[0] == '\0')
2031 strlcpy(buf, "notty", sizeof buf);
2032 return buf;
2033}
2034
2035void
2036session_proctitle(Session *s)
2037{
2038 if (s->pw == NULL)
2039 error("no user for session %d", s->self);
2040 else
2041 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2042}
2043
Ben Lindstrom768176b2001-06-09 01:29:12 +00002044int
2045session_setup_x11fwd(Session *s)
2046{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002047 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002048 char display[512], auth_display[512];
2049 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002050
2051 if (no_x11_forwarding_flag) {
2052 packet_send_debug("X11 forwarding disabled in user configuration file.");
2053 return 0;
2054 }
2055 if (!options.x11_forwarding) {
2056 debug("X11 forwarding disabled in server configuration file.");
2057 return 0;
2058 }
2059 if (!options.xauth_location ||
2060 (stat(options.xauth_location, &st) == -1)) {
2061 packet_send_debug("No xauth program; cannot forward with spoofing.");
2062 return 0;
2063 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002064 if (options.use_login) {
2065 packet_send_debug("X11 forwarding disabled; "
2066 "not compatible with UseLogin=yes.");
2067 return 0;
2068 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002069 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002070 debug("X11 display already set.");
2071 return 0;
2072 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002073 if (x11_create_display_inet(options.x11_display_offset,
2074 options.x11_use_localhost, s->single_connection,
2075 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002076 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002077 return 0;
2078 }
Kevin Steves366298c2001-12-19 17:58:01 +00002079
2080 /* Set up a suitable value for the DISPLAY variable. */
2081 if (gethostname(hostname, sizeof(hostname)) < 0)
2082 fatal("gethostname: %.100s", strerror(errno));
2083 /*
2084 * auth_display must be used as the displayname when the
2085 * authorization entry is added with xauth(1). This will be
2086 * different than the DISPLAY string for localhost displays.
2087 */
Damien Miller95c249f2002-02-05 12:11:34 +11002088 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002089 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002090 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002091 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002092 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002093 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002094 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002095 } else {
2096#ifdef IPADDR_IN_DISPLAY
2097 struct hostent *he;
2098 struct in_addr my_addr;
2099
2100 he = gethostbyname(hostname);
2101 if (he == NULL) {
2102 error("Can't get IP address for X11 DISPLAY.");
2103 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2104 return 0;
2105 }
2106 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002107 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002108 s->display_number, s->screen);
2109#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002110 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002111 s->display_number, s->screen);
2112#endif
2113 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002114 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002115 }
2116
Ben Lindstrom768176b2001-06-09 01:29:12 +00002117 return 1;
2118}
2119
Ben Lindstrombba81212001-06-25 05:01:22 +00002120static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002121do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002122{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002123 server_loop2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10002124}