blob: 9832d7a834c5410b7e90e5a09642bd2b3ebfafcb [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"
Ben Lindstrom46767602002-12-23 02:26:08 +000036RCSID("$OpenBSD: session.c,v 1.152 2002/12/10 08:56:00 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,
195 0, xstrdup("auth socket"), 1);
196 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{
204 /*
205 * Cancel the alarm we set to limit the time taken for
206 * authentication.
207 */
208 alarm(0);
209 if (startup_pipe != -1) {
210 close(startup_pipe);
211 startup_pipe = -1;
212 }
Damien Millere49d0962001-11-13 23:46:18 +1100213
Ben Lindstromb31783d2001-03-22 02:02:12 +0000214 /* setup the channel layer */
215 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
216 channel_permit_all_opens();
217
218 if (compat20)
219 do_authenticated2(authctxt);
220 else
221 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000222
Ben Lindstrom2bcdf062001-06-13 04:41:41 +0000223 /* remove agent socket */
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000224 if (auth_sock_name != NULL)
Ben Lindstrom983c0982001-06-09 01:20:06 +0000225 auth_sock_cleanup_proc(authctxt->pw);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000226#ifdef KRB4
227 if (options.kerberos_ticket_cleanup)
228 krb4_cleanup_proc(authctxt);
229#endif
230#ifdef KRB5
231 if (options.kerberos_ticket_cleanup)
232 krb5_cleanup_proc(authctxt);
233#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000234}
235
Damien Millerb38eff82000-04-01 11:09:21 +1000236/*
Damien Millerb38eff82000-04-01 11:09:21 +1000237 * Prepares for an interactive session. This is called after the user has
238 * been successfully authenticated. During this message exchange, pseudo
239 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
240 * are requested, etc.
241 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000243do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000244{
245 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000246 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100247 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000248 int enable_compression_after_reply = 0;
249 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000250
251 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000252 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000253 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000254
Damien Millerb38eff82000-04-01 11:09:21 +1000255 /*
256 * We stay in this loop until the client requests to execute a shell
257 * or a command.
258 */
259 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000260 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000261
262 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100263 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000264
265 /* Process the packet. */
266 switch (type) {
267 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000268 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100269 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000270 if (compression_level < 1 || compression_level > 9) {
271 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100272 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000273 break;
274 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000275 if (!options.compression) {
276 debug2("compression disabled");
277 break;
278 }
Damien Millerb38eff82000-04-01 11:09:21 +1000279 /* Enable compression after we have responded with SUCCESS. */
280 enable_compression_after_reply = 1;
281 success = 1;
282 break;
283
284 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000285 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000286 break;
287
288 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000289 s->auth_proto = packet_get_string(&proto_len);
290 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000291
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000292 screen_flag = packet_get_protocol_flags() &
293 SSH_PROTOFLAG_SCREEN_NUMBER;
294 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
295
296 if (packet_remaining() == 4) {
297 if (!screen_flag)
298 debug2("Buggy client: "
299 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000300 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000301 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000302 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000303 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100304 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000305 success = session_setup_x11fwd(s);
306 if (!success) {
307 xfree(s->auth_proto);
308 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000309 s->auth_proto = NULL;
310 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000311 }
Damien Millerb38eff82000-04-01 11:09:21 +1000312 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000313
314 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
315 if (no_agent_forwarding_flag || compat13) {
316 debug("Authentication agent forwarding not permitted for this authentication.");
317 break;
318 }
319 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000320 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000321 break;
322
323 case SSH_CMSG_PORT_FORWARD_REQUEST:
324 if (no_port_forwarding_flag) {
325 debug("Port forwarding not permitted for this authentication.");
326 break;
327 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100328 if (!options.allow_tcp_forwarding) {
329 debug("Port forwarding not permitted.");
330 break;
331 }
Damien Millerb38eff82000-04-01 11:09:21 +1000332 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000333 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000334 success = 1;
335 break;
336
337 case SSH_CMSG_MAX_PACKET_SIZE:
338 if (packet_set_maxsize(packet_get_int()) > 0)
339 success = 1;
340 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100341
Ben Lindstromec95ed92001-07-04 04:21:14 +0000342#if defined(AFS) || defined(KRB5)
343 case SSH_CMSG_HAVE_KERBEROS_TGT:
344 if (!options.kerberos_tgt_passing) {
345 verbose("Kerberos TGT passing disabled.");
346 } else {
347 char *kdata = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100348 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100349
Ben Lindstromec95ed92001-07-04 04:21:14 +0000350 /* XXX - 0x41, see creds_to_radix version */
351 if (kdata[0] != 0x41) {
352#ifdef KRB5
353 krb5_data tgt;
354 tgt.data = kdata;
355 tgt.length = dlen;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100356
Ben Lindstromec95ed92001-07-04 04:21:14 +0000357 if (auth_krb5_tgt(s->authctxt, &tgt))
358 success = 1;
359 else
360 verbose("Kerberos v5 TGT refused for %.100s", s->authctxt->user);
361#endif /* KRB5 */
362 } else {
363#ifdef AFS
364 if (auth_krb4_tgt(s->authctxt, kdata))
365 success = 1;
366 else
367 verbose("Kerberos v4 TGT refused for %.100s", s->authctxt->user);
368#endif /* AFS */
369 }
370 xfree(kdata);
371 }
372 break;
373#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100374
Ben Lindstromec95ed92001-07-04 04:21:14 +0000375#ifdef AFS
376 case SSH_CMSG_HAVE_AFS_TOKEN:
377 if (!options.afs_token_passing || !k_hasafs()) {
378 verbose("AFS token passing disabled.");
379 } else {
380 /* Accept AFS token. */
381 char *token = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100382 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100383
Ben Lindstromec95ed92001-07-04 04:21:14 +0000384 if (auth_afs_token(s->authctxt, token))
385 success = 1;
386 else
387 verbose("AFS token refused for %.100s",
388 s->authctxt->user);
389 xfree(token);
390 }
391 break;
392#endif /* AFS */
Damien Millerb38eff82000-04-01 11:09:21 +1000393
394 case SSH_CMSG_EXEC_SHELL:
395 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000396 if (type == SSH_CMSG_EXEC_CMD) {
397 command = packet_get_string(&dlen);
398 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000399 do_exec(s, command);
400 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000401 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000402 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000403 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100404 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000405 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 return;
407
408 default:
409 /*
410 * Any unknown messages in this phase are ignored,
411 * and a failure message is returned.
412 */
413 log("Unknown packet type received after authentication: %d", type);
414 }
415 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
416 packet_send();
417 packet_write_wait();
418
419 /* Enable compression now that we have replied if appropriate. */
420 if (enable_compression_after_reply) {
421 enable_compression_after_reply = 0;
422 packet_start_compression(compression_level);
423 }
424 }
425}
426
427/*
428 * This is called to fork and execute a command when we have no tty. This
429 * will call do_child from the child, and server_loop from the parent after
430 * setting up file descriptors and such.
431 */
Damien Miller4af51302000-04-16 11:18:38 +1000432void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000433do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000434{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000435 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000436
437#ifdef USE_PIPES
438 int pin[2], pout[2], perr[2];
439 /* Allocate pipes for communicating with the program. */
440 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
441 packet_disconnect("Could not create pipes: %.100s",
442 strerror(errno));
443#else /* USE_PIPES */
444 int inout[2], err[2];
445 /* Uses socket pairs to communicate with the program. */
446 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
447 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
448 packet_disconnect("Could not create socket pairs: %.100s",
449 strerror(errno));
450#endif /* USE_PIPES */
451 if (s == NULL)
452 fatal("do_exec_no_pty: no session");
453
Damien Millere247cc42000-05-07 12:03:14 +1000454 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000455
Damien Millerc5946332001-02-28 11:46:11 +1100456#if defined(USE_PAM)
Damien Miller665af9c2001-06-27 09:34:15 +1000457 do_pam_session(s->pw->pw_name, NULL);
Damien Millerf9e93002001-03-27 16:12:24 +1000458 do_pam_setcred(1);
Damien Millerc3aa3dd2001-10-28 22:34:52 +1100459 if (is_pam_password_change_required())
460 packet_disconnect("Password change required but no "
461 "TTY available");
Kevin Stevesff793a22001-02-21 16:36:51 +0000462#endif /* USE_PAM */
463
Damien Millerb38eff82000-04-01 11:09:21 +1000464 /* Fork the child. */
465 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000466 fatal_remove_all_cleanups();
467
Damien Millerb38eff82000-04-01 11:09:21 +1000468 /* Child. Reinitialize the log since the pid has changed. */
469 log_init(__progname, options.log_level, options.log_facility, log_stderr);
470
471 /*
472 * Create a new session and process group since the 4.4BSD
473 * setlogin() affects the entire process group.
474 */
475 if (setsid() < 0)
476 error("setsid failed: %.100s", strerror(errno));
477
478#ifdef USE_PIPES
479 /*
480 * Redirect stdin. We close the parent side of the socket
481 * pair, and make the child side the standard input.
482 */
483 close(pin[1]);
484 if (dup2(pin[0], 0) < 0)
485 perror("dup2 stdin");
486 close(pin[0]);
487
488 /* Redirect stdout. */
489 close(pout[0]);
490 if (dup2(pout[1], 1) < 0)
491 perror("dup2 stdout");
492 close(pout[1]);
493
494 /* Redirect stderr. */
495 close(perr[0]);
496 if (dup2(perr[1], 2) < 0)
497 perror("dup2 stderr");
498 close(perr[1]);
499#else /* USE_PIPES */
500 /*
501 * Redirect stdin, stdout, and stderr. Stdin and stdout will
502 * use the same socket, as some programs (particularly rdist)
503 * seem to depend on it.
504 */
505 close(inout[1]);
506 close(err[1]);
507 if (dup2(inout[0], 0) < 0) /* stdin */
508 perror("dup2 stdin");
509 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
510 perror("dup2 stdout");
511 if (dup2(err[0], 2) < 0) /* stderr */
512 perror("dup2 stderr");
513#endif /* USE_PIPES */
514
Tim Rice81ed5182002-09-25 17:38:46 -0700515#ifdef _UNICOS
516 cray_init_job(s->pw); /* set up cray jid and tmpdir */
517#endif
518
Damien Millerb38eff82000-04-01 11:09:21 +1000519 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000520 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000521 /* NOTREACHED */
522 }
Tim Rice81ed5182002-09-25 17:38:46 -0700523#ifdef _UNICOS
524 signal(WJSIGNAL, cray_job_termination_handler);
525#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100526#ifdef HAVE_CYGWIN
527 if (is_winnt)
528 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
529#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000530 if (pid < 0)
531 packet_disconnect("fork failed: %.100s", strerror(errno));
532 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000533 /* Set interactive/non-interactive mode. */
534 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000535#ifdef USE_PIPES
536 /* We are the parent. Close the child sides of the pipes. */
537 close(pin[0]);
538 close(pout[1]);
539 close(perr[1]);
540
Damien Millerefb4afe2000-04-12 18:45:05 +1000541 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000542 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000543 } else {
544 /* Enter the interactive session. */
545 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000546 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000547 }
Damien Millerb38eff82000-04-01 11:09:21 +1000548#else /* USE_PIPES */
549 /* We are the parent. Close the child sides of the socket pairs. */
550 close(inout[0]);
551 close(err[0]);
552
553 /*
554 * Enter the interactive session. Note: server_loop must be able to
555 * handle the case that fdin and fdout are the same.
556 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000557 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000558 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000559 } else {
560 server_loop(pid, inout[1], inout[1], err[1]);
561 /* server_loop has closed inout[1] and err[1]. */
562 }
Damien Millerb38eff82000-04-01 11:09:21 +1000563#endif /* USE_PIPES */
564}
565
566/*
567 * This is called to fork and execute a command when we have a tty. This
568 * will call do_child from the child, and server_loop from the parent after
569 * setting up file descriptors, controlling tty, updating wtmp, utmp,
570 * lastlog, and other such operations.
571 */
Damien Miller4af51302000-04-16 11:18:38 +1000572void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000573do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000574{
Damien Millerb38eff82000-04-01 11:09:21 +1000575 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000576 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000577
578 if (s == NULL)
579 fatal("do_exec_pty: no session");
580 ptyfd = s->ptyfd;
581 ttyfd = s->ttyfd;
582
Damien Millerc5946332001-02-28 11:46:11 +1100583#if defined(USE_PAM)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000584 do_pam_session(s->pw->pw_name, s->tty);
Damien Millerf9e93002001-03-27 16:12:24 +1000585 do_pam_setcred(1);
Damien Miller5a761312001-02-27 09:28:23 +1100586#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000587
Damien Millerb38eff82000-04-01 11:09:21 +1000588 /* Fork the child. */
589 if ((pid = fork()) == 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000590 fatal_remove_all_cleanups();
Ben Lindstrombddd5512001-07-04 04:53:53 +0000591
Damien Miller942da032000-08-18 13:59:06 +1000592 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000593 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000594 /* Close the master side of the pseudo tty. */
595 close(ptyfd);
596
597 /* Make the pseudo tty our controlling tty. */
598 pty_make_controlling_tty(&ttyfd, s->tty);
599
Damien Miller9c751422001-10-10 15:02:46 +1000600 /* Redirect stdin/stdout/stderr from the pseudo tty. */
601 if (dup2(ttyfd, 0) < 0)
602 error("dup2 stdin: %s", strerror(errno));
603 if (dup2(ttyfd, 1) < 0)
604 error("dup2 stdout: %s", strerror(errno));
605 if (dup2(ttyfd, 2) < 0)
606 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000607
608 /* Close the extra descriptor for the pseudo tty. */
609 close(ttyfd);
610
Damien Miller942da032000-08-18 13:59:06 +1000611 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000612#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700613 if (!(options.use_login && command == NULL)) {
614#ifdef _UNICOS
615 cray_init_job(s->pw); /* set up cray jid and tmpdir */
616#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100617 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700618 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000619# ifdef LOGIN_NEEDS_UTMPX
620 else
621 do_pre_login(s);
622# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000623#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000624
Damien Millerb38eff82000-04-01 11:09:21 +1000625 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000626 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000627 /* NOTREACHED */
628 }
Tim Rice81ed5182002-09-25 17:38:46 -0700629#ifdef _UNICOS
630 signal(WJSIGNAL, cray_job_termination_handler);
631#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100632#ifdef HAVE_CYGWIN
633 if (is_winnt)
634 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
635#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000636 if (pid < 0)
637 packet_disconnect("fork failed: %.100s", strerror(errno));
638 s->pid = pid;
639
640 /* Parent. Close the slave side of the pseudo tty. */
641 close(ttyfd);
642
643 /*
644 * Create another descriptor of the pty master side for use as the
645 * standard input. We could use the original descriptor, but this
646 * simplifies code in server_loop. The descriptor is bidirectional.
647 */
648 fdout = dup(ptyfd);
649 if (fdout < 0)
650 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
651
652 /* we keep a reference to the pty master */
653 ptymaster = dup(ptyfd);
654 if (ptymaster < 0)
655 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
656 s->ptymaster = ptymaster;
657
658 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000659 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000660 if (compat20) {
661 session_set_fds(s, ptyfd, fdout, -1);
662 } else {
663 server_loop(pid, ptyfd, fdout, -1);
664 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000665 }
Damien Millerb38eff82000-04-01 11:09:21 +1000666}
667
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000668#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000669static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000670do_pre_login(Session *s)
671{
672 socklen_t fromlen;
673 struct sockaddr_storage from;
674 pid_t pid = getpid();
675
676 /*
677 * Get IP address of client. If the connection is not a socket, let
678 * the address be 0.0.0.0.
679 */
680 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000681 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000682 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000683 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100684 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000685 debug("getpeername: %.100s", strerror(errno));
686 fatal_cleanup();
687 }
688 }
689
690 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Millerf3451a22002-02-05 12:40:46 +1100691 get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping),
Kevin Steves678ee512003-01-01 23:43:55 +0000692 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000693}
694#endif
695
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000696/*
697 * This is called to fork and execute a command. If another command is
698 * to be forced, execute that instead.
699 */
700void
701do_exec(Session *s, const char *command)
702{
703 if (forced_command) {
704 original_command = command;
705 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000706 debug("Forced command '%.900s'", command);
707 }
708
709 if (s->ttyfd != -1)
710 do_exec_pty(s, command);
711 else
712 do_exec_no_pty(s, command);
713
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000714 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000715}
716
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000717
Damien Miller942da032000-08-18 13:59:06 +1000718/* administrative, login(1)-like work */
719void
Damien Miller69b69aa2000-10-28 14:19:58 +1100720do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000721{
Damien Miller942da032000-08-18 13:59:06 +1000722 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000723 socklen_t fromlen;
724 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000725 struct passwd * pw = s->pw;
726 pid_t pid = getpid();
727
728 /*
729 * Get IP address of client. If the connection is not a socket, let
730 * the address be 0.0.0.0.
731 */
732 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000733 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000734 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000735 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000736 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000737 debug("getpeername: %.100s", strerror(errno));
738 fatal_cleanup();
739 }
740 }
741
742 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000743 if (!use_privsep)
744 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
745 get_remote_name_or_ip(utmp_len,
746 options.verify_reverse_mapping),
Damien Millerebc23062002-09-04 16:45:09 +1000747 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000748
Kevin Steves092f2ef2000-10-14 13:36:13 +0000749#ifdef USE_PAM
750 /*
751 * If password change is needed, do it now.
752 * This needs to occur before the ~/.hushlogin check.
753 */
Damien Miller646aa602001-02-15 11:51:32 +1100754 if (is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000755 print_pam_messages();
756 do_pam_chauthtok();
757 }
758#endif
759
Damien Millercf205e82001-04-16 18:29:15 +1000760 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000761 return;
762
763#ifdef USE_PAM
Damien Miller646aa602001-02-15 11:51:32 +1100764 if (!is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000765 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000766#endif /* USE_PAM */
767#ifdef WITH_AIXAUTHENTICATE
768 if (aixloginmsg && *aixloginmsg)
769 printf("%s\n", aixloginmsg);
770#endif /* WITH_AIXAUTHENTICATE */
771
Tim Rice81ed5182002-09-25 17:38:46 -0700772#ifndef NO_SSH_LASTLOG
Ben Lindstromc447fee2002-04-02 20:35:35 +0000773 if (options.print_lastlog && s->last_login_time != 0) {
774 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000775 if (strchr(time_string, '\n'))
776 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000777 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000778 printf("Last login: %s\r\n", time_string);
779 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000780 printf("Last login: %s from %s\r\n", time_string,
781 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000782 }
Tim Rice81ed5182002-09-25 17:38:46 -0700783#endif /* NO_SSH_LASTLOG */
Damien Millercf205e82001-04-16 18:29:15 +1000784
785 do_motd();
786}
787
788/*
789 * Display the message of the day.
790 */
791void
792do_motd(void)
793{
794 FILE *f;
795 char buf[256];
796
Damien Miller942da032000-08-18 13:59:06 +1000797 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000798#ifdef HAVE_LOGIN_CAP
799 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
800 "/etc/motd"), "r");
801#else
Damien Miller942da032000-08-18 13:59:06 +1000802 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000803#endif
Damien Miller942da032000-08-18 13:59:06 +1000804 if (f) {
805 while (fgets(buf, sizeof(buf), f))
806 fputs(buf, stdout);
807 fclose(f);
808 }
809 }
810}
811
Kevin Steves8f63caa2001-07-04 18:23:02 +0000812
813/*
814 * Check for quiet login, either .hushlogin or command given.
815 */
816int
817check_quietlogin(Session *s, const char *command)
818{
819 char buf[256];
820 struct passwd *pw = s->pw;
821 struct stat st;
822
823 /* Return 1 if .hushlogin exists or a command given. */
824 if (command != NULL)
825 return 1;
826 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
827#ifdef HAVE_LOGIN_CAP
828 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
829 return 1;
830#else
831 if (stat(buf, &st) >= 0)
832 return 1;
833#endif
834 return 0;
835}
836
Damien Millerb38eff82000-04-01 11:09:21 +1000837/*
838 * Sets the value of the given variable in the environment. If the variable
839 * already exists, its value is overriden.
840 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000841static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000842child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100843 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000844{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000845 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000846 char **env;
847
848 /*
849 * Find the slot where the value should be stored. If the variable
850 * already exists, we reuse the slot; otherwise we append a new slot
851 * at the end of the array, expanding if necessary.
852 */
853 env = *envp;
854 namelen = strlen(name);
855 for (i = 0; env[i]; i++)
856 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
857 break;
858 if (env[i]) {
859 /* Reuse the slot. */
860 xfree(env[i]);
861 } else {
862 /* New variable. Expand if necessary. */
863 if (i >= (*envsizep) - 1) {
Damien Millera0796ca2002-06-26 19:15:07 +1000864 if (*envsizep >= 1000)
865 fatal("child_set_env: too many env vars,"
866 " skipping: %.100s", name);
Damien Millerb38eff82000-04-01 11:09:21 +1000867 (*envsizep) += 50;
868 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
869 }
870 /* Need to set the NULL pointer at end of array beyond the new slot. */
871 env[i + 1] = NULL;
872 }
873
874 /* Allocate space and format the variable in the appropriate slot. */
875 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
876 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
877}
878
879/*
880 * Reads environment variables from the given file and adds/overrides them
881 * into the environment. If the file does not exist, this does nothing.
882 * Otherwise, it must consist of empty lines, comments (line starts with '#')
883 * and assignments of the form name=value. No other forms are allowed.
884 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000885static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000886read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100887 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000888{
889 FILE *f;
890 char buf[4096];
891 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000892 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000893
894 f = fopen(filename, "r");
895 if (!f)
896 return;
897
898 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000899 if (++lineno > 1000)
900 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000901 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
902 ;
903 if (!*cp || *cp == '#' || *cp == '\n')
904 continue;
905 if (strchr(cp, '\n'))
906 *strchr(cp, '\n') = '\0';
907 value = strchr(cp, '=');
908 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000909 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
910 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000911 continue;
912 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000913 /*
914 * Replace the equals sign by nul, and advance value to
915 * the value string.
916 */
Damien Millerb38eff82000-04-01 11:09:21 +1000917 *value = '\0';
918 value++;
919 child_set_env(env, envsize, cp, value);
920 }
921 fclose(f);
922}
923
Damien Millerbb9ffc12002-01-08 10:59:32 +1100924void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000925{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100926 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000927 int i;
928
Damien Millerbb9ffc12002-01-08 10:59:32 +1100929 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000930 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000931
Damien Millerbb9ffc12002-01-08 10:59:32 +1100932 for(i = 0; source[i] != NULL; i++) {
933 var_name = xstrdup(source[i]);
934 if ((var_val = strstr(var_name, "=")) == NULL) {
935 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000936 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000937 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100938 *var_val++ = '\0';
939
940 debug3("Copy environment: %s=%s", var_name, var_val);
941 child_set_env(env, envsize, var_name, var_val);
942
943 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000944 }
945}
Damien Millercb5e44a2000-09-29 12:12:36 +1100946
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000947static char **
948do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000949{
Damien Millerb38eff82000-04-01 11:09:21 +1000950 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000951 u_int i, envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000952 char **env;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000953 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000954
Damien Millerb38eff82000-04-01 11:09:21 +1000955 /* Initialize the environment. */
956 envsize = 100;
957 env = xmalloc(envsize * sizeof(char *));
958 env[0] = NULL;
959
Damien Millerbac2d8a2000-09-05 16:13:06 +1100960#ifdef HAVE_CYGWIN
961 /*
962 * The Windows environment contains some setting which are
963 * important for a running system. They must not be dropped.
964 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100965 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100966#endif
967
Damien Millerb38eff82000-04-01 11:09:21 +1000968 if (!options.use_login) {
969 /* Set basic environment. */
970 child_set_env(&env, &envsize, "USER", pw->pw_name);
971 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +1100972#ifdef _AIX
973 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
974#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000975 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +1000976#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +0000977 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
978 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
979 else
980 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +1100981#else /* HAVE_LOGIN_CAP */
982# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +1100983 /*
984 * There's no standard path on Windows. The path contains
985 * important components pointing to the system directories,
986 * needed for loading shared libraries. So the path better
987 * remains intact here.
988 */
Damien Millera18bbd32002-05-13 10:48:57 +1000989# ifdef SUPERUSER_PATH
990 child_set_env(&env, &envsize, "PATH",
991 s->pw->pw_uid == 0 ? SUPERUSER_PATH : _PATH_STDPATH);
992# else
Damien Millerb38eff82000-04-01 11:09:21 +1000993 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millera18bbd32002-05-13 10:48:57 +1000994# endif /* SUPERUSER_PATH */
Damien Millercb5e44a2000-09-29 12:12:36 +1100995# endif /* HAVE_CYGWIN */
996#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +1000997
998 snprintf(buf, sizeof buf, "%.200s/%.50s",
999 _PATH_MAILDIR, pw->pw_name);
1000 child_set_env(&env, &envsize, "MAIL", buf);
1001
1002 /* Normal systems set SHELL by default. */
1003 child_set_env(&env, &envsize, "SHELL", shell);
1004 }
1005 if (getenv("TZ"))
1006 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1007
1008 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001009 if (!options.use_login) {
1010 while (custom_environment) {
1011 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001012 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001013
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001014 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001015 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001016 if (str[i] == '=') {
1017 str[i] = 0;
1018 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001019 }
1020 custom_environment = ce->next;
1021 xfree(ce->s);
1022 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001023 }
Damien Millerb38eff82000-04-01 11:09:21 +10001024 }
1025
Damien Millerf37e2462002-09-19 11:47:55 +10001026 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001027 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001028 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001029 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1030
Damien Millerf37e2462002-09-19 11:47:55 +10001031 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
1032 get_remote_ipaddr(), get_remote_port(),
1033 get_local_ipaddr(packet_get_connection_in()), get_local_port());
1034 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1035
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001036 if (s->ttyfd != -1)
1037 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1038 if (s->term)
1039 child_set_env(&env, &envsize, "TERM", s->term);
1040 if (s->display)
1041 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001042 if (original_command)
1043 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1044 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001045
Tim Rice81ed5182002-09-25 17:38:46 -07001046#ifdef _UNICOS
1047 if (cray_tmpdir[0] != '\0')
1048 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1049#endif /* _UNICOS */
1050
Damien Millerb38eff82000-04-01 11:09:21 +10001051#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001052 {
1053 char *cp;
1054
1055 if ((cp = getenv("AUTHSTATE")) != NULL)
1056 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1057 if ((cp = getenv("KRB5CCNAME")) != NULL)
1058 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1059 read_environment_file(&env, &envsize, "/etc/environment");
1060 }
Damien Millerb38eff82000-04-01 11:09:21 +10001061#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001062#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +00001063 if (s->authctxt->krb4_ticket_file)
1064 child_set_env(&env, &envsize, "KRBTKFILE",
1065 s->authctxt->krb4_ticket_file);
1066#endif
1067#ifdef KRB5
1068 if (s->authctxt->krb5_ticket_file)
1069 child_set_env(&env, &envsize, "KRB5CCNAME",
1070 s->authctxt->krb5_ticket_file);
1071#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001072#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001073 /*
1074 * Pull in any environment variables that may have
1075 * been set by PAM.
1076 */
1077 {
1078 char **p;
1079
1080 p = fetch_pam_environment();
1081 copy_environment(p, &env, &envsize);
1082 free_pam_environment(p);
1083 }
Damien Millerb38eff82000-04-01 11:09:21 +10001084#endif /* USE_PAM */
1085
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001086 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001087 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001088 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001089
1090 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001091 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001092 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001093 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001094 read_environment_file(&env, &envsize, buf);
1095 }
1096 if (debug_flag) {
1097 /* dump the environment */
1098 fprintf(stderr, "Environment:\n");
1099 for (i = 0; env[i]; i++)
1100 fprintf(stderr, " %.200s\n", env[i]);
1101 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001102 return env;
1103}
1104
1105/*
1106 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1107 * first in this order).
1108 */
1109static void
1110do_rc_files(Session *s, const char *shell)
1111{
1112 FILE *f = NULL;
1113 char cmd[1024];
1114 int do_xauth;
1115 struct stat st;
1116
1117 do_xauth =
1118 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1119
1120 /* ignore _PATH_SSH_USER_RC for subsystems */
1121 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1122 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1123 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1124 if (debug_flag)
1125 fprintf(stderr, "Running %s\n", cmd);
1126 f = popen(cmd, "w");
1127 if (f) {
1128 if (do_xauth)
1129 fprintf(f, "%s %s\n", s->auth_proto,
1130 s->auth_data);
1131 pclose(f);
1132 } else
1133 fprintf(stderr, "Could not run %s\n",
1134 _PATH_SSH_USER_RC);
1135 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1136 if (debug_flag)
1137 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1138 _PATH_SSH_SYSTEM_RC);
1139 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1140 if (f) {
1141 if (do_xauth)
1142 fprintf(f, "%s %s\n", s->auth_proto,
1143 s->auth_data);
1144 pclose(f);
1145 } else
1146 fprintf(stderr, "Could not run %s\n",
1147 _PATH_SSH_SYSTEM_RC);
1148 } else if (do_xauth && options.xauth_location != NULL) {
1149 /* Add authority data to .Xauthority if appropriate. */
1150 if (debug_flag) {
1151 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001152 "Running %.500s remove %.100s\n",
1153 options.xauth_location, s->auth_display);
1154 fprintf(stderr,
1155 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001156 options.xauth_location, s->auth_display,
1157 s->auth_proto, s->auth_data);
1158 }
1159 snprintf(cmd, sizeof cmd, "%s -q -",
1160 options.xauth_location);
1161 f = popen(cmd, "w");
1162 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001163 fprintf(f, "remove %s\n",
1164 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001165 fprintf(f, "add %s %s %s\n",
1166 s->auth_display, s->auth_proto,
1167 s->auth_data);
1168 pclose(f);
1169 } else {
1170 fprintf(stderr, "Could not run %s\n",
1171 cmd);
1172 }
1173 }
1174}
1175
1176static void
1177do_nologin(struct passwd *pw)
1178{
1179 FILE *f = NULL;
1180 char buf[1024];
1181
1182#ifdef HAVE_LOGIN_CAP
1183 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1184 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1185 _PATH_NOLOGIN), "r");
1186#else
1187 if (pw->pw_uid)
1188 f = fopen(_PATH_NOLOGIN, "r");
1189#endif
1190 if (f) {
1191 /* /etc/nologin exists. Print its contents and exit. */
Damien Millera6eb2b72002-09-19 11:50:48 +10001192 log("User %.100s not allowed because %s exists",
1193 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001194 while (fgets(buf, sizeof(buf), f))
1195 fputs(buf, stderr);
1196 fclose(f);
1197 exit(254);
1198 }
1199}
1200
1201/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001202void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001203do_setusercontext(struct passwd *pw)
1204{
1205#ifdef HAVE_CYGWIN
Ben Lindstrom3107efc2002-02-21 15:37:02 +00001206 if (is_winnt) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001207#else /* HAVE_CYGWIN */
1208 if (getuid() == 0 || geteuid() == 0) {
1209#endif /* HAVE_CYGWIN */
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001210#ifdef HAVE_SETPCRED
1211 setpcred(pw->pw_name);
1212#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001213#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001214# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001215 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001216# endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001217 if (setusercontext(lc, pw, pw->pw_uid,
1218 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1219 perror("unable to set user context");
1220 exit(1);
1221 }
1222#else
1223# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1224 /* Sets login uid for accounting */
1225 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1226 error("setluid: %s", strerror(errno));
1227# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1228
1229 if (setlogin(pw->pw_name) < 0)
1230 error("setlogin failed: %s", strerror(errno));
1231 if (setgid(pw->pw_gid) < 0) {
1232 perror("setgid");
1233 exit(1);
1234 }
1235 /* Initialize the group list. */
1236 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1237 perror("initgroups");
1238 exit(1);
1239 }
1240 endgrent();
1241# ifdef USE_PAM
1242 /*
1243 * PAM credentials may take the form of supplementary groups.
1244 * These will have been wiped by the above initgroups() call.
1245 * Reestablish them here.
1246 */
1247 do_pam_setcred(0);
1248# endif /* USE_PAM */
1249# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1250 irix_setusercontext(pw);
1251# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001252# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001253 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001254# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001255 /* Permanently switch to the desired uid. */
1256 permanently_set_uid(pw);
1257#endif
1258 }
1259 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1260 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1261}
1262
Ben Lindstrom08105192002-03-22 02:50:06 +00001263static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001264launch_login(struct passwd *pw, const char *hostname)
1265{
1266 /* Launch login(1). */
1267
Ben Lindstrom378a4172002-06-07 14:49:56 +00001268 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001269#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001270 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001271#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001272#ifdef LOGIN_NO_ENDOPT
1273 "-p", "-f", pw->pw_name, (char *)NULL);
1274#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001275 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001276#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001277
1278 /* Login couldn't be executed, die. */
1279
1280 perror("login");
1281 exit(1);
1282}
1283
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001284/*
1285 * Performs common processing for the child, such as setting up the
1286 * environment, closing extra file descriptors, setting the user and group
1287 * ids, and executing the command or shell.
1288 */
1289void
1290do_child(Session *s, const char *command)
1291{
1292 extern char **environ;
1293 char **env;
1294 char *argv[10];
1295 const char *shell, *shell0, *hostname = NULL;
1296 struct passwd *pw = s->pw;
1297 u_int i;
1298
1299 /* remove hostkey from the child's memory */
1300 destroy_sensitive_data();
1301
1302 /* login(1) is only called if we execute the login shell */
1303 if (options.use_login && command != NULL)
1304 options.use_login = 0;
1305
Tim Rice81ed5182002-09-25 17:38:46 -07001306#ifdef _UNICOS
1307 cray_setup(pw->pw_uid, pw->pw_name, command);
1308#endif /* _UNICOS */
1309
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001310 /*
1311 * Login(1) does this as well, and it needs uid 0 for the "-h"
1312 * switch, so we let login(1) to this for us.
1313 */
1314 if (!options.use_login) {
1315#ifdef HAVE_OSF_SIA
1316 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
1317 if (!check_quietlogin(s, command))
1318 do_motd();
1319#else /* HAVE_OSF_SIA */
1320 do_nologin(pw);
1321 do_setusercontext(pw);
1322#endif /* HAVE_OSF_SIA */
1323 }
1324
1325 /*
1326 * Get the shell from the password data. An empty shell field is
1327 * legal, and means /bin/sh.
1328 */
1329 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001330
1331 /*
1332 * Make sure $SHELL points to the shell from the password file,
1333 * even if shell is overridden from login.conf
1334 */
1335 env = do_setup_env(s, shell);
1336
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001337#ifdef HAVE_LOGIN_CAP
1338 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1339#endif
1340
Damien Millerad833b32000-08-23 10:46:23 +10001341 /* we have to stash the hostname before we close our socket. */
1342 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001343 hostname = get_remote_name_or_ip(utmp_len,
Damien Millerc5d86352002-02-05 12:13:41 +11001344 options.verify_reverse_mapping);
Damien Millerb38eff82000-04-01 11:09:21 +10001345 /*
1346 * Close the connection descriptors; note that this is the child, and
1347 * the server will still have the socket open, and it is important
1348 * that we do not shutdown it. Note that the descriptors cannot be
1349 * closed before building the environment, as we call
1350 * get_remote_ipaddr there.
1351 */
1352 if (packet_get_connection_in() == packet_get_connection_out())
1353 close(packet_get_connection_in());
1354 else {
1355 close(packet_get_connection_in());
1356 close(packet_get_connection_out());
1357 }
1358 /*
1359 * Close all descriptors related to channels. They will still remain
1360 * open in the parent.
1361 */
1362 /* XXX better use close-on-exec? -markus */
1363 channel_close_all();
1364
1365 /*
1366 * Close any extra file descriptors. Note that there may still be
1367 * descriptors left by system functions. They will be closed later.
1368 */
1369 endpwent();
1370
1371 /*
1372 * Close any extra open file descriptors so that we don\'t have them
1373 * hanging around in clients. Note that we want to do this after
1374 * initgroups, because at least on Solaris 2.3 it leaves file
1375 * descriptors open.
1376 */
1377 for (i = 3; i < 64; i++)
1378 close(i);
1379
Damien Millerb38eff82000-04-01 11:09:21 +10001380 /*
Damien Miller05eda432002-02-10 18:32:28 +11001381 * Must take new environment into use so that .ssh/rc,
1382 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001383 */
1384 environ = env;
1385
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001386#ifdef AFS
1387 /* Try to get AFS tokens for the local cell. */
1388 if (k_hasafs()) {
1389 char cell[64];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001390
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001391 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1392 krb_afslog(cell, 0);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001393
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001394 krb_afslog(0, 0);
1395 }
1396#endif /* AFS */
1397
Damien Miller139d4cd2001-10-10 15:07:44 +10001398 /* Change current directory to the user\'s home directory. */
1399 if (chdir(pw->pw_dir) < 0) {
1400 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1401 pw->pw_dir, strerror(errno));
1402#ifdef HAVE_LOGIN_CAP
1403 if (login_getcapbool(lc, "requirehome", 0))
1404 exit(1);
1405#endif
1406 }
1407
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001408 if (!options.use_login)
1409 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001410
1411 /* restore SIGPIPE for child */
1412 signal(SIGPIPE, SIG_DFL);
1413
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001414 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001415 launch_login(pw, hostname);
1416 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001417 }
1418
1419 /* Get the last component of the shell name. */
1420 if ((shell0 = strrchr(shell, '/')) != NULL)
1421 shell0++;
1422 else
1423 shell0 = shell;
1424
Damien Millerb38eff82000-04-01 11:09:21 +10001425 /*
1426 * If we have no command, execute the shell. In this case, the shell
1427 * name to be passed in argv[0] is preceded by '-' to indicate that
1428 * this is a login shell.
1429 */
1430 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001431 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001432
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001433 /* Start the shell. Set initial character to '-'. */
1434 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001435
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001436 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1437 >= sizeof(argv0) - 1) {
1438 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001439 perror(shell);
1440 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001441 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001442
1443 /* Execute the shell. */
1444 argv[0] = argv0;
1445 argv[1] = NULL;
1446 execve(shell, argv, env);
1447
1448 /* Executing the shell failed. */
1449 perror(shell);
1450 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001451 }
1452 /*
1453 * Execute the command using the user's shell. This uses the -c
1454 * option to execute the command.
1455 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001456 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001457 argv[1] = "-c";
1458 argv[2] = (char *) command;
1459 argv[3] = NULL;
1460 execve(shell, argv, env);
1461 perror(shell);
1462 exit(1);
1463}
1464
1465Session *
1466session_new(void)
1467{
1468 int i;
1469 static int did_init = 0;
1470 if (!did_init) {
1471 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001472 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001473 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001474 }
1475 did_init = 1;
1476 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001477 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001478 Session *s = &sessions[i];
1479 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001480 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001481 s->chanid = -1;
1482 s->ptyfd = -1;
1483 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001484 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001485 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001486 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001487 return s;
1488 }
1489 }
1490 return NULL;
1491}
1492
Ben Lindstrombba81212001-06-25 05:01:22 +00001493static void
Damien Millerb38eff82000-04-01 11:09:21 +10001494session_dump(void)
1495{
1496 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001497 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001498 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001499 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001500 s->used,
1501 s->self,
1502 s,
1503 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001504 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001505 }
1506}
1507
Damien Millerefb4afe2000-04-12 18:45:05 +10001508int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001509session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001510{
1511 Session *s = session_new();
1512 debug("session_open: channel %d", chanid);
1513 if (s == NULL) {
1514 error("no more sessions");
1515 return 0;
1516 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001517 s->authctxt = authctxt;
1518 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001519 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001520 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001521 debug("session_open: session %d: link with channel %d", s->self, chanid);
1522 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001523 return 1;
1524}
1525
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001526Session *
1527session_by_tty(char *tty)
1528{
1529 int i;
1530 for (i = 0; i < MAX_SESSIONS; i++) {
1531 Session *s = &sessions[i];
1532 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1533 debug("session_by_tty: session %d tty %s", i, tty);
1534 return s;
1535 }
1536 }
1537 debug("session_by_tty: unknown tty %.100s", tty);
1538 session_dump();
1539 return NULL;
1540}
1541
Ben Lindstrombba81212001-06-25 05:01:22 +00001542static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001543session_by_channel(int id)
1544{
1545 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001546 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001547 Session *s = &sessions[i];
1548 if (s->used && s->chanid == id) {
1549 debug("session_by_channel: session %d channel %d", i, id);
1550 return s;
1551 }
1552 }
1553 debug("session_by_channel: unknown channel %d", id);
1554 session_dump();
1555 return NULL;
1556}
1557
Ben Lindstrombba81212001-06-25 05:01:22 +00001558static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001559session_by_pid(pid_t pid)
1560{
1561 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001562 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001563 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001564 Session *s = &sessions[i];
1565 if (s->used && s->pid == pid)
1566 return s;
1567 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001568 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001569 session_dump();
1570 return NULL;
1571}
1572
Ben Lindstrombba81212001-06-25 05:01:22 +00001573static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001574session_window_change_req(Session *s)
1575{
1576 s->col = packet_get_int();
1577 s->row = packet_get_int();
1578 s->xpixel = packet_get_int();
1579 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001580 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001581 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1582 return 1;
1583}
1584
Ben Lindstrombba81212001-06-25 05:01:22 +00001585static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001586session_pty_req(Session *s)
1587{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001588 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001589 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001590
Ben Lindstrom49c12602001-06-13 04:37:36 +00001591 if (no_pty_flag) {
1592 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001593 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001594 }
1595 if (s->ttyfd != -1) {
1596 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001597 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001598 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001599 /* Get the time and hostname when the user last logged in. */
1600 if (options.print_lastlog) {
1601 s->hostname[0] = '\0';
1602 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1603 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1604 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001605
Damien Millerefb4afe2000-04-12 18:45:05 +10001606 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001607
1608 if (compat20) {
1609 s->col = packet_get_int();
1610 s->row = packet_get_int();
1611 } else {
1612 s->row = packet_get_int();
1613 s->col = packet_get_int();
1614 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001615 s->xpixel = packet_get_int();
1616 s->ypixel = packet_get_int();
1617
1618 if (strcmp(s->term, "") == 0) {
1619 xfree(s->term);
1620 s->term = NULL;
1621 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001622
Damien Millerefb4afe2000-04-12 18:45:05 +10001623 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001624 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001625 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001626 if (s->term)
1627 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001628 s->term = NULL;
1629 s->ptyfd = -1;
1630 s->ttyfd = -1;
1631 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001632 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001633 }
1634 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001635
1636 /* for SSH1 the tty modes length is not given */
1637 if (!compat20)
1638 n_bytes = packet_remaining();
1639 tty_parse_modes(s->ttyfd, &n_bytes);
1640
Damien Millerefb4afe2000-04-12 18:45:05 +10001641 /*
1642 * Add a cleanup function to clear the utmp entry and record logout
1643 * time in case we call fatal() (e.g., the connection gets closed).
1644 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001645 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001646 if (!use_privsep)
1647 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001648
1649 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001650 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1651
Damien Miller48b03fc2002-01-22 23:11:40 +11001652 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001653 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001654 return 1;
1655}
1656
Ben Lindstrombba81212001-06-25 05:01:22 +00001657static int
Damien Millerbd483e72000-04-30 10:00:53 +10001658session_subsystem_req(Session *s)
1659{
Damien Millerae452462001-10-10 15:08:06 +10001660 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001661 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001662 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001663 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001664 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001665
Damien Miller48b03fc2002-01-22 23:11:40 +11001666 packet_check_eom();
Damien Millerbaa08702002-02-05 12:14:10 +11001667 log("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001668
Damien Millerf6d9e222000-06-18 14:50:44 +10001669 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001670 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1671 cmd = options.subsystem_command[i];
1672 if (stat(cmd, &st) < 0) {
1673 error("subsystem: cannot stat %s: %s", cmd,
1674 strerror(errno));
1675 break;
1676 }
1677 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001678 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001679 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001680 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001681 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001682 }
1683 }
1684
1685 if (!success)
Damien Millerbaa08702002-02-05 12:14:10 +11001686 log("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001687 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001688
Damien Millerbd483e72000-04-30 10:00:53 +10001689 xfree(subsys);
1690 return success;
1691}
1692
Ben Lindstrombba81212001-06-25 05:01:22 +00001693static int
Damien Millerbd483e72000-04-30 10:00:53 +10001694session_x11_req(Session *s)
1695{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001696 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001697
1698 s->single_connection = packet_get_char();
1699 s->auth_proto = packet_get_string(NULL);
1700 s->auth_data = packet_get_string(NULL);
1701 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001702 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001703
Ben Lindstrom768176b2001-06-09 01:29:12 +00001704 success = session_setup_x11fwd(s);
1705 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001706 xfree(s->auth_proto);
1707 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001708 s->auth_proto = NULL;
1709 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001710 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001711 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001712}
1713
Ben Lindstrombba81212001-06-25 05:01:22 +00001714static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001715session_shell_req(Session *s)
1716{
Damien Miller48b03fc2002-01-22 23:11:40 +11001717 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001718 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001719 return 1;
1720}
1721
Ben Lindstrombba81212001-06-25 05:01:22 +00001722static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001723session_exec_req(Session *s)
1724{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001725 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001726 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001727 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001728 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001729 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001730 return 1;
1731}
1732
Ben Lindstrombba81212001-06-25 05:01:22 +00001733static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001734session_auth_agent_req(Session *s)
1735{
1736 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001737 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001738 if (no_agent_forwarding_flag) {
1739 debug("session_auth_agent_req: no_agent_forwarding_flag");
1740 return 0;
1741 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742 if (called) {
1743 return 0;
1744 } else {
1745 called = 1;
1746 return auth_input_request_forwarding(s->pw);
1747 }
1748}
1749
Damien Millerc7ef63d2002-02-05 12:21:42 +11001750int
1751session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001752{
Damien Millerefb4afe2000-04-12 18:45:05 +10001753 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001754 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001755
Damien Millerc7ef63d2002-02-05 12:21:42 +11001756 if ((s = session_by_channel(c->self)) == NULL) {
1757 log("session_input_channel_req: no session %d req %.100s",
1758 c->self, rtype);
1759 return 0;
1760 }
1761 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001762
1763 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001764 * a session is in LARVAL state until a shell, a command
1765 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001766 */
1767 if (c->type == SSH_CHANNEL_LARVAL) {
1768 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001769 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001770 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001771 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001772 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001773 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001774 } else if (strcmp(rtype, "x11-req") == 0) {
1775 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001776 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1777 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001778 } else if (strcmp(rtype, "subsystem") == 0) {
1779 success = session_subsystem_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001780 }
1781 }
1782 if (strcmp(rtype, "window-change") == 0) {
1783 success = session_window_change_req(s);
1784 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001785 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001786}
1787
1788void
1789session_set_fds(Session *s, int fdin, int fdout, int fderr)
1790{
1791 if (!compat20)
1792 fatal("session_set_fds: called for proto != 2.0");
1793 /*
1794 * now that have a child and a pipe to the child,
1795 * we can activate our channel and register the fd's
1796 */
1797 if (s->chanid == -1)
1798 fatal("no channel for session %d", s->self);
1799 channel_set_fds(s->chanid,
1800 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001801 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001802 1,
1803 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001804}
1805
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001806/*
1807 * Function to perform pty cleanup. Also called if we get aborted abnormally
1808 * (e.g., due to a dropped connection).
1809 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001810void
1811session_pty_cleanup2(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001812{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001813 Session *s = session;
1814
1815 if (s == NULL) {
1816 error("session_pty_cleanup: no session");
1817 return;
1818 }
1819 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001820 return;
1821
Kevin Steves43cdef32001-02-11 14:12:08 +00001822 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001823
Damien Millerb38eff82000-04-01 11:09:21 +10001824 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001825 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001826 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001827
1828 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001829 if (getuid() == 0)
1830 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001831
1832 /*
1833 * Close the server side of the socket pairs. We must do this after
1834 * the pty cleanup, so that another process doesn't get this pty
1835 * while we're still cleaning up.
1836 */
1837 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001838 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001839
1840 /* unlink pty from session */
1841 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001842}
Damien Millerefb4afe2000-04-12 18:45:05 +10001843
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001844void
1845session_pty_cleanup(void *session)
1846{
1847 PRIVSEP(session_pty_cleanup2(session));
1848}
1849
Damien Miller5a80bba2002-09-04 16:39:02 +10001850static char *
1851sig2name(int sig)
1852{
1853#define SSH_SIG(x) if (sig == SIG ## x) return #x
1854 SSH_SIG(ABRT);
1855 SSH_SIG(ALRM);
1856 SSH_SIG(FPE);
1857 SSH_SIG(HUP);
1858 SSH_SIG(ILL);
1859 SSH_SIG(INT);
1860 SSH_SIG(KILL);
1861 SSH_SIG(PIPE);
1862 SSH_SIG(QUIT);
1863 SSH_SIG(SEGV);
1864 SSH_SIG(TERM);
1865 SSH_SIG(USR1);
1866 SSH_SIG(USR2);
1867#undef SSH_SIG
1868 return "SIG@openssh.com";
1869}
1870
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001872session_exit_message(Session *s, int status)
1873{
1874 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001875
1876 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001877 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001878 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001879 debug("session_exit_message: session %d channel %d pid %ld",
1880 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001881
1882 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001883 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001884 packet_put_int(WEXITSTATUS(status));
1885 packet_send();
1886 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001887 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10001888 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001889#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001890 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001891#else /* WCOREDUMP */
1892 packet_put_char(0);
1893#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001894 packet_put_cstring("");
1895 packet_put_cstring("");
1896 packet_send();
1897 } else {
1898 /* Some weird exit cause. Just exit. */
1899 packet_disconnect("wait returned status %04x.", status);
1900 }
1901
1902 /* disconnect channel */
1903 debug("session_exit_message: release channel %d", s->chanid);
1904 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001905 /*
1906 * emulate a write failure with 'chan_write_failed', nobody will be
1907 * interested in data we write.
1908 * Note that we must not call 'chan_read_failed', since there could
1909 * be some more data waiting in the pipe.
1910 */
Damien Millerbd483e72000-04-30 10:00:53 +10001911 if (c->ostate != CHAN_OUTPUT_CLOSED)
1912 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001913 s->chanid = -1;
1914}
1915
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001916void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001917session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001918{
Ben Lindstromce0f6342002-06-11 16:42:49 +00001919 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001920 if (s->ttyfd != -1) {
1921 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1922 session_pty_cleanup(s);
1923 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001924 if (s->term)
1925 xfree(s->term);
1926 if (s->display)
1927 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001928 if (s->auth_display)
1929 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001930 if (s->auth_data)
1931 xfree(s->auth_data);
1932 if (s->auth_proto)
1933 xfree(s->auth_proto);
1934 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001935 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001936}
1937
1938void
1939session_close_by_pid(pid_t pid, int status)
1940{
1941 Session *s = session_by_pid(pid);
1942 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001943 debug("session_close_by_pid: no session for pid %ld",
1944 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001945 return;
1946 }
1947 if (s->chanid != -1)
1948 session_exit_message(s, status);
1949 session_close(s);
1950}
1951
1952/*
1953 * this is called when a channel dies before
1954 * the session 'child' itself dies
1955 */
1956void
1957session_close_by_channel(int id, void *arg)
1958{
1959 Session *s = session_by_channel(id);
1960 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001961 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001962 return;
1963 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001964 debug("session_close_by_channel: channel %d child %ld",
1965 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10001966 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10001967 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10001968 /*
1969 * delay detach of session, but release pty, since
1970 * the fd's to the child are already closed
1971 */
1972 if (s->ttyfd != -1) {
1973 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1974 session_pty_cleanup(s);
1975 }
Damien Miller3ec27592001-10-12 11:35:04 +10001976 return;
1977 }
1978 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10001979 channel_cancel_cleanup(s->chanid);
1980 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10001981 session_close(s);
1982}
1983
1984void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001985session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10001986{
1987 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001988 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10001989 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001990 if (s->used) {
1991 if (closefunc != NULL)
1992 closefunc(s);
1993 else
1994 session_close(s);
1995 }
Damien Miller52b77be2001-10-10 15:14:37 +10001996 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001997}
1998
Ben Lindstrombba81212001-06-25 05:01:22 +00001999static char *
Damien Millere247cc42000-05-07 12:03:14 +10002000session_tty_list(void)
2001{
2002 static char buf[1024];
2003 int i;
2004 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002005 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002006 Session *s = &sessions[i];
2007 if (s->used && s->ttyfd != -1) {
2008 if (buf[0] != '\0')
2009 strlcat(buf, ",", sizeof buf);
2010 strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
2011 }
2012 }
2013 if (buf[0] == '\0')
2014 strlcpy(buf, "notty", sizeof buf);
2015 return buf;
2016}
2017
2018void
2019session_proctitle(Session *s)
2020{
2021 if (s->pw == NULL)
2022 error("no user for session %d", s->self);
2023 else
2024 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2025}
2026
Ben Lindstrom768176b2001-06-09 01:29:12 +00002027int
2028session_setup_x11fwd(Session *s)
2029{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002030 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002031 char display[512], auth_display[512];
2032 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002033
2034 if (no_x11_forwarding_flag) {
2035 packet_send_debug("X11 forwarding disabled in user configuration file.");
2036 return 0;
2037 }
2038 if (!options.x11_forwarding) {
2039 debug("X11 forwarding disabled in server configuration file.");
2040 return 0;
2041 }
2042 if (!options.xauth_location ||
2043 (stat(options.xauth_location, &st) == -1)) {
2044 packet_send_debug("No xauth program; cannot forward with spoofing.");
2045 return 0;
2046 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002047 if (options.use_login) {
2048 packet_send_debug("X11 forwarding disabled; "
2049 "not compatible with UseLogin=yes.");
2050 return 0;
2051 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002052 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002053 debug("X11 display already set.");
2054 return 0;
2055 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002056 if (x11_create_display_inet(options.x11_display_offset,
2057 options.x11_use_localhost, s->single_connection,
2058 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002059 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002060 return 0;
2061 }
Kevin Steves366298c2001-12-19 17:58:01 +00002062
2063 /* Set up a suitable value for the DISPLAY variable. */
2064 if (gethostname(hostname, sizeof(hostname)) < 0)
2065 fatal("gethostname: %.100s", strerror(errno));
2066 /*
2067 * auth_display must be used as the displayname when the
2068 * authorization entry is added with xauth(1). This will be
2069 * different than the DISPLAY string for localhost displays.
2070 */
Damien Miller95c249f2002-02-05 12:11:34 +11002071 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002072 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002073 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002074 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002075 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002076 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002077 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002078 } else {
2079#ifdef IPADDR_IN_DISPLAY
2080 struct hostent *he;
2081 struct in_addr my_addr;
2082
2083 he = gethostbyname(hostname);
2084 if (he == NULL) {
2085 error("Can't get IP address for X11 DISPLAY.");
2086 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2087 return 0;
2088 }
2089 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002090 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002091 s->display_number, s->screen);
2092#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002093 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002094 s->display_number, s->screen);
2095#endif
2096 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002097 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002098 }
2099
Ben Lindstrom768176b2001-06-09 01:29:12 +00002100 return 1;
2101}
2102
Ben Lindstrombba81212001-06-25 05:01:22 +00002103static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002104do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002105{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002106 server_loop2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10002107}