blob: 268d1384e0a95187230cbaee246a0be3e6cdcc4d [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 Miller512bccb2002-02-05 12:11:02 +110036RCSID("$OpenBSD: session.c,v 1.118 2002/01/26 16:44:22 stevesk 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"
Damien Millerefb4afe2000-04-12 18:45:05 +100059
Damien Miller91606b12000-06-28 08:22:29 +100060#ifdef WITH_IRIX_PROJECT
61#include <proj.h>
62#endif /* WITH_IRIX_PROJECT */
Ben Lindstrom980754c2000-11-12 00:04:24 +000063#ifdef WITH_IRIX_JOBS
64#include <sys/resource.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000065#endif
Ben Lindstrom49a79c02000-11-17 03:47:20 +000066#ifdef WITH_IRIX_AUDIT
67#include <sat.h>
68#endif /* WITH_IRIX_AUDIT */
Damien Miller91606b12000-06-28 08:22:29 +100069
Damien Miller37023962000-07-11 17:31:38 +100070#if defined(HAVE_USERSEC_H)
71#include <usersec.h>
72#endif
73
Damien Millerbac2d8a2000-09-05 16:13:06 +110074#ifdef HAVE_CYGWIN
75#include <windows.h>
76#include <sys/cygwin.h>
77#define is_winnt (GetVersion() < 0x80000000)
78#endif
79
Damien Millerd17b8d52000-08-09 14:42:28 +100080/* AIX limits */
81#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
Damien Miller0da2eaa2000-08-15 11:32:59 +100082# define S_UFSIZE_HARD S_UFSIZE "_hard"
83# define S_UCPU_HARD S_UCPU "_hard"
84# define S_UDATA_HARD S_UDATA "_hard"
85# define S_USTACK_HARD S_USTACK "_hard"
86# define S_URSS_HARD S_URSS "_hard"
87# define S_UCORE_HARD S_UCORE "_hard"
88# define S_UNOFILE_HARD S_UNOFILE "_hard"
Damien Millerd17b8d52000-08-09 14:42:28 +100089#endif
90
Damien Miller168a7002001-03-17 10:29:50 +110091#ifdef _AIX
92# include <uinfo.h>
93#endif
94
Damien Millerb38eff82000-04-01 11:09:21 +100095/* types */
96
97#define TTYSZ 64
98typedef struct Session Session;
99struct Session {
100 int used;
101 int self;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000102 struct passwd *pw;
103 Authctxt *authctxt;
Damien Millerb38eff82000-04-01 11:09:21 +1000104 pid_t pid;
105 /* tty */
106 char *term;
107 int ptyfd, ttyfd, ptymaster;
108 int row, col, xpixel, ypixel;
109 char tty[TTYSZ];
110 /* X11 */
Kevin Steves366298c2001-12-19 17:58:01 +0000111 int display_number;
Damien Millerb38eff82000-04-01 11:09:21 +1000112 char *display;
113 int screen;
Damien Miller512bccb2002-02-05 12:11:02 +1100114 char *auth_display;
Damien Millerb38eff82000-04-01 11:09:21 +1000115 char *auth_proto;
116 char *auth_data;
Damien Millerbd483e72000-04-30 10:00:53 +1000117 int single_connection;
Damien Millerb38eff82000-04-01 11:09:21 +1000118 /* proto 2 */
119 int chanid;
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000120 int is_subsystem;
Damien Millerb38eff82000-04-01 11:09:21 +1000121};
122
123/* func */
124
125Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000126void session_set_fds(Session *, int, int, int);
127static void session_pty_cleanup(void *);
128void session_proctitle(Session *);
129int session_setup_x11fwd(Session *);
130void do_exec_pty(Session *, const char *);
131void do_exec_no_pty(Session *, const char *);
132void do_exec(Session *, const char *);
133void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000134#ifdef LOGIN_NEEDS_UTMPX
135static void do_pre_login(Session *s);
136#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000137void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000138void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000139int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000140
Ben Lindstrombba81212001-06-25 05:01:22 +0000141static void do_authenticated1(Authctxt *);
142static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000143
Ben Lindstrombba81212001-06-25 05:01:22 +0000144static void session_close(Session *);
145static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000146
Damien Millerb38eff82000-04-01 11:09:21 +1000147/* import */
148extern ServerOptions options;
149extern char *__progname;
150extern int log_stderr;
151extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000152extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000153extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000154extern void destroy_sensitive_data(void);
Damien Miller37023962000-07-11 17:31:38 +1000155
Damien Miller7b28dc52000-09-05 13:34:53 +1100156/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000157const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100158
Damien Millerb38eff82000-04-01 11:09:21 +1000159/* data */
160#define MAX_SESSIONS 10
161Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100162
Damien Millerd2c208a2000-05-17 22:00:02 +1000163#ifdef WITH_AIXAUTHENTICATE
Damien Millerd2c208a2000-05-17 22:00:02 +1000164char *aixloginmsg;
165#endif /* WITH_AIXAUTHENTICATE */
Damien Millerb38eff82000-04-01 11:09:21 +1000166
Damien Millerad833b32000-08-23 10:46:23 +1000167#ifdef HAVE_LOGIN_CAP
168static login_cap_t *lc;
169#endif
170
Ben Lindstromb31783d2001-03-22 02:02:12 +0000171void
172do_authenticated(Authctxt *authctxt)
173{
174 /*
175 * Cancel the alarm we set to limit the time taken for
176 * authentication.
177 */
178 alarm(0);
179 if (startup_pipe != -1) {
180 close(startup_pipe);
181 startup_pipe = -1;
182 }
183#if defined(HAVE_LOGIN_CAP) && defined(HAVE_PW_CLASS_IN_PASSWD)
184 if ((lc = login_getclass(authctxt->pw->pw_class)) == NULL) {
185 error("unable to get login class");
186 return;
187 }
Ben Lindstrom005dd222001-04-18 15:29:33 +0000188#ifdef BSD_AUTH
189 if (auth_approval(NULL, lc, authctxt->pw->pw_name, "ssh") <= 0) {
190 packet_disconnect("Approval failure for %s",
191 authctxt->pw->pw_name);
192 }
193#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000194#endif
Damien Millere49d0962001-11-13 23:46:18 +1100195#ifdef WITH_AIXAUTHENTICATE
196 /* We don't have a pty yet, so just label the line as "ssh" */
197 if (loginsuccess(authctxt->user,
198 get_canonical_hostname(options.reverse_mapping_check),
199 "ssh", &aixloginmsg) < 0)
200 aixloginmsg = NULL;
201#endif /* WITH_AIXAUTHENTICATE */
202
Ben Lindstromb31783d2001-03-22 02:02:12 +0000203 /* setup the channel layer */
204 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
205 channel_permit_all_opens();
206
207 if (compat20)
208 do_authenticated2(authctxt);
209 else
210 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000211
Ben Lindstrom2bcdf062001-06-13 04:41:41 +0000212 /* remove agent socket */
Ben Lindstrom838394c2001-06-09 01:11:59 +0000213 if (auth_get_socket_name())
Ben Lindstrom983c0982001-06-09 01:20:06 +0000214 auth_sock_cleanup_proc(authctxt->pw);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000215#ifdef KRB4
216 if (options.kerberos_ticket_cleanup)
217 krb4_cleanup_proc(authctxt);
218#endif
219#ifdef KRB5
220 if (options.kerberos_ticket_cleanup)
221 krb5_cleanup_proc(authctxt);
222#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000223}
224
Damien Millerb38eff82000-04-01 11:09:21 +1000225/*
Damien Millerb38eff82000-04-01 11:09:21 +1000226 * Prepares for an interactive session. This is called after the user has
227 * been successfully authenticated. During this message exchange, pseudo
228 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
229 * are requested, etc.
230 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000231static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000232do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000233{
234 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000235 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100236 int success, type, screen_flag;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000237 int compression_level = 0, enable_compression_after_reply = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000238 u_int proto_len, data_len, dlen;
Damien Millerb38eff82000-04-01 11:09:21 +1000239
240 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000241 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000242 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000243
Damien Millerb38eff82000-04-01 11:09:21 +1000244 /*
245 * We stay in this loop until the client requests to execute a shell
246 * or a command.
247 */
248 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000249 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000250
251 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100252 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000253
254 /* Process the packet. */
255 switch (type) {
256 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000257 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100258 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000259 if (compression_level < 1 || compression_level > 9) {
260 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100261 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000262 break;
263 }
264 /* Enable compression after we have responded with SUCCESS. */
265 enable_compression_after_reply = 1;
266 success = 1;
267 break;
268
269 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000270 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000271 break;
272
273 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000274 s->auth_proto = packet_get_string(&proto_len);
275 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000276
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000277 screen_flag = packet_get_protocol_flags() &
278 SSH_PROTOFLAG_SCREEN_NUMBER;
279 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
280
281 if (packet_remaining() == 4) {
282 if (!screen_flag)
283 debug2("Buggy client: "
284 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000285 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000286 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000287 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000288 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100289 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000290 success = session_setup_x11fwd(s);
291 if (!success) {
292 xfree(s->auth_proto);
293 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000294 s->auth_proto = NULL;
295 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000296 }
Damien Millerb38eff82000-04-01 11:09:21 +1000297 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000298
299 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
300 if (no_agent_forwarding_flag || compat13) {
301 debug("Authentication agent forwarding not permitted for this authentication.");
302 break;
303 }
304 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000305 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000306 break;
307
308 case SSH_CMSG_PORT_FORWARD_REQUEST:
309 if (no_port_forwarding_flag) {
310 debug("Port forwarding not permitted for this authentication.");
311 break;
312 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100313 if (!options.allow_tcp_forwarding) {
314 debug("Port forwarding not permitted.");
315 break;
316 }
Damien Millerb38eff82000-04-01 11:09:21 +1000317 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000318 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000319 success = 1;
320 break;
321
322 case SSH_CMSG_MAX_PACKET_SIZE:
323 if (packet_set_maxsize(packet_get_int()) > 0)
324 success = 1;
325 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100326
Ben Lindstromec95ed92001-07-04 04:21:14 +0000327#if defined(AFS) || defined(KRB5)
328 case SSH_CMSG_HAVE_KERBEROS_TGT:
329 if (!options.kerberos_tgt_passing) {
330 verbose("Kerberos TGT passing disabled.");
331 } else {
332 char *kdata = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100333 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100334
Ben Lindstromec95ed92001-07-04 04:21:14 +0000335 /* XXX - 0x41, see creds_to_radix version */
336 if (kdata[0] != 0x41) {
337#ifdef KRB5
338 krb5_data tgt;
339 tgt.data = kdata;
340 tgt.length = dlen;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100341
Ben Lindstromec95ed92001-07-04 04:21:14 +0000342 if (auth_krb5_tgt(s->authctxt, &tgt))
343 success = 1;
344 else
345 verbose("Kerberos v5 TGT refused for %.100s", s->authctxt->user);
346#endif /* KRB5 */
347 } else {
348#ifdef AFS
349 if (auth_krb4_tgt(s->authctxt, kdata))
350 success = 1;
351 else
352 verbose("Kerberos v4 TGT refused for %.100s", s->authctxt->user);
353#endif /* AFS */
354 }
355 xfree(kdata);
356 }
357 break;
358#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100359
Ben Lindstromec95ed92001-07-04 04:21:14 +0000360#ifdef AFS
361 case SSH_CMSG_HAVE_AFS_TOKEN:
362 if (!options.afs_token_passing || !k_hasafs()) {
363 verbose("AFS token passing disabled.");
364 } else {
365 /* Accept AFS token. */
366 char *token = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100367 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100368
Ben Lindstromec95ed92001-07-04 04:21:14 +0000369 if (auth_afs_token(s->authctxt, token))
370 success = 1;
371 else
372 verbose("AFS token refused for %.100s",
373 s->authctxt->user);
374 xfree(token);
375 }
376 break;
377#endif /* AFS */
Damien Millerb38eff82000-04-01 11:09:21 +1000378
379 case SSH_CMSG_EXEC_SHELL:
380 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000381 if (type == SSH_CMSG_EXEC_CMD) {
382 command = packet_get_string(&dlen);
383 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000384 do_exec(s, command);
385 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000386 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000387 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000388 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100389 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000390 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000391 return;
392
393 default:
394 /*
395 * Any unknown messages in this phase are ignored,
396 * and a failure message is returned.
397 */
398 log("Unknown packet type received after authentication: %d", type);
399 }
400 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
401 packet_send();
402 packet_write_wait();
403
404 /* Enable compression now that we have replied if appropriate. */
405 if (enable_compression_after_reply) {
406 enable_compression_after_reply = 0;
407 packet_start_compression(compression_level);
408 }
409 }
410}
411
412/*
413 * This is called to fork and execute a command when we have no tty. This
414 * will call do_child from the child, and server_loop from the parent after
415 * setting up file descriptors and such.
416 */
Damien Miller4af51302000-04-16 11:18:38 +1000417void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000418do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000419{
420 int pid;
421
422#ifdef USE_PIPES
423 int pin[2], pout[2], perr[2];
424 /* Allocate pipes for communicating with the program. */
425 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
426 packet_disconnect("Could not create pipes: %.100s",
427 strerror(errno));
428#else /* USE_PIPES */
429 int inout[2], err[2];
430 /* Uses socket pairs to communicate with the program. */
431 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
432 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
433 packet_disconnect("Could not create socket pairs: %.100s",
434 strerror(errno));
435#endif /* USE_PIPES */
436 if (s == NULL)
437 fatal("do_exec_no_pty: no session");
438
Damien Millere247cc42000-05-07 12:03:14 +1000439 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000440
Damien Millerc5946332001-02-28 11:46:11 +1100441#if defined(USE_PAM)
Damien Miller665af9c2001-06-27 09:34:15 +1000442 do_pam_session(s->pw->pw_name, NULL);
Damien Millerf9e93002001-03-27 16:12:24 +1000443 do_pam_setcred(1);
Damien Millerc3aa3dd2001-10-28 22:34:52 +1100444 if (is_pam_password_change_required())
445 packet_disconnect("Password change required but no "
446 "TTY available");
Kevin Stevesff793a22001-02-21 16:36:51 +0000447#endif /* USE_PAM */
448
Damien Millerb38eff82000-04-01 11:09:21 +1000449 /* Fork the child. */
450 if ((pid = fork()) == 0) {
451 /* Child. Reinitialize the log since the pid has changed. */
452 log_init(__progname, options.log_level, options.log_facility, log_stderr);
453
454 /*
455 * Create a new session and process group since the 4.4BSD
456 * setlogin() affects the entire process group.
457 */
458 if (setsid() < 0)
459 error("setsid failed: %.100s", strerror(errno));
460
461#ifdef USE_PIPES
462 /*
463 * Redirect stdin. We close the parent side of the socket
464 * pair, and make the child side the standard input.
465 */
466 close(pin[1]);
467 if (dup2(pin[0], 0) < 0)
468 perror("dup2 stdin");
469 close(pin[0]);
470
471 /* Redirect stdout. */
472 close(pout[0]);
473 if (dup2(pout[1], 1) < 0)
474 perror("dup2 stdout");
475 close(pout[1]);
476
477 /* Redirect stderr. */
478 close(perr[0]);
479 if (dup2(perr[1], 2) < 0)
480 perror("dup2 stderr");
481 close(perr[1]);
482#else /* USE_PIPES */
483 /*
484 * Redirect stdin, stdout, and stderr. Stdin and stdout will
485 * use the same socket, as some programs (particularly rdist)
486 * seem to depend on it.
487 */
488 close(inout[1]);
489 close(err[1]);
490 if (dup2(inout[0], 0) < 0) /* stdin */
491 perror("dup2 stdin");
492 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
493 perror("dup2 stdout");
494 if (dup2(err[0], 2) < 0) /* stderr */
495 perror("dup2 stderr");
496#endif /* USE_PIPES */
497
498 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000499 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000500 /* NOTREACHED */
501 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100502#ifdef HAVE_CYGWIN
503 if (is_winnt)
504 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
505#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000506 if (pid < 0)
507 packet_disconnect("fork failed: %.100s", strerror(errno));
508 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000509 /* Set interactive/non-interactive mode. */
510 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000511#ifdef USE_PIPES
512 /* We are the parent. Close the child sides of the pipes. */
513 close(pin[0]);
514 close(pout[1]);
515 close(perr[1]);
516
Damien Millerefb4afe2000-04-12 18:45:05 +1000517 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000518 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000519 } else {
520 /* Enter the interactive session. */
521 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000522 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000523 }
Damien Millerb38eff82000-04-01 11:09:21 +1000524#else /* USE_PIPES */
525 /* We are the parent. Close the child sides of the socket pairs. */
526 close(inout[0]);
527 close(err[0]);
528
529 /*
530 * Enter the interactive session. Note: server_loop must be able to
531 * handle the case that fdin and fdout are the same.
532 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000533 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000534 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000535 } else {
536 server_loop(pid, inout[1], inout[1], err[1]);
537 /* server_loop has closed inout[1] and err[1]. */
538 }
Damien Millerb38eff82000-04-01 11:09:21 +1000539#endif /* USE_PIPES */
540}
541
542/*
543 * This is called to fork and execute a command when we have a tty. This
544 * will call do_child from the child, and server_loop from the parent after
545 * setting up file descriptors, controlling tty, updating wtmp, utmp,
546 * lastlog, and other such operations.
547 */
Damien Miller4af51302000-04-16 11:18:38 +1000548void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000549do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000550{
Damien Millerb38eff82000-04-01 11:09:21 +1000551 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000552 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000553
554 if (s == NULL)
555 fatal("do_exec_pty: no session");
556 ptyfd = s->ptyfd;
557 ttyfd = s->ttyfd;
558
Damien Millerc5946332001-02-28 11:46:11 +1100559#if defined(USE_PAM)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000560 do_pam_session(s->pw->pw_name, s->tty);
Damien Millerf9e93002001-03-27 16:12:24 +1000561 do_pam_setcred(1);
Damien Miller5a761312001-02-27 09:28:23 +1100562#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000563
Damien Millerb38eff82000-04-01 11:09:21 +1000564 /* Fork the child. */
565 if ((pid = fork()) == 0) {
Ben Lindstrombddd5512001-07-04 04:53:53 +0000566
Damien Miller942da032000-08-18 13:59:06 +1000567 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000568 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000569 /* Close the master side of the pseudo tty. */
570 close(ptyfd);
571
572 /* Make the pseudo tty our controlling tty. */
573 pty_make_controlling_tty(&ttyfd, s->tty);
574
Damien Miller9c751422001-10-10 15:02:46 +1000575 /* Redirect stdin/stdout/stderr from the pseudo tty. */
576 if (dup2(ttyfd, 0) < 0)
577 error("dup2 stdin: %s", strerror(errno));
578 if (dup2(ttyfd, 1) < 0)
579 error("dup2 stdout: %s", strerror(errno));
580 if (dup2(ttyfd, 2) < 0)
581 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000582
583 /* Close the extra descriptor for the pseudo tty. */
584 close(ttyfd);
585
Damien Miller942da032000-08-18 13:59:06 +1000586 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000587#ifndef HAVE_OSF_SIA
Damien Miller69b69aa2000-10-28 14:19:58 +1100588 if (!(options.use_login && command == NULL))
589 do_login(s, command);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000590# ifdef LOGIN_NEEDS_UTMPX
591 else
592 do_pre_login(s);
593# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000594#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000595
Damien Millerb38eff82000-04-01 11:09:21 +1000596 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000597 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000598 /* NOTREACHED */
599 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100600#ifdef HAVE_CYGWIN
601 if (is_winnt)
602 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
603#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000604 if (pid < 0)
605 packet_disconnect("fork failed: %.100s", strerror(errno));
606 s->pid = pid;
607
608 /* Parent. Close the slave side of the pseudo tty. */
609 close(ttyfd);
610
611 /*
612 * Create another descriptor of the pty master side for use as the
613 * standard input. We could use the original descriptor, but this
614 * simplifies code in server_loop. The descriptor is bidirectional.
615 */
616 fdout = dup(ptyfd);
617 if (fdout < 0)
618 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
619
620 /* we keep a reference to the pty master */
621 ptymaster = dup(ptyfd);
622 if (ptymaster < 0)
623 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
624 s->ptymaster = ptymaster;
625
626 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000627 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000628 if (compat20) {
629 session_set_fds(s, ptyfd, fdout, -1);
630 } else {
631 server_loop(pid, ptyfd, fdout, -1);
632 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000633 }
Damien Millerb38eff82000-04-01 11:09:21 +1000634}
635
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000636#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000637static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000638do_pre_login(Session *s)
639{
640 socklen_t fromlen;
641 struct sockaddr_storage from;
642 pid_t pid = getpid();
643
644 /*
645 * Get IP address of client. If the connection is not a socket, let
646 * the address be 0.0.0.0.
647 */
648 memset(&from, 0, sizeof(from));
649 if (packet_connection_is_on_socket()) {
650 fromlen = sizeof(from);
651 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100652 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000653 debug("getpeername: %.100s", strerror(errno));
654 fatal_cleanup();
655 }
656 }
657
658 record_utmp_only(pid, s->tty, s->pw->pw_name,
659 get_remote_name_or_ip(utmp_len, options.reverse_mapping_check),
660 (struct sockaddr *)&from);
661}
662#endif
663
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000664/*
665 * This is called to fork and execute a command. If another command is
666 * to be forced, execute that instead.
667 */
668void
669do_exec(Session *s, const char *command)
670{
671 if (forced_command) {
672 original_command = command;
673 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000674 debug("Forced command '%.900s'", command);
675 }
676
677 if (s->ttyfd != -1)
678 do_exec_pty(s, command);
679 else
680 do_exec_no_pty(s, command);
681
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000682 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000683}
684
Damien Miller942da032000-08-18 13:59:06 +1000685/* administrative, login(1)-like work */
686void
Damien Miller69b69aa2000-10-28 14:19:58 +1100687do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000688{
Damien Miller942da032000-08-18 13:59:06 +1000689 char *time_string;
Damien Miller7b28dc52000-09-05 13:34:53 +1100690 char hostname[MAXHOSTNAMELEN];
Damien Miller942da032000-08-18 13:59:06 +1000691 socklen_t fromlen;
692 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000693 time_t last_login_time;
694 struct passwd * pw = s->pw;
695 pid_t pid = getpid();
696
697 /*
698 * Get IP address of client. If the connection is not a socket, let
699 * the address be 0.0.0.0.
700 */
701 memset(&from, 0, sizeof(from));
702 if (packet_connection_is_on_socket()) {
703 fromlen = sizeof(from);
704 if (getpeername(packet_get_connection_in(),
705 (struct sockaddr *) & from, &fromlen) < 0) {
706 debug("getpeername: %.100s", strerror(errno));
707 fatal_cleanup();
708 }
709 }
710
Damien Miller7b28dc52000-09-05 13:34:53 +1100711 /* Get the time and hostname when the user last logged in. */
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000712 if (options.print_lastlog) {
713 hostname[0] = '\0';
714 last_login_time = get_last_login_time(pw->pw_uid, pw->pw_name,
715 hostname, sizeof(hostname));
716 }
Damien Millere4340be2000-09-16 13:29:08 +1100717
Damien Miller942da032000-08-18 13:59:06 +1000718 /* Record that there was a login on that tty from the remote host. */
719 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
Ben Lindstromf15a3862001-04-05 23:32:17 +0000720 get_remote_name_or_ip(utmp_len, options.reverse_mapping_check),
721 (struct sockaddr *)&from);
Damien Miller942da032000-08-18 13:59:06 +1000722
Kevin Steves092f2ef2000-10-14 13:36:13 +0000723#ifdef USE_PAM
724 /*
725 * If password change is needed, do it now.
726 * This needs to occur before the ~/.hushlogin check.
727 */
Damien Miller646aa602001-02-15 11:51:32 +1100728 if (is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000729 print_pam_messages();
730 do_pam_chauthtok();
731 }
732#endif
733
Damien Millercf205e82001-04-16 18:29:15 +1000734 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000735 return;
736
737#ifdef USE_PAM
Damien Miller646aa602001-02-15 11:51:32 +1100738 if (!is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000739 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000740#endif /* USE_PAM */
741#ifdef WITH_AIXAUTHENTICATE
742 if (aixloginmsg && *aixloginmsg)
743 printf("%s\n", aixloginmsg);
744#endif /* WITH_AIXAUTHENTICATE */
745
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000746 if (options.print_lastlog && last_login_time != 0) {
Damien Miller942da032000-08-18 13:59:06 +1000747 time_string = ctime(&last_login_time);
748 if (strchr(time_string, '\n'))
749 *strchr(time_string, '\n') = 0;
Kevin Stevesc368a3c2000-10-14 16:10:06 +0000750 if (strcmp(hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000751 printf("Last login: %s\r\n", time_string);
752 else
Damien Millere4340be2000-09-16 13:29:08 +1100753 printf("Last login: %s from %s\r\n", time_string, hostname);
Damien Miller942da032000-08-18 13:59:06 +1000754 }
Damien Millercf205e82001-04-16 18:29:15 +1000755
756 do_motd();
757}
758
759/*
760 * Display the message of the day.
761 */
762void
763do_motd(void)
764{
765 FILE *f;
766 char buf[256];
767
Damien Miller942da032000-08-18 13:59:06 +1000768 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000769#ifdef HAVE_LOGIN_CAP
770 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
771 "/etc/motd"), "r");
772#else
Damien Miller942da032000-08-18 13:59:06 +1000773 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000774#endif
Damien Miller942da032000-08-18 13:59:06 +1000775 if (f) {
776 while (fgets(buf, sizeof(buf), f))
777 fputs(buf, stdout);
778 fclose(f);
779 }
780 }
781}
782
Kevin Steves8f63caa2001-07-04 18:23:02 +0000783
784/*
785 * Check for quiet login, either .hushlogin or command given.
786 */
787int
788check_quietlogin(Session *s, const char *command)
789{
790 char buf[256];
791 struct passwd *pw = s->pw;
792 struct stat st;
793
794 /* Return 1 if .hushlogin exists or a command given. */
795 if (command != NULL)
796 return 1;
797 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
798#ifdef HAVE_LOGIN_CAP
799 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
800 return 1;
801#else
802 if (stat(buf, &st) >= 0)
803 return 1;
804#endif
805 return 0;
806}
807
Damien Millerb38eff82000-04-01 11:09:21 +1000808/*
809 * Sets the value of the given variable in the environment. If the variable
810 * already exists, its value is overriden.
811 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000812static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000813child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100814 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000816 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000817 char **env;
818
819 /*
820 * Find the slot where the value should be stored. If the variable
821 * already exists, we reuse the slot; otherwise we append a new slot
822 * at the end of the array, expanding if necessary.
823 */
824 env = *envp;
825 namelen = strlen(name);
826 for (i = 0; env[i]; i++)
827 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
828 break;
829 if (env[i]) {
830 /* Reuse the slot. */
831 xfree(env[i]);
832 } else {
833 /* New variable. Expand if necessary. */
834 if (i >= (*envsizep) - 1) {
835 (*envsizep) += 50;
836 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
837 }
838 /* Need to set the NULL pointer at end of array beyond the new slot. */
839 env[i + 1] = NULL;
840 }
841
842 /* Allocate space and format the variable in the appropriate slot. */
843 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
844 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
845}
846
847/*
848 * Reads environment variables from the given file and adds/overrides them
849 * into the environment. If the file does not exist, this does nothing.
850 * Otherwise, it must consist of empty lines, comments (line starts with '#')
851 * and assignments of the form name=value. No other forms are allowed.
852 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000853static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000854read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100855 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000856{
857 FILE *f;
858 char buf[4096];
859 char *cp, *value;
860
861 f = fopen(filename, "r");
862 if (!f)
863 return;
864
865 while (fgets(buf, sizeof(buf), f)) {
866 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
867 ;
868 if (!*cp || *cp == '#' || *cp == '\n')
869 continue;
870 if (strchr(cp, '\n'))
871 *strchr(cp, '\n') = '\0';
872 value = strchr(cp, '=');
873 if (value == NULL) {
874 fprintf(stderr, "Bad line in %.100s: %.200s\n", filename, buf);
875 continue;
876 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000877 /*
878 * Replace the equals sign by nul, and advance value to
879 * the value string.
880 */
Damien Millerb38eff82000-04-01 11:09:21 +1000881 *value = '\0';
882 value++;
883 child_set_env(env, envsize, cp, value);
884 }
885 fclose(f);
886}
887
Damien Millerbb9ffc12002-01-08 10:59:32 +1100888void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000889{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100890 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000891 int i;
892
Damien Millerbb9ffc12002-01-08 10:59:32 +1100893 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000894 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000895
Damien Millerbb9ffc12002-01-08 10:59:32 +1100896 for(i = 0; source[i] != NULL; i++) {
897 var_name = xstrdup(source[i]);
898 if ((var_val = strstr(var_name, "=")) == NULL) {
899 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000900 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000901 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100902 *var_val++ = '\0';
903
904 debug3("Copy environment: %s=%s", var_name, var_val);
905 child_set_env(env, envsize, var_name, var_val);
906
907 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000908 }
909}
Damien Millercb5e44a2000-09-29 12:12:36 +1100910
Damien Miller5fc85652000-07-09 23:53:07 +1000911#if defined(HAVE_GETUSERATTR)
912/*
913 * AIX-specific login initialisation
914 */
915void set_limit(char *user, char *soft, char *hard, int resource, int mult)
916{
917 struct rlimit rlim;
Damien Miller65964d62000-07-11 09:16:22 +1000918 int slim, hlim;
Damien Miller5fc85652000-07-09 23:53:07 +1000919
920 getrlimit(resource, &rlim);
921
Damien Miller65964d62000-07-11 09:16:22 +1000922 slim = 0;
923 if (getuserattr(user, soft, &slim, SEC_INT) != -1) {
924 if (slim < 0) {
925 rlim.rlim_cur = RLIM_INFINITY;
926 } else if (slim != 0) {
927 /* See the wackiness below */
928 if (rlim.rlim_cur == slim * mult)
929 slim = 0;
930 else
931 rlim.rlim_cur = slim * mult;
932 }
933 }
Damien Miller5fc85652000-07-09 23:53:07 +1000934
Damien Miller65964d62000-07-11 09:16:22 +1000935 hlim = 0;
936 if (getuserattr(user, hard, &hlim, SEC_INT) != -1) {
937 if (hlim < 0) {
938 rlim.rlim_max = RLIM_INFINITY;
939 } else if (hlim != 0) {
940 rlim.rlim_max = hlim * mult;
941 }
942 }
Damien Miller5fc85652000-07-09 23:53:07 +1000943
Damien Miller65964d62000-07-11 09:16:22 +1000944 /*
945 * XXX For cpu and fsize the soft limit is set to the hard limit
946 * if the hard limit is left at its default value and the soft limit
947 * is changed from its default value, either by requesting it
948 * (slim == 0) or by setting it to the current default. At least
949 * that's how rlogind does it. If you're confused you're not alone.
950 * Bug or feature? AIX 4.3.1.2
951 */
952 if ((!strcmp(soft, "fsize") || !strcmp(soft, "cpu"))
953 && hlim == 0 && slim != 0)
954 rlim.rlim_max = rlim.rlim_cur;
955 /* A specified hard limit limits the soft limit */
956 else if (hlim > 0 && rlim.rlim_cur > rlim.rlim_max)
957 rlim.rlim_cur = rlim.rlim_max;
958 /* A soft limit can increase a hard limit */
959 else if (rlim.rlim_cur > rlim.rlim_max)
Damien Miller5fc85652000-07-09 23:53:07 +1000960 rlim.rlim_max = rlim.rlim_cur;
961
962 if (setrlimit(resource, &rlim) != 0)
Damien Miller65964d62000-07-11 09:16:22 +1000963 error("setrlimit(%.10s) failed: %.100s", soft, strerror(errno));
Damien Miller5fc85652000-07-09 23:53:07 +1000964}
965
966void set_limits_from_userattr(char *user)
967{
968 int mask;
969 char buf[16];
970
971 set_limit(user, S_UFSIZE, S_UFSIZE_HARD, RLIMIT_FSIZE, 512);
972 set_limit(user, S_UCPU, S_UCPU_HARD, RLIMIT_CPU, 1);
973 set_limit(user, S_UDATA, S_UDATA_HARD, RLIMIT_DATA, 512);
974 set_limit(user, S_USTACK, S_USTACK_HARD, RLIMIT_STACK, 512);
975 set_limit(user, S_URSS, S_URSS_HARD, RLIMIT_RSS, 512);
976 set_limit(user, S_UCORE, S_UCORE_HARD, RLIMIT_CORE, 512);
977#if defined(S_UNOFILE)
978 set_limit(user, S_UNOFILE, S_UNOFILE_HARD, RLIMIT_NOFILE, 1);
979#endif
980
981 if (getuserattr(user, S_UMASK, &mask, SEC_INT) != -1) {
982 /* Convert decimal to octal */
983 (void) snprintf(buf, sizeof(buf), "%d", mask);
984 if (sscanf(buf, "%o", &mask) == 1)
985 umask(mask);
986 }
987}
988#endif /* defined(HAVE_GETUSERATTR) */
989
Damien Millerb38eff82000-04-01 11:09:21 +1000990/*
991 * Performs common processing for the child, such as setting up the
992 * environment, closing extra file descriptors, setting the user and group
993 * ids, and executing the command or shell.
994 */
Damien Miller4af51302000-04-16 11:18:38 +1000995void
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000996do_child(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000997{
Damien Miller7b28dc52000-09-05 13:34:53 +1100998 const char *shell, *hostname = NULL, *cp = NULL;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000999 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +10001000 char buf[256];
Damien Miller0c043c12000-06-07 21:22:38 +10001001 char cmd[1024];
Damien Millerad833b32000-08-23 10:46:23 +10001002 FILE *f = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001003 u_int envsize, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001004 char **env;
1005 extern char **environ;
1006 struct stat st;
1007 char *argv[10];
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001008 int do_xauth;
Damien Miller91606b12000-06-28 08:22:29 +10001009#ifdef WITH_IRIX_PROJECT
1010 prid_t projid;
1011#endif /* WITH_IRIX_PROJECT */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001012#ifdef WITH_IRIX_JOBS
1013 jid_t jid = 0;
1014#else
1015#ifdef WITH_IRIX_ARRAY
1016 int jid = 0;
1017#endif /* WITH_IRIX_ARRAY */
1018#endif /* WITH_IRIX_JOBS */
1019
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001020 do_xauth =
1021 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1022
Ben Lindstrom005dd222001-04-18 15:29:33 +00001023 /* remove hostkey from the child's memory */
1024 destroy_sensitive_data();
1025
Damien Millerd3a18572000-06-07 19:55:44 +10001026 /* login(1) is only called if we execute the login shell */
1027 if (options.use_login && command != NULL)
1028 options.use_login = 0;
1029
Damien Millerc62f1fc2001-07-14 11:54:05 +10001030#if !defined(HAVE_OSF_SIA)
Damien Millerad833b32000-08-23 10:46:23 +10001031 if (!options.use_login) {
1032# ifdef HAVE_LOGIN_CAP
1033 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1034 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1035 _PATH_NOLOGIN), "r");
1036# else /* HAVE_LOGIN_CAP */
1037 if (pw->pw_uid)
1038 f = fopen(_PATH_NOLOGIN, "r");
1039# endif /* HAVE_LOGIN_CAP */
1040 if (f) {
1041 /* /etc/nologin exists. Print its contents and exit. */
1042 while (fgets(buf, sizeof(buf), f))
1043 fputs(buf, stderr);
1044 fclose(f);
Damien Millerb38eff82000-04-01 11:09:21 +10001045 exit(254);
Damien Millerad833b32000-08-23 10:46:23 +10001046 }
Damien Millerb38eff82000-04-01 11:09:21 +10001047 }
Damien Millerc62f1fc2001-07-14 11:54:05 +10001048#endif /* HAVE_OSF_SIA */
Damien Millerb38eff82000-04-01 11:09:21 +10001049
Damien Millerad833b32000-08-23 10:46:23 +10001050 /* Set login name, uid, gid, and groups. */
Damien Millerb38eff82000-04-01 11:09:21 +10001051 /* Login(1) does this as well, and it needs uid 0 for the "-h"
1052 switch, so we let login(1) to this for us. */
1053 if (!options.use_login) {
Damien Millerb8c656e2000-06-28 15:22:41 +10001054#ifdef HAVE_OSF_SIA
Damien Millerb69407d2001-03-21 16:13:03 +11001055 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
Damien Miller364a9bd2001-04-16 18:37:05 +10001056 if (!check_quietlogin(s, command))
1057 do_motd();
Kevin Steves7fafa5c2001-02-13 18:45:00 +00001058#else /* HAVE_OSF_SIA */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001059#ifdef HAVE_CYGWIN
1060 if (is_winnt) {
1061#else
Damien Millerb38eff82000-04-01 11:09:21 +10001062 if (getuid() == 0 || geteuid() == 0) {
Damien Millerbac2d8a2000-09-05 16:13:06 +11001063#endif
Damien Millerad833b32000-08-23 10:46:23 +10001064# ifdef HAVE_GETUSERATTR
Damien Miller5fc85652000-07-09 23:53:07 +10001065 set_limits_from_userattr(pw->pw_name);
Damien Millerad833b32000-08-23 10:46:23 +10001066# endif /* HAVE_GETUSERATTR */
1067# ifdef HAVE_LOGIN_CAP
1068 if (setusercontext(lc, pw, pw->pw_uid,
1069 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1070 perror("unable to set user context");
1071 exit(1);
1072 }
1073# else /* HAVE_LOGIN_CAP */
Ben Lindstrome1bd29b2001-02-21 20:00:28 +00001074#if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1075 /* Sets login uid for accounting */
1076 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1077 error("setluid: %s", strerror(errno));
1078#endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1079
Damien Millerad833b32000-08-23 10:46:23 +10001080 if (setlogin(pw->pw_name) < 0)
1081 error("setlogin failed: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10001082 if (setgid(pw->pw_gid) < 0) {
1083 perror("setgid");
1084 exit(1);
1085 }
1086 /* Initialize the group list. */
1087 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1088 perror("initgroups");
1089 exit(1);
1090 }
1091 endgrent();
Damien Millerf9e93002001-03-27 16:12:24 +10001092# ifdef USE_PAM
1093 /*
1094 * PAM credentials may take the form of
1095 * supplementary groups. These will have been
1096 * wiped by the above initgroups() call.
1097 * Reestablish them here.
1098 */
1099 do_pam_setcred(0);
1100# endif /* USE_PAM */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001101# ifdef WITH_IRIX_JOBS
1102 jid = jlimit_startjob(pw->pw_name, pw->pw_uid, "interactive");
1103 if (jid == -1) {
1104 fatal("Failed to create job container: %.100s",
1105 strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001106 }
Ben Lindstrom980754c2000-11-12 00:04:24 +00001107# endif /* WITH_IRIX_JOBS */
Damien Millerad833b32000-08-23 10:46:23 +10001108# ifdef WITH_IRIX_ARRAY
Damien Miller91606b12000-06-28 08:22:29 +10001109 /* initialize array session */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001110 if (jid == 0) {
1111 if (newarraysess() != 0)
1112 fatal("Failed to set up new array session: %.100s",
1113 strerror(errno));
1114 }
Damien Millerad833b32000-08-23 10:46:23 +10001115# endif /* WITH_IRIX_ARRAY */
1116# ifdef WITH_IRIX_PROJECT
Damien Miller91606b12000-06-28 08:22:29 +10001117 /* initialize irix project info */
1118 if ((projid = getdfltprojuser(pw->pw_name)) == -1) {
1119 debug("Failed to get project id, using projid 0");
1120 projid = 0;
1121 }
Damien Miller91606b12000-06-28 08:22:29 +10001122 if (setprid(projid))
1123 fatal("Failed to initialize project %d for %s: %.100s",
1124 (int)projid, pw->pw_name, strerror(errno));
Damien Millerad833b32000-08-23 10:46:23 +10001125# endif /* WITH_IRIX_PROJECT */
Ben Lindstrom49a79c02000-11-17 03:47:20 +00001126#ifdef WITH_IRIX_AUDIT
1127 if (sysconf(_SC_AUDIT)) {
1128 debug("Setting sat id to %d", (int) pw->pw_uid);
1129 if (satsetid(pw->pw_uid))
1130 debug("error setting satid: %.100s", strerror(errno));
1131 }
1132#endif /* WITH_IRIX_AUDIT */
1133
Damien Miller168a7002001-03-17 10:29:50 +11001134#ifdef _AIX
1135 /*
1136 * AIX has a "usrinfo" area where logname and
1137 * other stuff is stored - a few applications
1138 * actually use this and die if it's not set
1139 */
Damien Millerbebd8be2001-03-22 11:58:15 +11001140 if (s->ttyfd == -1)
1141 s->tty[0] = '\0';
Damien Millerbe081762001-03-21 11:11:57 +11001142 cp = xmalloc(22 + strlen(s->tty) +
Damien Miller168a7002001-03-17 10:29:50 +11001143 2 * strlen(pw->pw_name));
1144 i = sprintf(cp, "LOGNAME=%s%cNAME=%s%cTTY=%s%c%c",
Damien Millerbebd8be2001-03-22 11:58:15 +11001145 pw->pw_name, 0, pw->pw_name, 0, s->tty, 0, 0);
Damien Miller168a7002001-03-17 10:29:50 +11001146 if (usrinfo(SETUINFO, cp, i) == -1)
1147 fatal("Couldn't set usrinfo: %s",
1148 strerror(errno));
1149 debug3("AIX/UsrInfo: set len %d", i);
1150 xfree(cp);
1151#endif
1152
Damien Millerb38eff82000-04-01 11:09:21 +10001153 /* Permanently switch to the desired uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00001154 permanently_set_uid(pw);
Damien Millerad833b32000-08-23 10:46:23 +10001155# endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001156 }
Damien Millerad833b32000-08-23 10:46:23 +10001157#endif /* HAVE_OSF_SIA */
1158
Damien Millerbac2d8a2000-09-05 16:13:06 +11001159#ifdef HAVE_CYGWIN
1160 if (is_winnt)
1161#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001162 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
Damien Millercaf6dd62000-08-29 11:33:50 +11001163 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Millerb38eff82000-04-01 11:09:21 +10001164 }
1165 /*
1166 * Get the shell from the password data. An empty shell field is
1167 * legal, and means /bin/sh.
1168 */
1169 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Damien Millerad833b32000-08-23 10:46:23 +10001170#ifdef HAVE_LOGIN_CAP
1171 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1172#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001173
Damien Millerb38eff82000-04-01 11:09:21 +10001174 /* Initialize the environment. */
1175 envsize = 100;
1176 env = xmalloc(envsize * sizeof(char *));
1177 env[0] = NULL;
1178
Damien Millerbac2d8a2000-09-05 16:13:06 +11001179#ifdef HAVE_CYGWIN
1180 /*
1181 * The Windows environment contains some setting which are
1182 * important for a running system. They must not be dropped.
1183 */
Damien Millerbb9ffc12002-01-08 10:59:32 +11001184 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +11001185#endif
1186
Damien Millerb38eff82000-04-01 11:09:21 +10001187 if (!options.use_login) {
1188 /* Set basic environment. */
1189 child_set_env(&env, &envsize, "USER", pw->pw_name);
1190 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1191 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001192#ifdef HAVE_LOGIN_CAP
1193 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH);
1194 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001195#else /* HAVE_LOGIN_CAP */
1196# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001197 /*
1198 * There's no standard path on Windows. The path contains
1199 * important components pointing to the system directories,
1200 * needed for loading shared libraries. So the path better
1201 * remains intact here.
1202 */
Damien Millerb38eff82000-04-01 11:09:21 +10001203 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millercb5e44a2000-09-29 12:12:36 +11001204# endif /* HAVE_CYGWIN */
1205#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001206
1207 snprintf(buf, sizeof buf, "%.200s/%.50s",
1208 _PATH_MAILDIR, pw->pw_name);
1209 child_set_env(&env, &envsize, "MAIL", buf);
1210
1211 /* Normal systems set SHELL by default. */
1212 child_set_env(&env, &envsize, "SHELL", shell);
1213 }
1214 if (getenv("TZ"))
1215 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1216
1217 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001218 if (!options.use_login) {
1219 while (custom_environment) {
1220 struct envstring *ce = custom_environment;
1221 char *s = ce->s;
1222 int i;
1223 for (i = 0; s[i] != '=' && s[i]; i++)
1224 ;
1225 if (s[i] == '=') {
1226 s[i] = 0;
1227 child_set_env(&env, &envsize, s, s + i + 1);
1228 }
1229 custom_environment = ce->next;
1230 xfree(ce->s);
1231 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001232 }
Damien Millerb38eff82000-04-01 11:09:21 +10001233 }
1234
1235 snprintf(buf, sizeof buf, "%.50s %d %d",
1236 get_remote_ipaddr(), get_remote_port(), get_local_port());
1237 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1238
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001239 if (s->ttyfd != -1)
1240 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1241 if (s->term)
1242 child_set_env(&env, &envsize, "TERM", s->term);
1243 if (s->display)
1244 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001245 if (original_command)
1246 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1247 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001248
1249#ifdef _AIX
Damien Millercb5e44a2000-09-29 12:12:36 +11001250 if ((cp = getenv("AUTHSTATE")) != NULL)
1251 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1252 if ((cp = getenv("KRB5CCNAME")) != NULL)
1253 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1254 read_environment_file(&env, &envsize, "/etc/environment");
Damien Millerb38eff82000-04-01 11:09:21 +10001255#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001256#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +00001257 if (s->authctxt->krb4_ticket_file)
1258 child_set_env(&env, &envsize, "KRBTKFILE",
1259 s->authctxt->krb4_ticket_file);
1260#endif
1261#ifdef KRB5
1262 if (s->authctxt->krb5_ticket_file)
1263 child_set_env(&env, &envsize, "KRB5CCNAME",
1264 s->authctxt->krb5_ticket_file);
1265#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001266#ifdef USE_PAM
1267 /* Pull in any environment variables that may have been set by PAM. */
Damien Millerbb9ffc12002-01-08 10:59:32 +11001268 copy_environment(fetch_pam_environment(), &env, &envsize);
Damien Millerb38eff82000-04-01 11:09:21 +10001269#endif /* USE_PAM */
1270
Damien Millerb38eff82000-04-01 11:09:21 +10001271 if (auth_get_socket_name() != NULL)
1272 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001273 auth_get_socket_name());
Damien Millerb38eff82000-04-01 11:09:21 +10001274
1275 /* read $HOME/.ssh/environment. */
1276 if (!options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001277 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1278 pw->pw_dir);
Damien Millerb38eff82000-04-01 11:09:21 +10001279 read_environment_file(&env, &envsize, buf);
1280 }
1281 if (debug_flag) {
1282 /* dump the environment */
1283 fprintf(stderr, "Environment:\n");
1284 for (i = 0; env[i]; i++)
1285 fprintf(stderr, " %.200s\n", env[i]);
1286 }
Damien Millerad833b32000-08-23 10:46:23 +10001287 /* we have to stash the hostname before we close our socket. */
1288 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001289 hostname = get_remote_name_or_ip(utmp_len,
1290 options.reverse_mapping_check);
Damien Millerb38eff82000-04-01 11:09:21 +10001291 /*
1292 * Close the connection descriptors; note that this is the child, and
1293 * the server will still have the socket open, and it is important
1294 * that we do not shutdown it. Note that the descriptors cannot be
1295 * closed before building the environment, as we call
1296 * get_remote_ipaddr there.
1297 */
1298 if (packet_get_connection_in() == packet_get_connection_out())
1299 close(packet_get_connection_in());
1300 else {
1301 close(packet_get_connection_in());
1302 close(packet_get_connection_out());
1303 }
1304 /*
1305 * Close all descriptors related to channels. They will still remain
1306 * open in the parent.
1307 */
1308 /* XXX better use close-on-exec? -markus */
1309 channel_close_all();
1310
1311 /*
1312 * Close any extra file descriptors. Note that there may still be
1313 * descriptors left by system functions. They will be closed later.
1314 */
1315 endpwent();
1316
1317 /*
1318 * Close any extra open file descriptors so that we don\'t have them
1319 * hanging around in clients. Note that we want to do this after
1320 * initgroups, because at least on Solaris 2.3 it leaves file
1321 * descriptors open.
1322 */
1323 for (i = 3; i < 64; i++)
1324 close(i);
1325
Damien Millerb38eff82000-04-01 11:09:21 +10001326 /*
1327 * Must take new environment into use so that .ssh/rc, /etc/sshrc and
1328 * xauth are run in the proper environment.
1329 */
1330 environ = env;
1331
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001332#ifdef AFS
1333 /* Try to get AFS tokens for the local cell. */
1334 if (k_hasafs()) {
1335 char cell[64];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001336
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001337 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1338 krb_afslog(cell, 0);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001339
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001340 krb_afslog(0, 0);
1341 }
1342#endif /* AFS */
1343
Damien Miller139d4cd2001-10-10 15:07:44 +10001344 /* Change current directory to the user\'s home directory. */
1345 if (chdir(pw->pw_dir) < 0) {
1346 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1347 pw->pw_dir, strerror(errno));
1348#ifdef HAVE_LOGIN_CAP
1349 if (login_getcapbool(lc, "requirehome", 0))
1350 exit(1);
1351#endif
1352 }
1353
Damien Millerb38eff82000-04-01 11:09:21 +10001354 /*
1355 * Run $HOME/.ssh/rc, /etc/sshrc, or xauth (whichever is found first
1356 * in this order).
1357 */
1358 if (!options.use_login) {
Ben Lindstrom005dd222001-04-18 15:29:33 +00001359 /* ignore _PATH_SSH_USER_RC for subsystems */
1360 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
Ben Lindstrom60402fd2001-05-03 22:37:26 +00001361 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1362 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
Damien Millerb38eff82000-04-01 11:09:21 +10001363 if (debug_flag)
Ben Lindstrom60402fd2001-05-03 22:37:26 +00001364 fprintf(stderr, "Running %s\n", cmd);
1365 f = popen(cmd, "w");
Damien Millerb38eff82000-04-01 11:09:21 +10001366 if (f) {
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001367 if (do_xauth)
1368 fprintf(f, "%s %s\n", s->auth_proto,
1369 s->auth_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001370 pclose(f);
1371 } else
Ben Lindstrom5428bea2001-05-06 02:53:25 +00001372 fprintf(stderr, "Could not run %s\n",
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001373 _PATH_SSH_USER_RC);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001374 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001375 if (debug_flag)
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001376 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1377 _PATH_SSH_SYSTEM_RC);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001378 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
Damien Millerb38eff82000-04-01 11:09:21 +10001379 if (f) {
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001380 if (do_xauth)
1381 fprintf(f, "%s %s\n", s->auth_proto,
1382 s->auth_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001383 pclose(f);
1384 } else
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001385 fprintf(stderr, "Could not run %s\n",
1386 _PATH_SSH_SYSTEM_RC);
1387 } else if (do_xauth && options.xauth_location != NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +10001388 /* Add authority data to .Xauthority if appropriate. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001389 if (debug_flag) {
1390 fprintf(stderr,
1391 "Running %.100s add "
1392 "%.100s %.100s %.100s\n",
Damien Miller512bccb2002-02-05 12:11:02 +11001393 options.xauth_location, s->auth_display,
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001394 s->auth_proto, s->auth_data);
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001395 }
1396 snprintf(cmd, sizeof cmd, "%s -q -",
1397 options.xauth_location);
1398 f = popen(cmd, "w");
1399 if (f) {
Kevin Steves366298c2001-12-19 17:58:01 +00001400 fprintf(f, "add %s %s %s\n",
Damien Miller512bccb2002-02-05 12:11:02 +11001401 s->auth_display, s->auth_proto,
Kevin Steves366298c2001-12-19 17:58:01 +00001402 s->auth_data);
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001403 pclose(f);
1404 } else {
1405 fprintf(stderr, "Could not run %s\n",
1406 cmd);
Damien Millerb38eff82000-04-01 11:09:21 +10001407 }
1408 }
Damien Millerb38eff82000-04-01 11:09:21 +10001409 /* Get the last component of the shell name. */
1410 cp = strrchr(shell, '/');
1411 if (cp)
1412 cp++;
1413 else
1414 cp = shell;
1415 }
Ben Lindstromde71cda2001-03-24 00:43:26 +00001416
1417 /* restore SIGPIPE for child */
1418 signal(SIGPIPE, SIG_DFL);
1419
Damien Millerb38eff82000-04-01 11:09:21 +10001420 /*
1421 * If we have no command, execute the shell. In this case, the shell
1422 * name to be passed in argv[0] is preceded by '-' to indicate that
1423 * this is a login shell.
1424 */
1425 if (!command) {
1426 if (!options.use_login) {
1427 char buf[256];
1428
Damien Millerb38eff82000-04-01 11:09:21 +10001429 /* Start the shell. Set initial character to '-'. */
1430 buf[0] = '-';
Ben Lindstromccd8d072001-12-07 17:26:48 +00001431 strlcpy(buf + 1, cp, sizeof(buf) - 1);
Damien Millerb38eff82000-04-01 11:09:21 +10001432
1433 /* Execute the shell. */
1434 argv[0] = buf;
1435 argv[1] = NULL;
1436 execve(shell, argv, env);
1437
1438 /* Executing the shell failed. */
1439 perror(shell);
1440 exit(1);
1441
1442 } else {
1443 /* Launch login(1). */
1444
Damien Millerad833b32000-08-23 10:46:23 +10001445 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Ben Lindstrom97c677d2001-05-08 20:33:05 +00001446#ifdef LOGIN_NEEDS_TERM
Damien Miller9f0f5c62001-12-21 14:45:46 +11001447 s->term? s->term : "unknown",
Ben Lindstrom97c677d2001-05-08 20:33:05 +00001448#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +11001449 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001450
1451 /* Login couldn't be executed, die. */
1452
1453 perror("login");
1454 exit(1);
1455 }
1456 }
1457 /*
1458 * Execute the command using the user's shell. This uses the -c
1459 * option to execute the command.
1460 */
1461 argv[0] = (char *) cp;
1462 argv[1] = "-c";
1463 argv[2] = (char *) command;
1464 argv[3] = NULL;
1465 execve(shell, argv, env);
1466 perror(shell);
1467 exit(1);
1468}
1469
1470Session *
1471session_new(void)
1472{
1473 int i;
1474 static int did_init = 0;
1475 if (!did_init) {
1476 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001477 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001478 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001479 }
1480 did_init = 1;
1481 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001482 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001483 Session *s = &sessions[i];
1484 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001485 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001486 s->chanid = -1;
1487 s->ptyfd = -1;
1488 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001489 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001490 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001491 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001492 return s;
1493 }
1494 }
1495 return NULL;
1496}
1497
Ben Lindstrombba81212001-06-25 05:01:22 +00001498static void
Damien Millerb38eff82000-04-01 11:09:21 +10001499session_dump(void)
1500{
1501 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001502 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001503 Session *s = &sessions[i];
1504 debug("dump: used %d session %d %p channel %d pid %d",
1505 s->used,
1506 s->self,
1507 s,
1508 s->chanid,
1509 s->pid);
1510 }
1511}
1512
Damien Millerefb4afe2000-04-12 18:45:05 +10001513int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001514session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001515{
1516 Session *s = session_new();
1517 debug("session_open: channel %d", chanid);
1518 if (s == NULL) {
1519 error("no more sessions");
1520 return 0;
1521 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001522 s->authctxt = authctxt;
1523 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001524 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001525 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001526 debug("session_open: session %d: link with channel %d", s->self, chanid);
1527 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001528 return 1;
1529}
1530
Ben Lindstrombba81212001-06-25 05:01:22 +00001531static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001532session_by_channel(int id)
1533{
1534 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001535 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001536 Session *s = &sessions[i];
1537 if (s->used && s->chanid == id) {
1538 debug("session_by_channel: session %d channel %d", i, id);
1539 return s;
1540 }
1541 }
1542 debug("session_by_channel: unknown channel %d", id);
1543 session_dump();
1544 return NULL;
1545}
1546
Ben Lindstrombba81212001-06-25 05:01:22 +00001547static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001548session_by_pid(pid_t pid)
1549{
1550 int i;
1551 debug("session_by_pid: pid %d", pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001552 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001553 Session *s = &sessions[i];
1554 if (s->used && s->pid == pid)
1555 return s;
1556 }
1557 error("session_by_pid: unknown pid %d", pid);
1558 session_dump();
1559 return NULL;
1560}
1561
Ben Lindstrombba81212001-06-25 05:01:22 +00001562static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001563session_window_change_req(Session *s)
1564{
1565 s->col = packet_get_int();
1566 s->row = packet_get_int();
1567 s->xpixel = packet_get_int();
1568 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001569 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001570 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1571 return 1;
1572}
1573
Ben Lindstrombba81212001-06-25 05:01:22 +00001574static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001575session_pty_req(Session *s)
1576{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001577 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001578 int n_bytes;
Damien Millerefb4afe2000-04-12 18:45:05 +10001579
Ben Lindstrom49c12602001-06-13 04:37:36 +00001580 if (no_pty_flag) {
1581 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001582 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001583 }
1584 if (s->ttyfd != -1) {
1585 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001586 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001587 }
1588
Damien Millerefb4afe2000-04-12 18:45:05 +10001589 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001590
1591 if (compat20) {
1592 s->col = packet_get_int();
1593 s->row = packet_get_int();
1594 } else {
1595 s->row = packet_get_int();
1596 s->col = packet_get_int();
1597 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001598 s->xpixel = packet_get_int();
1599 s->ypixel = packet_get_int();
1600
1601 if (strcmp(s->term, "") == 0) {
1602 xfree(s->term);
1603 s->term = NULL;
1604 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001605
Damien Millerefb4afe2000-04-12 18:45:05 +10001606 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001607 debug("Allocating pty.");
Damien Millerefb4afe2000-04-12 18:45:05 +10001608 if (!pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001609 if (s->term)
1610 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001611 s->term = NULL;
1612 s->ptyfd = -1;
1613 s->ttyfd = -1;
1614 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001615 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001616 }
1617 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001618
1619 /* for SSH1 the tty modes length is not given */
1620 if (!compat20)
1621 n_bytes = packet_remaining();
1622 tty_parse_modes(s->ttyfd, &n_bytes);
1623
Damien Millerefb4afe2000-04-12 18:45:05 +10001624 /*
1625 * Add a cleanup function to clear the utmp entry and record logout
1626 * time in case we call fatal() (e.g., the connection gets closed).
1627 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001628 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001629 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001630
1631 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001632 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1633
Damien Miller48b03fc2002-01-22 23:11:40 +11001634 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001635 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001636 return 1;
1637}
1638
Ben Lindstrombba81212001-06-25 05:01:22 +00001639static int
Damien Millerbd483e72000-04-30 10:00:53 +10001640session_subsystem_req(Session *s)
1641{
Damien Millerae452462001-10-10 15:08:06 +10001642 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001643 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001644 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001645 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001646 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001647
Damien Miller48b03fc2002-01-22 23:11:40 +11001648 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001649 log("subsystem request for %s", subsys);
1650
Damien Millerf6d9e222000-06-18 14:50:44 +10001651 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001652 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1653 cmd = options.subsystem_command[i];
1654 if (stat(cmd, &st) < 0) {
1655 error("subsystem: cannot stat %s: %s", cmd,
1656 strerror(errno));
1657 break;
1658 }
1659 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001660 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001661 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001662 success = 1;
1663 }
1664 }
1665
1666 if (!success)
Damien Millerae452462001-10-10 15:08:06 +10001667 log("subsystem request for %s failed, subsystem not found",
1668 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001669
Damien Millerbd483e72000-04-30 10:00:53 +10001670 xfree(subsys);
1671 return success;
1672}
1673
Ben Lindstrombba81212001-06-25 05:01:22 +00001674static int
Damien Millerbd483e72000-04-30 10:00:53 +10001675session_x11_req(Session *s)
1676{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001677 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001678
1679 s->single_connection = packet_get_char();
1680 s->auth_proto = packet_get_string(NULL);
1681 s->auth_data = packet_get_string(NULL);
1682 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001683 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001684
Ben Lindstrom768176b2001-06-09 01:29:12 +00001685 success = session_setup_x11fwd(s);
1686 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001687 xfree(s->auth_proto);
1688 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001689 s->auth_proto = NULL;
1690 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001691 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001692 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001693}
1694
Ben Lindstrombba81212001-06-25 05:01:22 +00001695static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001696session_shell_req(Session *s)
1697{
Damien Miller48b03fc2002-01-22 23:11:40 +11001698 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001699 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001700 return 1;
1701}
1702
Ben Lindstrombba81212001-06-25 05:01:22 +00001703static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001704session_exec_req(Session *s)
1705{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001706 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001707 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001708 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001709 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001710 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001711 return 1;
1712}
1713
Ben Lindstrombba81212001-06-25 05:01:22 +00001714static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001715session_auth_agent_req(Session *s)
1716{
1717 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001718 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001719 if (no_agent_forwarding_flag) {
1720 debug("session_auth_agent_req: no_agent_forwarding_flag");
1721 return 0;
1722 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001723 if (called) {
1724 return 0;
1725 } else {
1726 called = 1;
1727 return auth_input_request_forwarding(s->pw);
1728 }
1729}
1730
Damien Millerefb4afe2000-04-12 18:45:05 +10001731void
1732session_input_channel_req(int id, void *arg)
1733{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001734 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001735 int reply;
1736 int success = 0;
1737 char *rtype;
1738 Session *s;
1739 Channel *c;
1740
1741 rtype = packet_get_string(&len);
1742 reply = packet_get_char();
1743
1744 s = session_by_channel(id);
1745 if (s == NULL)
1746 fatal("session_input_channel_req: channel %d: no session", id);
1747 c = channel_lookup(id);
1748 if (c == NULL)
1749 fatal("session_input_channel_req: channel %d: bad channel", id);
1750
1751 debug("session_input_channel_req: session %d channel %d request %s reply %d",
1752 s->self, id, rtype, reply);
1753
1754 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001755 * a session is in LARVAL state until a shell, a command
1756 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001757 */
1758 if (c->type == SSH_CHANNEL_LARVAL) {
1759 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001760 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001761 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001762 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001763 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001764 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001765 } else if (strcmp(rtype, "x11-req") == 0) {
1766 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001767 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1768 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001769 } else if (strcmp(rtype, "subsystem") == 0) {
1770 success = session_subsystem_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001771 }
1772 }
1773 if (strcmp(rtype, "window-change") == 0) {
1774 success = session_window_change_req(s);
1775 }
1776
1777 if (reply) {
1778 packet_start(success ?
1779 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1780 packet_put_int(c->remote_id);
1781 packet_send();
1782 }
1783 xfree(rtype);
1784}
1785
1786void
1787session_set_fds(Session *s, int fdin, int fdout, int fderr)
1788{
1789 if (!compat20)
1790 fatal("session_set_fds: called for proto != 2.0");
1791 /*
1792 * now that have a child and a pipe to the child,
1793 * we can activate our channel and register the fd's
1794 */
1795 if (s->chanid == -1)
1796 fatal("no channel for session %d", s->self);
1797 channel_set_fds(s->chanid,
1798 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001799 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
1800 1);
Damien Millerefb4afe2000-04-12 18:45:05 +10001801}
1802
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001803/*
1804 * Function to perform pty cleanup. Also called if we get aborted abnormally
1805 * (e.g., due to a dropped connection).
1806 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001807static void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001808session_pty_cleanup(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001809{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001810 Session *s = session;
1811
1812 if (s == NULL) {
1813 error("session_pty_cleanup: no session");
1814 return;
1815 }
1816 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001817 return;
1818
Kevin Steves43cdef32001-02-11 14:12:08 +00001819 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001820
Damien Millerb38eff82000-04-01 11:09:21 +10001821 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001822 if (s->pid != 0)
1823 record_logout(s->pid, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001824
1825 /* Release the pseudo-tty. */
1826 pty_release(s->tty);
1827
1828 /*
1829 * Close the server side of the socket pairs. We must do this after
1830 * the pty cleanup, so that another process doesn't get this pty
1831 * while we're still cleaning up.
1832 */
1833 if (close(s->ptymaster) < 0)
1834 error("close(s->ptymaster): %s", strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001835
1836 /* unlink pty from session */
1837 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001838}
Damien Millerefb4afe2000-04-12 18:45:05 +10001839
Ben Lindstrombba81212001-06-25 05:01:22 +00001840static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001841session_exit_message(Session *s, int status)
1842{
1843 Channel *c;
1844 if (s == NULL)
1845 fatal("session_close: no session");
1846 c = channel_lookup(s->chanid);
1847 if (c == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001848 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001849 s->self, s->chanid);
1850 debug("session_exit_message: session %d channel %d pid %d",
1851 s->self, s->chanid, s->pid);
1852
1853 if (WIFEXITED(status)) {
1854 channel_request_start(s->chanid,
1855 "exit-status", 0);
1856 packet_put_int(WEXITSTATUS(status));
1857 packet_send();
1858 } else if (WIFSIGNALED(status)) {
1859 channel_request_start(s->chanid,
1860 "exit-signal", 0);
1861 packet_put_int(WTERMSIG(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001862#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001863 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001864#else /* WCOREDUMP */
1865 packet_put_char(0);
1866#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001867 packet_put_cstring("");
1868 packet_put_cstring("");
1869 packet_send();
1870 } else {
1871 /* Some weird exit cause. Just exit. */
1872 packet_disconnect("wait returned status %04x.", status);
1873 }
1874
1875 /* disconnect channel */
1876 debug("session_exit_message: release channel %d", s->chanid);
1877 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001878 /*
1879 * emulate a write failure with 'chan_write_failed', nobody will be
1880 * interested in data we write.
1881 * Note that we must not call 'chan_read_failed', since there could
1882 * be some more data waiting in the pipe.
1883 */
Damien Millerbd483e72000-04-30 10:00:53 +10001884 if (c->ostate != CHAN_OUTPUT_CLOSED)
1885 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001886 s->chanid = -1;
1887}
1888
Ben Lindstrombba81212001-06-25 05:01:22 +00001889static void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001890session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001891{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001892 debug("session_close: session %d pid %d", s->self, s->pid);
1893 if (s->ttyfd != -1) {
1894 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1895 session_pty_cleanup(s);
1896 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001897 if (s->term)
1898 xfree(s->term);
1899 if (s->display)
1900 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001901 if (s->auth_display)
1902 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001903 if (s->auth_data)
1904 xfree(s->auth_data);
1905 if (s->auth_proto)
1906 xfree(s->auth_proto);
1907 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001908 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001909}
1910
1911void
1912session_close_by_pid(pid_t pid, int status)
1913{
1914 Session *s = session_by_pid(pid);
1915 if (s == NULL) {
Ben Lindstrom7a837222001-06-13 19:23:32 +00001916 debug("session_close_by_pid: no session for pid %d", pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001917 return;
1918 }
1919 if (s->chanid != -1)
1920 session_exit_message(s, status);
1921 session_close(s);
1922}
1923
1924/*
1925 * this is called when a channel dies before
1926 * the session 'child' itself dies
1927 */
1928void
1929session_close_by_channel(int id, void *arg)
1930{
1931 Session *s = session_by_channel(id);
1932 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001933 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001934 return;
1935 }
Damien Miller3ec27592001-10-12 11:35:04 +10001936 debug("session_close_by_channel: channel %d child %d", id, s->pid);
1937 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10001938 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10001939 /*
1940 * delay detach of session, but release pty, since
1941 * the fd's to the child are already closed
1942 */
1943 if (s->ttyfd != -1) {
1944 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1945 session_pty_cleanup(s);
1946 }
Damien Miller3ec27592001-10-12 11:35:04 +10001947 return;
1948 }
1949 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10001950 channel_cancel_cleanup(s->chanid);
1951 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10001952 session_close(s);
1953}
1954
1955void
Damien Miller3ec27592001-10-12 11:35:04 +10001956session_destroy_all(void)
Damien Miller52b77be2001-10-10 15:14:37 +10001957{
1958 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001959 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10001960 Session *s = &sessions[i];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001961 if (s->used)
Damien Miller52b77be2001-10-10 15:14:37 +10001962 session_close(s);
Damien Miller52b77be2001-10-10 15:14:37 +10001963 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001964}
1965
Ben Lindstrombba81212001-06-25 05:01:22 +00001966static char *
Damien Millere247cc42000-05-07 12:03:14 +10001967session_tty_list(void)
1968{
1969 static char buf[1024];
1970 int i;
1971 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11001972 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10001973 Session *s = &sessions[i];
1974 if (s->used && s->ttyfd != -1) {
1975 if (buf[0] != '\0')
1976 strlcat(buf, ",", sizeof buf);
1977 strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
1978 }
1979 }
1980 if (buf[0] == '\0')
1981 strlcpy(buf, "notty", sizeof buf);
1982 return buf;
1983}
1984
1985void
1986session_proctitle(Session *s)
1987{
1988 if (s->pw == NULL)
1989 error("no user for session %d", s->self);
1990 else
1991 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
1992}
1993
Ben Lindstrom768176b2001-06-09 01:29:12 +00001994int
1995session_setup_x11fwd(Session *s)
1996{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001997 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00001998 char display[512], auth_display[512];
1999 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002000
2001 if (no_x11_forwarding_flag) {
2002 packet_send_debug("X11 forwarding disabled in user configuration file.");
2003 return 0;
2004 }
2005 if (!options.x11_forwarding) {
2006 debug("X11 forwarding disabled in server configuration file.");
2007 return 0;
2008 }
2009 if (!options.xauth_location ||
2010 (stat(options.xauth_location, &st) == -1)) {
2011 packet_send_debug("No xauth program; cannot forward with spoofing.");
2012 return 0;
2013 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002014 if (options.use_login) {
2015 packet_send_debug("X11 forwarding disabled; "
2016 "not compatible with UseLogin=yes.");
2017 return 0;
2018 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002019 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002020 debug("X11 display already set.");
2021 return 0;
2022 }
Kevin Steves366298c2001-12-19 17:58:01 +00002023 s->display_number = x11_create_display_inet(options.x11_display_offset,
Damien Millere7378562001-12-21 14:58:35 +11002024 options.gateway_ports, s->single_connection);
Kevin Steves366298c2001-12-19 17:58:01 +00002025 if (s->display_number == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002026 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002027 return 0;
2028 }
Kevin Steves366298c2001-12-19 17:58:01 +00002029
2030 /* Set up a suitable value for the DISPLAY variable. */
2031 if (gethostname(hostname, sizeof(hostname)) < 0)
2032 fatal("gethostname: %.100s", strerror(errno));
2033 /*
2034 * auth_display must be used as the displayname when the
2035 * authorization entry is added with xauth(1). This will be
2036 * different than the DISPLAY string for localhost displays.
2037 */
Kevin Steves366298c2001-12-19 17:58:01 +00002038 if (!options.gateway_ports) {
Kevin Steves366298c2001-12-19 17:58:01 +00002039 snprintf(display, sizeof display, "localhost:%d.%d",
2040 s->display_number, s->screen);
Damien Miller512bccb2002-02-05 12:11:02 +11002041 snprintf(auth_display, sizeof auth_display, "unix:%d.%d",
2042 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002043 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002044 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002045 } else {
2046#ifdef IPADDR_IN_DISPLAY
2047 struct hostent *he;
2048 struct in_addr my_addr;
2049
2050 he = gethostbyname(hostname);
2051 if (he == NULL) {
2052 error("Can't get IP address for X11 DISPLAY.");
2053 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2054 return 0;
2055 }
2056 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2057 snprintf(display, sizeof display, "%.50s:%d.%d", inet_ntoa(my_addr),
2058 s->display_number, s->screen);
2059#else
2060 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
2061 s->display_number, s->screen);
2062#endif
2063 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002064 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002065 }
2066
Ben Lindstrom768176b2001-06-09 01:29:12 +00002067 return 1;
2068}
2069
Ben Lindstrombba81212001-06-25 05:01:22 +00002070static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002071do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002072{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002073 server_loop2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10002074}