blob: 20e6a889f0bcc7762de383ace5e0be8b970da141 [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 Lindstromc447fee2002-04-02 20:35:35 +000036RCSID("$OpenBSD: session.c,v 1.134 2002/03/29 18:59:31 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 Lindstromb31783d2001-03-22 02:02:12 +0000114void
115do_authenticated(Authctxt *authctxt)
116{
117 /*
118 * Cancel the alarm we set to limit the time taken for
119 * authentication.
120 */
121 alarm(0);
122 if (startup_pipe != -1) {
123 close(startup_pipe);
124 startup_pipe = -1;
125 }
Damien Millere49d0962001-11-13 23:46:18 +1100126#ifdef WITH_AIXAUTHENTICATE
127 /* We don't have a pty yet, so just label the line as "ssh" */
128 if (loginsuccess(authctxt->user,
Damien Millerf3451a22002-02-05 12:40:46 +1100129 get_canonical_hostname(options.verify_reverse_mapping),
Damien Millere49d0962001-11-13 23:46:18 +1100130 "ssh", &aixloginmsg) < 0)
131 aixloginmsg = NULL;
132#endif /* WITH_AIXAUTHENTICATE */
133
Ben Lindstromb31783d2001-03-22 02:02:12 +0000134 /* setup the channel layer */
135 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
136 channel_permit_all_opens();
137
138 if (compat20)
139 do_authenticated2(authctxt);
140 else
141 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000142
Ben Lindstrom2bcdf062001-06-13 04:41:41 +0000143 /* remove agent socket */
Ben Lindstrom838394c2001-06-09 01:11:59 +0000144 if (auth_get_socket_name())
Ben Lindstrom983c0982001-06-09 01:20:06 +0000145 auth_sock_cleanup_proc(authctxt->pw);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000146#ifdef KRB4
147 if (options.kerberos_ticket_cleanup)
148 krb4_cleanup_proc(authctxt);
149#endif
150#ifdef KRB5
151 if (options.kerberos_ticket_cleanup)
152 krb5_cleanup_proc(authctxt);
153#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000154}
155
Damien Millerb38eff82000-04-01 11:09:21 +1000156/*
Damien Millerb38eff82000-04-01 11:09:21 +1000157 * Prepares for an interactive session. This is called after the user has
158 * been successfully authenticated. During this message exchange, pseudo
159 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
160 * are requested, etc.
161 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000163do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000164{
165 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000166 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100167 int success, type, screen_flag;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000168 int compression_level = 0, enable_compression_after_reply = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000169 u_int proto_len, data_len, dlen;
Damien Millerb38eff82000-04-01 11:09:21 +1000170
171 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000172 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000173 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000174
Damien Millerb38eff82000-04-01 11:09:21 +1000175 /*
176 * We stay in this loop until the client requests to execute a shell
177 * or a command.
178 */
179 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000180 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000181
182 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100183 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000184
185 /* Process the packet. */
186 switch (type) {
187 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000188 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100189 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000190 if (compression_level < 1 || compression_level > 9) {
191 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100192 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000193 break;
194 }
195 /* Enable compression after we have responded with SUCCESS. */
196 enable_compression_after_reply = 1;
197 success = 1;
198 break;
199
200 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000201 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000202 break;
203
204 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000205 s->auth_proto = packet_get_string(&proto_len);
206 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000207
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000208 screen_flag = packet_get_protocol_flags() &
209 SSH_PROTOFLAG_SCREEN_NUMBER;
210 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
211
212 if (packet_remaining() == 4) {
213 if (!screen_flag)
214 debug2("Buggy client: "
215 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000216 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000217 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000218 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000219 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100220 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000221 success = session_setup_x11fwd(s);
222 if (!success) {
223 xfree(s->auth_proto);
224 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000225 s->auth_proto = NULL;
226 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000227 }
Damien Millerb38eff82000-04-01 11:09:21 +1000228 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000229
230 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
231 if (no_agent_forwarding_flag || compat13) {
232 debug("Authentication agent forwarding not permitted for this authentication.");
233 break;
234 }
235 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000236 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000237 break;
238
239 case SSH_CMSG_PORT_FORWARD_REQUEST:
240 if (no_port_forwarding_flag) {
241 debug("Port forwarding not permitted for this authentication.");
242 break;
243 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100244 if (!options.allow_tcp_forwarding) {
245 debug("Port forwarding not permitted.");
246 break;
247 }
Damien Millerb38eff82000-04-01 11:09:21 +1000248 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000249 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000250 success = 1;
251 break;
252
253 case SSH_CMSG_MAX_PACKET_SIZE:
254 if (packet_set_maxsize(packet_get_int()) > 0)
255 success = 1;
256 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100257
Ben Lindstromec95ed92001-07-04 04:21:14 +0000258#if defined(AFS) || defined(KRB5)
259 case SSH_CMSG_HAVE_KERBEROS_TGT:
260 if (!options.kerberos_tgt_passing) {
261 verbose("Kerberos TGT passing disabled.");
262 } else {
263 char *kdata = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100264 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100265
Ben Lindstromec95ed92001-07-04 04:21:14 +0000266 /* XXX - 0x41, see creds_to_radix version */
267 if (kdata[0] != 0x41) {
268#ifdef KRB5
269 krb5_data tgt;
270 tgt.data = kdata;
271 tgt.length = dlen;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100272
Ben Lindstromec95ed92001-07-04 04:21:14 +0000273 if (auth_krb5_tgt(s->authctxt, &tgt))
274 success = 1;
275 else
276 verbose("Kerberos v5 TGT refused for %.100s", s->authctxt->user);
277#endif /* KRB5 */
278 } else {
279#ifdef AFS
280 if (auth_krb4_tgt(s->authctxt, kdata))
281 success = 1;
282 else
283 verbose("Kerberos v4 TGT refused for %.100s", s->authctxt->user);
284#endif /* AFS */
285 }
286 xfree(kdata);
287 }
288 break;
289#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100290
Ben Lindstromec95ed92001-07-04 04:21:14 +0000291#ifdef AFS
292 case SSH_CMSG_HAVE_AFS_TOKEN:
293 if (!options.afs_token_passing || !k_hasafs()) {
294 verbose("AFS token passing disabled.");
295 } else {
296 /* Accept AFS token. */
297 char *token = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100298 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100299
Ben Lindstromec95ed92001-07-04 04:21:14 +0000300 if (auth_afs_token(s->authctxt, token))
301 success = 1;
302 else
303 verbose("AFS token refused for %.100s",
304 s->authctxt->user);
305 xfree(token);
306 }
307 break;
308#endif /* AFS */
Damien Millerb38eff82000-04-01 11:09:21 +1000309
310 case SSH_CMSG_EXEC_SHELL:
311 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000312 if (type == SSH_CMSG_EXEC_CMD) {
313 command = packet_get_string(&dlen);
314 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000315 do_exec(s, command);
316 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000317 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000318 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000319 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100320 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000321 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000322 return;
323
324 default:
325 /*
326 * Any unknown messages in this phase are ignored,
327 * and a failure message is returned.
328 */
329 log("Unknown packet type received after authentication: %d", type);
330 }
331 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
332 packet_send();
333 packet_write_wait();
334
335 /* Enable compression now that we have replied if appropriate. */
336 if (enable_compression_after_reply) {
337 enable_compression_after_reply = 0;
338 packet_start_compression(compression_level);
339 }
340 }
341}
342
343/*
344 * This is called to fork and execute a command when we have no tty. This
345 * will call do_child from the child, and server_loop from the parent after
346 * setting up file descriptors and such.
347 */
Damien Miller4af51302000-04-16 11:18:38 +1000348void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000349do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000350{
351 int pid;
352
353#ifdef USE_PIPES
354 int pin[2], pout[2], perr[2];
355 /* Allocate pipes for communicating with the program. */
356 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
357 packet_disconnect("Could not create pipes: %.100s",
358 strerror(errno));
359#else /* USE_PIPES */
360 int inout[2], err[2];
361 /* Uses socket pairs to communicate with the program. */
362 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
363 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
364 packet_disconnect("Could not create socket pairs: %.100s",
365 strerror(errno));
366#endif /* USE_PIPES */
367 if (s == NULL)
368 fatal("do_exec_no_pty: no session");
369
Damien Millere247cc42000-05-07 12:03:14 +1000370 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000371
Damien Millerc5946332001-02-28 11:46:11 +1100372#if defined(USE_PAM)
Damien Miller665af9c2001-06-27 09:34:15 +1000373 do_pam_session(s->pw->pw_name, NULL);
Damien Millerf9e93002001-03-27 16:12:24 +1000374 do_pam_setcred(1);
Damien Millerc3aa3dd2001-10-28 22:34:52 +1100375 if (is_pam_password_change_required())
376 packet_disconnect("Password change required but no "
377 "TTY available");
Kevin Stevesff793a22001-02-21 16:36:51 +0000378#endif /* USE_PAM */
379
Damien Millerb38eff82000-04-01 11:09:21 +1000380 /* Fork the child. */
381 if ((pid = fork()) == 0) {
382 /* Child. Reinitialize the log since the pid has changed. */
383 log_init(__progname, options.log_level, options.log_facility, log_stderr);
384
385 /*
386 * Create a new session and process group since the 4.4BSD
387 * setlogin() affects the entire process group.
388 */
389 if (setsid() < 0)
390 error("setsid failed: %.100s", strerror(errno));
391
392#ifdef USE_PIPES
393 /*
394 * Redirect stdin. We close the parent side of the socket
395 * pair, and make the child side the standard input.
396 */
397 close(pin[1]);
398 if (dup2(pin[0], 0) < 0)
399 perror("dup2 stdin");
400 close(pin[0]);
401
402 /* Redirect stdout. */
403 close(pout[0]);
404 if (dup2(pout[1], 1) < 0)
405 perror("dup2 stdout");
406 close(pout[1]);
407
408 /* Redirect stderr. */
409 close(perr[0]);
410 if (dup2(perr[1], 2) < 0)
411 perror("dup2 stderr");
412 close(perr[1]);
413#else /* USE_PIPES */
414 /*
415 * Redirect stdin, stdout, and stderr. Stdin and stdout will
416 * use the same socket, as some programs (particularly rdist)
417 * seem to depend on it.
418 */
419 close(inout[1]);
420 close(err[1]);
421 if (dup2(inout[0], 0) < 0) /* stdin */
422 perror("dup2 stdin");
423 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
424 perror("dup2 stdout");
425 if (dup2(err[0], 2) < 0) /* stderr */
426 perror("dup2 stderr");
427#endif /* USE_PIPES */
428
429 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000430 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000431 /* NOTREACHED */
432 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100433#ifdef HAVE_CYGWIN
434 if (is_winnt)
435 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
436#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000437 if (pid < 0)
438 packet_disconnect("fork failed: %.100s", strerror(errno));
439 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000440 /* Set interactive/non-interactive mode. */
441 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000442#ifdef USE_PIPES
443 /* We are the parent. Close the child sides of the pipes. */
444 close(pin[0]);
445 close(pout[1]);
446 close(perr[1]);
447
Damien Millerefb4afe2000-04-12 18:45:05 +1000448 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000449 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000450 } else {
451 /* Enter the interactive session. */
452 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000453 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000454 }
Damien Millerb38eff82000-04-01 11:09:21 +1000455#else /* USE_PIPES */
456 /* We are the parent. Close the child sides of the socket pairs. */
457 close(inout[0]);
458 close(err[0]);
459
460 /*
461 * Enter the interactive session. Note: server_loop must be able to
462 * handle the case that fdin and fdout are the same.
463 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000464 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000465 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000466 } else {
467 server_loop(pid, inout[1], inout[1], err[1]);
468 /* server_loop has closed inout[1] and err[1]. */
469 }
Damien Millerb38eff82000-04-01 11:09:21 +1000470#endif /* USE_PIPES */
471}
472
473/*
474 * This is called to fork and execute a command when we have a tty. This
475 * will call do_child from the child, and server_loop from the parent after
476 * setting up file descriptors, controlling tty, updating wtmp, utmp,
477 * lastlog, and other such operations.
478 */
Damien Miller4af51302000-04-16 11:18:38 +1000479void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000480do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000481{
Damien Millerb38eff82000-04-01 11:09:21 +1000482 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000483 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000484
485 if (s == NULL)
486 fatal("do_exec_pty: no session");
487 ptyfd = s->ptyfd;
488 ttyfd = s->ttyfd;
489
Damien Millerc5946332001-02-28 11:46:11 +1100490#if defined(USE_PAM)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000491 do_pam_session(s->pw->pw_name, s->tty);
Damien Millerf9e93002001-03-27 16:12:24 +1000492 do_pam_setcred(1);
Damien Miller5a761312001-02-27 09:28:23 +1100493#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000494
Damien Millerb38eff82000-04-01 11:09:21 +1000495 /* Fork the child. */
496 if ((pid = fork()) == 0) {
Ben Lindstrombddd5512001-07-04 04:53:53 +0000497
Damien Miller942da032000-08-18 13:59:06 +1000498 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000499 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000500 /* Close the master side of the pseudo tty. */
501 close(ptyfd);
502
503 /* Make the pseudo tty our controlling tty. */
504 pty_make_controlling_tty(&ttyfd, s->tty);
505
Damien Miller9c751422001-10-10 15:02:46 +1000506 /* Redirect stdin/stdout/stderr from the pseudo tty. */
507 if (dup2(ttyfd, 0) < 0)
508 error("dup2 stdin: %s", strerror(errno));
509 if (dup2(ttyfd, 1) < 0)
510 error("dup2 stdout: %s", strerror(errno));
511 if (dup2(ttyfd, 2) < 0)
512 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000513
514 /* Close the extra descriptor for the pseudo tty. */
515 close(ttyfd);
516
Damien Miller942da032000-08-18 13:59:06 +1000517 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000518#ifndef HAVE_OSF_SIA
Damien Miller69b69aa2000-10-28 14:19:58 +1100519 if (!(options.use_login && command == NULL))
520 do_login(s, command);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000521# ifdef LOGIN_NEEDS_UTMPX
522 else
523 do_pre_login(s);
524# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000525#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000526
Damien Millerb38eff82000-04-01 11:09:21 +1000527 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000528 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000529 /* NOTREACHED */
530 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100531#ifdef HAVE_CYGWIN
532 if (is_winnt)
533 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
534#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000535 if (pid < 0)
536 packet_disconnect("fork failed: %.100s", strerror(errno));
537 s->pid = pid;
538
539 /* Parent. Close the slave side of the pseudo tty. */
540 close(ttyfd);
541
542 /*
543 * Create another descriptor of the pty master side for use as the
544 * standard input. We could use the original descriptor, but this
545 * simplifies code in server_loop. The descriptor is bidirectional.
546 */
547 fdout = dup(ptyfd);
548 if (fdout < 0)
549 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
550
551 /* we keep a reference to the pty master */
552 ptymaster = dup(ptyfd);
553 if (ptymaster < 0)
554 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
555 s->ptymaster = ptymaster;
556
557 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000558 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000559 if (compat20) {
560 session_set_fds(s, ptyfd, fdout, -1);
561 } else {
562 server_loop(pid, ptyfd, fdout, -1);
563 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000564 }
Damien Millerb38eff82000-04-01 11:09:21 +1000565}
566
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000567#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000568static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000569do_pre_login(Session *s)
570{
571 socklen_t fromlen;
572 struct sockaddr_storage from;
573 pid_t pid = getpid();
574
575 /*
576 * Get IP address of client. If the connection is not a socket, let
577 * the address be 0.0.0.0.
578 */
579 memset(&from, 0, sizeof(from));
580 if (packet_connection_is_on_socket()) {
581 fromlen = sizeof(from);
582 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100583 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000584 debug("getpeername: %.100s", strerror(errno));
585 fatal_cleanup();
586 }
587 }
588
589 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Millerf3451a22002-02-05 12:40:46 +1100590 get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping),
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000591 (struct sockaddr *)&from);
592}
593#endif
594
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000595/*
596 * This is called to fork and execute a command. If another command is
597 * to be forced, execute that instead.
598 */
599void
600do_exec(Session *s, const char *command)
601{
602 if (forced_command) {
603 original_command = command;
604 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000605 debug("Forced command '%.900s'", command);
606 }
607
608 if (s->ttyfd != -1)
609 do_exec_pty(s, command);
610 else
611 do_exec_no_pty(s, command);
612
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000613 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000614}
615
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000616
Damien Miller942da032000-08-18 13:59:06 +1000617/* administrative, login(1)-like work */
618void
Damien Miller69b69aa2000-10-28 14:19:58 +1100619do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000620{
Damien Miller942da032000-08-18 13:59:06 +1000621 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000622 socklen_t fromlen;
623 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000624 struct passwd * pw = s->pw;
625 pid_t pid = getpid();
626
627 /*
628 * Get IP address of client. If the connection is not a socket, let
629 * the address be 0.0.0.0.
630 */
631 memset(&from, 0, sizeof(from));
632 if (packet_connection_is_on_socket()) {
633 fromlen = sizeof(from);
634 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000635 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000636 debug("getpeername: %.100s", strerror(errno));
637 fatal_cleanup();
638 }
639 }
640
641 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000642 if (!use_privsep)
643 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
644 get_remote_name_or_ip(utmp_len,
645 options.verify_reverse_mapping),
646 (struct sockaddr *)&from);
Damien Miller942da032000-08-18 13:59:06 +1000647
Kevin Steves092f2ef2000-10-14 13:36:13 +0000648#ifdef USE_PAM
649 /*
650 * If password change is needed, do it now.
651 * This needs to occur before the ~/.hushlogin check.
652 */
Damien Miller646aa602001-02-15 11:51:32 +1100653 if (is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000654 print_pam_messages();
655 do_pam_chauthtok();
656 }
657#endif
658
Damien Millercf205e82001-04-16 18:29:15 +1000659 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000660 return;
661
662#ifdef USE_PAM
Damien Miller646aa602001-02-15 11:51:32 +1100663 if (!is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000664 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000665#endif /* USE_PAM */
666#ifdef WITH_AIXAUTHENTICATE
667 if (aixloginmsg && *aixloginmsg)
668 printf("%s\n", aixloginmsg);
669#endif /* WITH_AIXAUTHENTICATE */
670
Ben Lindstromc447fee2002-04-02 20:35:35 +0000671 if (options.print_lastlog && s->last_login_time != 0) {
672 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000673 if (strchr(time_string, '\n'))
674 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000675 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000676 printf("Last login: %s\r\n", time_string);
677 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000678 printf("Last login: %s from %s\r\n", time_string,
679 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000680 }
Damien Millercf205e82001-04-16 18:29:15 +1000681
682 do_motd();
683}
684
685/*
686 * Display the message of the day.
687 */
688void
689do_motd(void)
690{
691 FILE *f;
692 char buf[256];
693
Damien Miller942da032000-08-18 13:59:06 +1000694 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000695#ifdef HAVE_LOGIN_CAP
696 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
697 "/etc/motd"), "r");
698#else
Damien Miller942da032000-08-18 13:59:06 +1000699 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000700#endif
Damien Miller942da032000-08-18 13:59:06 +1000701 if (f) {
702 while (fgets(buf, sizeof(buf), f))
703 fputs(buf, stdout);
704 fclose(f);
705 }
706 }
707}
708
Kevin Steves8f63caa2001-07-04 18:23:02 +0000709
710/*
711 * Check for quiet login, either .hushlogin or command given.
712 */
713int
714check_quietlogin(Session *s, const char *command)
715{
716 char buf[256];
717 struct passwd *pw = s->pw;
718 struct stat st;
719
720 /* Return 1 if .hushlogin exists or a command given. */
721 if (command != NULL)
722 return 1;
723 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
724#ifdef HAVE_LOGIN_CAP
725 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
726 return 1;
727#else
728 if (stat(buf, &st) >= 0)
729 return 1;
730#endif
731 return 0;
732}
733
Damien Millerb38eff82000-04-01 11:09:21 +1000734/*
735 * Sets the value of the given variable in the environment. If the variable
736 * already exists, its value is overriden.
737 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000738static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000739child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100740 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000741{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000742 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000743 char **env;
744
745 /*
746 * Find the slot where the value should be stored. If the variable
747 * already exists, we reuse the slot; otherwise we append a new slot
748 * at the end of the array, expanding if necessary.
749 */
750 env = *envp;
751 namelen = strlen(name);
752 for (i = 0; env[i]; i++)
753 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
754 break;
755 if (env[i]) {
756 /* Reuse the slot. */
757 xfree(env[i]);
758 } else {
759 /* New variable. Expand if necessary. */
760 if (i >= (*envsizep) - 1) {
761 (*envsizep) += 50;
762 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
763 }
764 /* Need to set the NULL pointer at end of array beyond the new slot. */
765 env[i + 1] = NULL;
766 }
767
768 /* Allocate space and format the variable in the appropriate slot. */
769 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
770 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
771}
772
773/*
774 * Reads environment variables from the given file and adds/overrides them
775 * into the environment. If the file does not exist, this does nothing.
776 * Otherwise, it must consist of empty lines, comments (line starts with '#')
777 * and assignments of the form name=value. No other forms are allowed.
778 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000779static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000780read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100781 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000782{
783 FILE *f;
784 char buf[4096];
785 char *cp, *value;
786
787 f = fopen(filename, "r");
788 if (!f)
789 return;
790
791 while (fgets(buf, sizeof(buf), f)) {
792 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
793 ;
794 if (!*cp || *cp == '#' || *cp == '\n')
795 continue;
796 if (strchr(cp, '\n'))
797 *strchr(cp, '\n') = '\0';
798 value = strchr(cp, '=');
799 if (value == NULL) {
800 fprintf(stderr, "Bad line in %.100s: %.200s\n", filename, buf);
801 continue;
802 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000803 /*
804 * Replace the equals sign by nul, and advance value to
805 * the value string.
806 */
Damien Millerb38eff82000-04-01 11:09:21 +1000807 *value = '\0';
808 value++;
809 child_set_env(env, envsize, cp, value);
810 }
811 fclose(f);
812}
813
Damien Millerbb9ffc12002-01-08 10:59:32 +1100814void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100816 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000817 int i;
818
Damien Millerbb9ffc12002-01-08 10:59:32 +1100819 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000820 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000821
Damien Millerbb9ffc12002-01-08 10:59:32 +1100822 for(i = 0; source[i] != NULL; i++) {
823 var_name = xstrdup(source[i]);
824 if ((var_val = strstr(var_name, "=")) == NULL) {
825 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000826 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000827 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100828 *var_val++ = '\0';
829
830 debug3("Copy environment: %s=%s", var_name, var_val);
831 child_set_env(env, envsize, var_name, var_val);
832
833 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000834 }
835}
Damien Millercb5e44a2000-09-29 12:12:36 +1100836
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000837static char **
838do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000839{
Damien Millerb38eff82000-04-01 11:09:21 +1000840 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000841 u_int i, envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000842 char **env;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000843 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000844
Damien Millerb38eff82000-04-01 11:09:21 +1000845 /* Initialize the environment. */
846 envsize = 100;
847 env = xmalloc(envsize * sizeof(char *));
848 env[0] = NULL;
849
Damien Millerbac2d8a2000-09-05 16:13:06 +1100850#ifdef HAVE_CYGWIN
851 /*
852 * The Windows environment contains some setting which are
853 * important for a running system. They must not be dropped.
854 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100855 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100856#endif
857
Damien Millerb38eff82000-04-01 11:09:21 +1000858 if (!options.use_login) {
859 /* Set basic environment. */
860 child_set_env(&env, &envsize, "USER", pw->pw_name);
861 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
862 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +1000863#ifdef HAVE_LOGIN_CAP
864 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH);
865 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +1100866#else /* HAVE_LOGIN_CAP */
867# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +1100868 /*
869 * There's no standard path on Windows. The path contains
870 * important components pointing to the system directories,
871 * needed for loading shared libraries. So the path better
872 * remains intact here.
873 */
Damien Millerb38eff82000-04-01 11:09:21 +1000874 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millercb5e44a2000-09-29 12:12:36 +1100875# endif /* HAVE_CYGWIN */
876#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +1000877
878 snprintf(buf, sizeof buf, "%.200s/%.50s",
879 _PATH_MAILDIR, pw->pw_name);
880 child_set_env(&env, &envsize, "MAIL", buf);
881
882 /* Normal systems set SHELL by default. */
883 child_set_env(&env, &envsize, "SHELL", shell);
884 }
885 if (getenv("TZ"))
886 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
887
888 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +0000889 if (!options.use_login) {
890 while (custom_environment) {
891 struct envstring *ce = custom_environment;
892 char *s = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000893
Ben Lindstrom38b951c2001-12-06 17:47:47 +0000894 for (i = 0; s[i] != '=' && s[i]; i++)
895 ;
896 if (s[i] == '=') {
897 s[i] = 0;
898 child_set_env(&env, &envsize, s, s + i + 1);
899 }
900 custom_environment = ce->next;
901 xfree(ce->s);
902 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +1000903 }
Damien Millerb38eff82000-04-01 11:09:21 +1000904 }
905
906 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000907 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +1000908 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
909
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000910 if (s->ttyfd != -1)
911 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
912 if (s->term)
913 child_set_env(&env, &envsize, "TERM", s->term);
914 if (s->display)
915 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +1100916 if (original_command)
917 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
918 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +1000919
920#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +0000921 {
922 char *cp;
923
924 if ((cp = getenv("AUTHSTATE")) != NULL)
925 child_set_env(&env, &envsize, "AUTHSTATE", cp);
926 if ((cp = getenv("KRB5CCNAME")) != NULL)
927 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
928 read_environment_file(&env, &envsize, "/etc/environment");
929 }
Damien Millerb38eff82000-04-01 11:09:21 +1000930#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000931#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +0000932 if (s->authctxt->krb4_ticket_file)
933 child_set_env(&env, &envsize, "KRBTKFILE",
934 s->authctxt->krb4_ticket_file);
935#endif
936#ifdef KRB5
937 if (s->authctxt->krb5_ticket_file)
938 child_set_env(&env, &envsize, "KRB5CCNAME",
939 s->authctxt->krb5_ticket_file);
940#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000941#ifdef USE_PAM
942 /* Pull in any environment variables that may have been set by PAM. */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100943 copy_environment(fetch_pam_environment(), &env, &envsize);
Damien Millerb38eff82000-04-01 11:09:21 +1000944#endif /* USE_PAM */
945
Damien Millerb38eff82000-04-01 11:09:21 +1000946 if (auth_get_socket_name() != NULL)
947 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100948 auth_get_socket_name());
Damien Millerb38eff82000-04-01 11:09:21 +1000949
950 /* read $HOME/.ssh/environment. */
951 if (!options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +1000952 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
953 pw->pw_dir);
Damien Millerb38eff82000-04-01 11:09:21 +1000954 read_environment_file(&env, &envsize, buf);
955 }
956 if (debug_flag) {
957 /* dump the environment */
958 fprintf(stderr, "Environment:\n");
959 for (i = 0; env[i]; i++)
960 fprintf(stderr, " %.200s\n", env[i]);
961 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000962 return env;
963}
964
965/*
966 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
967 * first in this order).
968 */
969static void
970do_rc_files(Session *s, const char *shell)
971{
972 FILE *f = NULL;
973 char cmd[1024];
974 int do_xauth;
975 struct stat st;
976
977 do_xauth =
978 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
979
980 /* ignore _PATH_SSH_USER_RC for subsystems */
981 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
982 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
983 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
984 if (debug_flag)
985 fprintf(stderr, "Running %s\n", cmd);
986 f = popen(cmd, "w");
987 if (f) {
988 if (do_xauth)
989 fprintf(f, "%s %s\n", s->auth_proto,
990 s->auth_data);
991 pclose(f);
992 } else
993 fprintf(stderr, "Could not run %s\n",
994 _PATH_SSH_USER_RC);
995 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
996 if (debug_flag)
997 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
998 _PATH_SSH_SYSTEM_RC);
999 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1000 if (f) {
1001 if (do_xauth)
1002 fprintf(f, "%s %s\n", s->auth_proto,
1003 s->auth_data);
1004 pclose(f);
1005 } else
1006 fprintf(stderr, "Could not run %s\n",
1007 _PATH_SSH_SYSTEM_RC);
1008 } else if (do_xauth && options.xauth_location != NULL) {
1009 /* Add authority data to .Xauthority if appropriate. */
1010 if (debug_flag) {
1011 fprintf(stderr,
1012 "Running %.100s add "
1013 "%.100s %.100s %.100s\n",
1014 options.xauth_location, s->auth_display,
1015 s->auth_proto, s->auth_data);
1016 }
1017 snprintf(cmd, sizeof cmd, "%s -q -",
1018 options.xauth_location);
1019 f = popen(cmd, "w");
1020 if (f) {
1021 fprintf(f, "add %s %s %s\n",
1022 s->auth_display, s->auth_proto,
1023 s->auth_data);
1024 pclose(f);
1025 } else {
1026 fprintf(stderr, "Could not run %s\n",
1027 cmd);
1028 }
1029 }
1030}
1031
1032static void
1033do_nologin(struct passwd *pw)
1034{
1035 FILE *f = NULL;
1036 char buf[1024];
1037
1038#ifdef HAVE_LOGIN_CAP
1039 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1040 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1041 _PATH_NOLOGIN), "r");
1042#else
1043 if (pw->pw_uid)
1044 f = fopen(_PATH_NOLOGIN, "r");
1045#endif
1046 if (f) {
1047 /* /etc/nologin exists. Print its contents and exit. */
1048 while (fgets(buf, sizeof(buf), f))
1049 fputs(buf, stderr);
1050 fclose(f);
1051 exit(254);
1052 }
1053}
1054
1055/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001056void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001057do_setusercontext(struct passwd *pw)
1058{
1059#ifdef HAVE_CYGWIN
Ben Lindstrom3107efc2002-02-21 15:37:02 +00001060 if (is_winnt) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001061#else /* HAVE_CYGWIN */
1062 if (getuid() == 0 || geteuid() == 0) {
1063#endif /* HAVE_CYGWIN */
1064#ifdef HAVE_GETUSERATTR
1065 set_limits_from_userattr(pw->pw_name);
1066#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
1074# 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
1080 if (setlogin(pw->pw_name) < 0)
1081 error("setlogin failed: %s", strerror(errno));
1082 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();
1092# ifdef USE_PAM
1093 /*
1094 * PAM credentials may take the form of supplementary groups.
1095 * These will have been wiped by the above initgroups() call.
1096 * Reestablish them here.
1097 */
1098 do_pam_setcred(0);
1099# endif /* USE_PAM */
1100# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1101 irix_setusercontext(pw);
1102# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001103 /* Permanently switch to the desired uid. */
1104 permanently_set_uid(pw);
1105#endif
1106 }
1107 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1108 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1109}
1110
Ben Lindstrom08105192002-03-22 02:50:06 +00001111static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001112launch_login(struct passwd *pw, const char *hostname)
1113{
1114 /* Launch login(1). */
1115
1116 execl("/usr/bin/login", "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001117#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001118 (s->term ? s->term : "unknown"),
1119#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001120#ifdef LOGIN_NO_ENDOPT
1121 "-p", "-f", pw->pw_name, (char *)NULL);
1122#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001123 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001124#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001125
1126 /* Login couldn't be executed, die. */
1127
1128 perror("login");
1129 exit(1);
1130}
1131
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001132/*
1133 * Performs common processing for the child, such as setting up the
1134 * environment, closing extra file descriptors, setting the user and group
1135 * ids, and executing the command or shell.
1136 */
1137void
1138do_child(Session *s, const char *command)
1139{
1140 extern char **environ;
1141 char **env;
1142 char *argv[10];
1143 const char *shell, *shell0, *hostname = NULL;
1144 struct passwd *pw = s->pw;
1145 u_int i;
1146
1147 /* remove hostkey from the child's memory */
1148 destroy_sensitive_data();
1149
1150 /* login(1) is only called if we execute the login shell */
1151 if (options.use_login && command != NULL)
1152 options.use_login = 0;
1153
1154 /*
1155 * Login(1) does this as well, and it needs uid 0 for the "-h"
1156 * switch, so we let login(1) to this for us.
1157 */
1158 if (!options.use_login) {
1159#ifdef HAVE_OSF_SIA
1160 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
1161 if (!check_quietlogin(s, command))
1162 do_motd();
1163#else /* HAVE_OSF_SIA */
1164 do_nologin(pw);
Ben Lindstromc0041352002-02-25 15:48:02 +00001165# ifdef _AIX
1166 aix_usrinfo(pw, s->tty, s->ttyfd);
1167# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001168 do_setusercontext(pw);
1169#endif /* HAVE_OSF_SIA */
1170 }
1171
1172 /*
1173 * Get the shell from the password data. An empty shell field is
1174 * legal, and means /bin/sh.
1175 */
1176 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1177#ifdef HAVE_LOGIN_CAP
1178 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1179#endif
1180
1181 env = do_setup_env(s, shell);
1182
Damien Millerad833b32000-08-23 10:46:23 +10001183 /* we have to stash the hostname before we close our socket. */
1184 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001185 hostname = get_remote_name_or_ip(utmp_len,
Damien Millerc5d86352002-02-05 12:13:41 +11001186 options.verify_reverse_mapping);
Damien Millerb38eff82000-04-01 11:09:21 +10001187 /*
1188 * Close the connection descriptors; note that this is the child, and
1189 * the server will still have the socket open, and it is important
1190 * that we do not shutdown it. Note that the descriptors cannot be
1191 * closed before building the environment, as we call
1192 * get_remote_ipaddr there.
1193 */
1194 if (packet_get_connection_in() == packet_get_connection_out())
1195 close(packet_get_connection_in());
1196 else {
1197 close(packet_get_connection_in());
1198 close(packet_get_connection_out());
1199 }
1200 /*
1201 * Close all descriptors related to channels. They will still remain
1202 * open in the parent.
1203 */
1204 /* XXX better use close-on-exec? -markus */
1205 channel_close_all();
1206
1207 /*
1208 * Close any extra file descriptors. Note that there may still be
1209 * descriptors left by system functions. They will be closed later.
1210 */
1211 endpwent();
1212
1213 /*
1214 * Close any extra open file descriptors so that we don\'t have them
1215 * hanging around in clients. Note that we want to do this after
1216 * initgroups, because at least on Solaris 2.3 it leaves file
1217 * descriptors open.
1218 */
1219 for (i = 3; i < 64; i++)
1220 close(i);
1221
Damien Millerb38eff82000-04-01 11:09:21 +10001222 /*
Damien Miller05eda432002-02-10 18:32:28 +11001223 * Must take new environment into use so that .ssh/rc,
1224 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001225 */
1226 environ = env;
1227
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001228#ifdef AFS
1229 /* Try to get AFS tokens for the local cell. */
1230 if (k_hasafs()) {
1231 char cell[64];
Damien Miller9f0f5c62001-12-21 14:45:46 +11001232
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001233 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1234 krb_afslog(cell, 0);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001235
Ben Lindstrom37e41c92001-09-16 22:17:15 +00001236 krb_afslog(0, 0);
1237 }
1238#endif /* AFS */
1239
Damien Miller139d4cd2001-10-10 15:07:44 +10001240 /* Change current directory to the user\'s home directory. */
1241 if (chdir(pw->pw_dir) < 0) {
1242 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1243 pw->pw_dir, strerror(errno));
1244#ifdef HAVE_LOGIN_CAP
1245 if (login_getcapbool(lc, "requirehome", 0))
1246 exit(1);
1247#endif
1248 }
1249
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001250 if (!options.use_login)
1251 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001252
1253 /* restore SIGPIPE for child */
1254 signal(SIGPIPE, SIG_DFL);
1255
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001256 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001257 launch_login(pw, hostname);
1258 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001259 }
1260
1261 /* Get the last component of the shell name. */
1262 if ((shell0 = strrchr(shell, '/')) != NULL)
1263 shell0++;
1264 else
1265 shell0 = shell;
1266
Damien Millerb38eff82000-04-01 11:09:21 +10001267 /*
1268 * If we have no command, execute the shell. In this case, the shell
1269 * name to be passed in argv[0] is preceded by '-' to indicate that
1270 * this is a login shell.
1271 */
1272 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001273 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001274
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001275 /* Start the shell. Set initial character to '-'. */
1276 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001277
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001278 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1279 >= sizeof(argv0) - 1) {
1280 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001281 perror(shell);
1282 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001283 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001284
1285 /* Execute the shell. */
1286 argv[0] = argv0;
1287 argv[1] = NULL;
1288 execve(shell, argv, env);
1289
1290 /* Executing the shell failed. */
1291 perror(shell);
1292 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001293 }
1294 /*
1295 * Execute the command using the user's shell. This uses the -c
1296 * option to execute the command.
1297 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001298 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001299 argv[1] = "-c";
1300 argv[2] = (char *) command;
1301 argv[3] = NULL;
1302 execve(shell, argv, env);
1303 perror(shell);
1304 exit(1);
1305}
1306
1307Session *
1308session_new(void)
1309{
1310 int i;
1311 static int did_init = 0;
1312 if (!did_init) {
1313 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001314 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001315 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001316 }
1317 did_init = 1;
1318 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001319 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001320 Session *s = &sessions[i];
1321 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001322 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001323 s->chanid = -1;
1324 s->ptyfd = -1;
1325 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001326 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001327 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001328 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001329 return s;
1330 }
1331 }
1332 return NULL;
1333}
1334
Ben Lindstrombba81212001-06-25 05:01:22 +00001335static void
Damien Millerb38eff82000-04-01 11:09:21 +10001336session_dump(void)
1337{
1338 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001339 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001340 Session *s = &sessions[i];
1341 debug("dump: used %d session %d %p channel %d pid %d",
1342 s->used,
1343 s->self,
1344 s,
1345 s->chanid,
1346 s->pid);
1347 }
1348}
1349
Damien Millerefb4afe2000-04-12 18:45:05 +10001350int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001351session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001352{
1353 Session *s = session_new();
1354 debug("session_open: channel %d", chanid);
1355 if (s == NULL) {
1356 error("no more sessions");
1357 return 0;
1358 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001359 s->authctxt = authctxt;
1360 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001361 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001362 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001363 debug("session_open: session %d: link with channel %d", s->self, chanid);
1364 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001365 return 1;
1366}
1367
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001368Session *
1369session_by_tty(char *tty)
1370{
1371 int i;
1372 for (i = 0; i < MAX_SESSIONS; i++) {
1373 Session *s = &sessions[i];
1374 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1375 debug("session_by_tty: session %d tty %s", i, tty);
1376 return s;
1377 }
1378 }
1379 debug("session_by_tty: unknown tty %.100s", tty);
1380 session_dump();
1381 return NULL;
1382}
1383
Ben Lindstrombba81212001-06-25 05:01:22 +00001384static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001385session_by_channel(int id)
1386{
1387 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001388 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001389 Session *s = &sessions[i];
1390 if (s->used && s->chanid == id) {
1391 debug("session_by_channel: session %d channel %d", i, id);
1392 return s;
1393 }
1394 }
1395 debug("session_by_channel: unknown channel %d", id);
1396 session_dump();
1397 return NULL;
1398}
1399
Ben Lindstrombba81212001-06-25 05:01:22 +00001400static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001401session_by_pid(pid_t pid)
1402{
1403 int i;
1404 debug("session_by_pid: pid %d", pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001405 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001406 Session *s = &sessions[i];
1407 if (s->used && s->pid == pid)
1408 return s;
1409 }
1410 error("session_by_pid: unknown pid %d", pid);
1411 session_dump();
1412 return NULL;
1413}
1414
Ben Lindstrombba81212001-06-25 05:01:22 +00001415static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001416session_window_change_req(Session *s)
1417{
1418 s->col = packet_get_int();
1419 s->row = packet_get_int();
1420 s->xpixel = packet_get_int();
1421 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001422 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001423 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1424 return 1;
1425}
1426
Ben Lindstrombba81212001-06-25 05:01:22 +00001427static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001428session_pty_req(Session *s)
1429{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001430 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001431 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001432
Ben Lindstrom49c12602001-06-13 04:37:36 +00001433 if (no_pty_flag) {
1434 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001435 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001436 }
1437 if (s->ttyfd != -1) {
1438 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001439 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001440 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001441 /* Get the time and hostname when the user last logged in. */
1442 if (options.print_lastlog) {
1443 s->hostname[0] = '\0';
1444 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1445 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1446 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001447
Damien Millerefb4afe2000-04-12 18:45:05 +10001448 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001449
1450 if (compat20) {
1451 s->col = packet_get_int();
1452 s->row = packet_get_int();
1453 } else {
1454 s->row = packet_get_int();
1455 s->col = packet_get_int();
1456 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001457 s->xpixel = packet_get_int();
1458 s->ypixel = packet_get_int();
1459
1460 if (strcmp(s->term, "") == 0) {
1461 xfree(s->term);
1462 s->term = NULL;
1463 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001464
Damien Millerefb4afe2000-04-12 18:45:05 +10001465 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001466 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001467 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001468 if (s->term)
1469 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001470 s->term = NULL;
1471 s->ptyfd = -1;
1472 s->ttyfd = -1;
1473 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001474 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001475 }
1476 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001477
1478 /* for SSH1 the tty modes length is not given */
1479 if (!compat20)
1480 n_bytes = packet_remaining();
1481 tty_parse_modes(s->ttyfd, &n_bytes);
1482
Damien Millerefb4afe2000-04-12 18:45:05 +10001483 /*
1484 * Add a cleanup function to clear the utmp entry and record logout
1485 * time in case we call fatal() (e.g., the connection gets closed).
1486 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001487 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001488 if (!use_privsep)
1489 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001490
1491 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001492 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1493
Damien Miller48b03fc2002-01-22 23:11:40 +11001494 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001495 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001496 return 1;
1497}
1498
Ben Lindstrombba81212001-06-25 05:01:22 +00001499static int
Damien Millerbd483e72000-04-30 10:00:53 +10001500session_subsystem_req(Session *s)
1501{
Damien Millerae452462001-10-10 15:08:06 +10001502 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001503 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001504 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001505 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001506 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001507
Damien Miller48b03fc2002-01-22 23:11:40 +11001508 packet_check_eom();
Damien Millerbaa08702002-02-05 12:14:10 +11001509 log("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001510
Damien Millerf6d9e222000-06-18 14:50:44 +10001511 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001512 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1513 cmd = options.subsystem_command[i];
1514 if (stat(cmd, &st) < 0) {
1515 error("subsystem: cannot stat %s: %s", cmd,
1516 strerror(errno));
1517 break;
1518 }
1519 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001520 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001521 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001522 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001523 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001524 }
1525 }
1526
1527 if (!success)
Damien Millerbaa08702002-02-05 12:14:10 +11001528 log("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001529 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001530
Damien Millerbd483e72000-04-30 10:00:53 +10001531 xfree(subsys);
1532 return success;
1533}
1534
Ben Lindstrombba81212001-06-25 05:01:22 +00001535static int
Damien Millerbd483e72000-04-30 10:00:53 +10001536session_x11_req(Session *s)
1537{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001538 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001539
1540 s->single_connection = packet_get_char();
1541 s->auth_proto = packet_get_string(NULL);
1542 s->auth_data = packet_get_string(NULL);
1543 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001544 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001545
Ben Lindstrom768176b2001-06-09 01:29:12 +00001546 success = session_setup_x11fwd(s);
1547 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001548 xfree(s->auth_proto);
1549 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001550 s->auth_proto = NULL;
1551 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001552 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001553 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001554}
1555
Ben Lindstrombba81212001-06-25 05:01:22 +00001556static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001557session_shell_req(Session *s)
1558{
Damien Miller48b03fc2002-01-22 23:11:40 +11001559 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001560 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001561 return 1;
1562}
1563
Ben Lindstrombba81212001-06-25 05:01:22 +00001564static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001565session_exec_req(Session *s)
1566{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001567 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001568 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001569 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001570 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001571 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001572 return 1;
1573}
1574
Ben Lindstrombba81212001-06-25 05:01:22 +00001575static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001576session_auth_agent_req(Session *s)
1577{
1578 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001579 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001580 if (no_agent_forwarding_flag) {
1581 debug("session_auth_agent_req: no_agent_forwarding_flag");
1582 return 0;
1583 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001584 if (called) {
1585 return 0;
1586 } else {
1587 called = 1;
1588 return auth_input_request_forwarding(s->pw);
1589 }
1590}
1591
Damien Millerc7ef63d2002-02-05 12:21:42 +11001592int
1593session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001594{
Damien Millerefb4afe2000-04-12 18:45:05 +10001595 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001596 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001597
Damien Millerc7ef63d2002-02-05 12:21:42 +11001598 if ((s = session_by_channel(c->self)) == NULL) {
1599 log("session_input_channel_req: no session %d req %.100s",
1600 c->self, rtype);
1601 return 0;
1602 }
1603 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001604
1605 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001606 * a session is in LARVAL state until a shell, a command
1607 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001608 */
1609 if (c->type == SSH_CHANNEL_LARVAL) {
1610 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001611 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001612 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001613 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001614 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001615 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001616 } else if (strcmp(rtype, "x11-req") == 0) {
1617 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001618 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1619 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001620 } else if (strcmp(rtype, "subsystem") == 0) {
1621 success = session_subsystem_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001622 }
1623 }
1624 if (strcmp(rtype, "window-change") == 0) {
1625 success = session_window_change_req(s);
1626 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001627 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001628}
1629
1630void
1631session_set_fds(Session *s, int fdin, int fdout, int fderr)
1632{
1633 if (!compat20)
1634 fatal("session_set_fds: called for proto != 2.0");
1635 /*
1636 * now that have a child and a pipe to the child,
1637 * we can activate our channel and register the fd's
1638 */
1639 if (s->chanid == -1)
1640 fatal("no channel for session %d", s->self);
1641 channel_set_fds(s->chanid,
1642 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001643 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001644 1,
1645 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001646}
1647
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001648/*
1649 * Function to perform pty cleanup. Also called if we get aborted abnormally
1650 * (e.g., due to a dropped connection).
1651 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001652void
1653session_pty_cleanup2(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001654{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001655 Session *s = session;
1656
1657 if (s == NULL) {
1658 error("session_pty_cleanup: no session");
1659 return;
1660 }
1661 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001662 return;
1663
Kevin Steves43cdef32001-02-11 14:12:08 +00001664 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001665
Damien Millerb38eff82000-04-01 11:09:21 +10001666 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001667 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001668 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001669
1670 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001671 if (getuid() == 0)
1672 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001673
1674 /*
1675 * Close the server side of the socket pairs. We must do this after
1676 * the pty cleanup, so that another process doesn't get this pty
1677 * while we're still cleaning up.
1678 */
1679 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001680 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001681
1682 /* unlink pty from session */
1683 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001684}
Damien Millerefb4afe2000-04-12 18:45:05 +10001685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686void
1687session_pty_cleanup(void *session)
1688{
1689 PRIVSEP(session_pty_cleanup2(session));
1690}
1691
Ben Lindstrombba81212001-06-25 05:01:22 +00001692static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001693session_exit_message(Session *s, int status)
1694{
1695 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001696
1697 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001698 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001699 s->self, s->chanid);
1700 debug("session_exit_message: session %d channel %d pid %d",
1701 s->self, s->chanid, s->pid);
1702
1703 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001704 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001705 packet_put_int(WEXITSTATUS(status));
1706 packet_send();
1707 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001708 channel_request_start(s->chanid, "exit-signal", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001709 packet_put_int(WTERMSIG(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001710#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001711 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001712#else /* WCOREDUMP */
1713 packet_put_char(0);
1714#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001715 packet_put_cstring("");
1716 packet_put_cstring("");
1717 packet_send();
1718 } else {
1719 /* Some weird exit cause. Just exit. */
1720 packet_disconnect("wait returned status %04x.", status);
1721 }
1722
1723 /* disconnect channel */
1724 debug("session_exit_message: release channel %d", s->chanid);
1725 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001726 /*
1727 * emulate a write failure with 'chan_write_failed', nobody will be
1728 * interested in data we write.
1729 * Note that we must not call 'chan_read_failed', since there could
1730 * be some more data waiting in the pipe.
1731 */
Damien Millerbd483e72000-04-30 10:00:53 +10001732 if (c->ostate != CHAN_OUTPUT_CLOSED)
1733 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001734 s->chanid = -1;
1735}
1736
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001737void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001738session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001739{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001740 debug("session_close: session %d pid %d", s->self, s->pid);
1741 if (s->ttyfd != -1) {
1742 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1743 session_pty_cleanup(s);
1744 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001745 if (s->term)
1746 xfree(s->term);
1747 if (s->display)
1748 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001749 if (s->auth_display)
1750 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001751 if (s->auth_data)
1752 xfree(s->auth_data);
1753 if (s->auth_proto)
1754 xfree(s->auth_proto);
1755 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001756 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001757}
1758
1759void
1760session_close_by_pid(pid_t pid, int status)
1761{
1762 Session *s = session_by_pid(pid);
1763 if (s == NULL) {
Ben Lindstrom7a837222001-06-13 19:23:32 +00001764 debug("session_close_by_pid: no session for pid %d", pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001765 return;
1766 }
1767 if (s->chanid != -1)
1768 session_exit_message(s, status);
1769 session_close(s);
1770}
1771
1772/*
1773 * this is called when a channel dies before
1774 * the session 'child' itself dies
1775 */
1776void
1777session_close_by_channel(int id, void *arg)
1778{
1779 Session *s = session_by_channel(id);
1780 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001781 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001782 return;
1783 }
Damien Miller3ec27592001-10-12 11:35:04 +10001784 debug("session_close_by_channel: channel %d child %d", id, s->pid);
1785 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10001786 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10001787 /*
1788 * delay detach of session, but release pty, since
1789 * the fd's to the child are already closed
1790 */
1791 if (s->ttyfd != -1) {
1792 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1793 session_pty_cleanup(s);
1794 }
Damien Miller3ec27592001-10-12 11:35:04 +10001795 return;
1796 }
1797 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10001798 channel_cancel_cleanup(s->chanid);
1799 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10001800 session_close(s);
1801}
1802
1803void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001804session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10001805{
1806 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001807 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10001808 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001809 if (s->used) {
1810 if (closefunc != NULL)
1811 closefunc(s);
1812 else
1813 session_close(s);
1814 }
Damien Miller52b77be2001-10-10 15:14:37 +10001815 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001816}
1817
Ben Lindstrombba81212001-06-25 05:01:22 +00001818static char *
Damien Millere247cc42000-05-07 12:03:14 +10001819session_tty_list(void)
1820{
1821 static char buf[1024];
1822 int i;
1823 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11001824 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10001825 Session *s = &sessions[i];
1826 if (s->used && s->ttyfd != -1) {
1827 if (buf[0] != '\0')
1828 strlcat(buf, ",", sizeof buf);
1829 strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
1830 }
1831 }
1832 if (buf[0] == '\0')
1833 strlcpy(buf, "notty", sizeof buf);
1834 return buf;
1835}
1836
1837void
1838session_proctitle(Session *s)
1839{
1840 if (s->pw == NULL)
1841 error("no user for session %d", s->self);
1842 else
1843 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
1844}
1845
Ben Lindstrom768176b2001-06-09 01:29:12 +00001846int
1847session_setup_x11fwd(Session *s)
1848{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001849 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00001850 char display[512], auth_display[512];
1851 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00001852
1853 if (no_x11_forwarding_flag) {
1854 packet_send_debug("X11 forwarding disabled in user configuration file.");
1855 return 0;
1856 }
1857 if (!options.x11_forwarding) {
1858 debug("X11 forwarding disabled in server configuration file.");
1859 return 0;
1860 }
1861 if (!options.xauth_location ||
1862 (stat(options.xauth_location, &st) == -1)) {
1863 packet_send_debug("No xauth program; cannot forward with spoofing.");
1864 return 0;
1865 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00001866 if (options.use_login) {
1867 packet_send_debug("X11 forwarding disabled; "
1868 "not compatible with UseLogin=yes.");
1869 return 0;
1870 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00001871 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00001872 debug("X11 display already set.");
1873 return 0;
1874 }
Kevin Steves366298c2001-12-19 17:58:01 +00001875 s->display_number = x11_create_display_inet(options.x11_display_offset,
Damien Miller95c249f2002-02-05 12:11:34 +11001876 options.x11_use_localhost, s->single_connection);
Kevin Steves366298c2001-12-19 17:58:01 +00001877 if (s->display_number == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00001878 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00001879 return 0;
1880 }
Kevin Steves366298c2001-12-19 17:58:01 +00001881
1882 /* Set up a suitable value for the DISPLAY variable. */
1883 if (gethostname(hostname, sizeof(hostname)) < 0)
1884 fatal("gethostname: %.100s", strerror(errno));
1885 /*
1886 * auth_display must be used as the displayname when the
1887 * authorization entry is added with xauth(1). This will be
1888 * different than the DISPLAY string for localhost displays.
1889 */
Damien Miller95c249f2002-02-05 12:11:34 +11001890 if (options.x11_use_localhost) {
Kevin Steves366298c2001-12-19 17:58:01 +00001891 snprintf(display, sizeof display, "localhost:%d.%d",
1892 s->display_number, s->screen);
Damien Miller512bccb2002-02-05 12:11:02 +11001893 snprintf(auth_display, sizeof auth_display, "unix:%d.%d",
1894 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00001895 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11001896 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00001897 } else {
1898#ifdef IPADDR_IN_DISPLAY
1899 struct hostent *he;
1900 struct in_addr my_addr;
1901
1902 he = gethostbyname(hostname);
1903 if (he == NULL) {
1904 error("Can't get IP address for X11 DISPLAY.");
1905 packet_send_debug("Can't get IP address for X11 DISPLAY.");
1906 return 0;
1907 }
1908 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
1909 snprintf(display, sizeof display, "%.50s:%d.%d", inet_ntoa(my_addr),
1910 s->display_number, s->screen);
1911#else
1912 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
1913 s->display_number, s->screen);
1914#endif
1915 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11001916 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00001917 }
1918
Ben Lindstrom768176b2001-06-09 01:29:12 +00001919 return 1;
1920}
1921
Ben Lindstrombba81212001-06-25 05:01:22 +00001922static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001923do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10001924{
Ben Lindstrombddd5512001-07-04 04:53:53 +00001925 server_loop2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10001926}