blob: 5a6afa7ecaac4637d86a655ccb2f26c08cde5b4b [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 Lindstromec95ed92001-07-04 04:21:14 +000036RCSID("$OpenBSD: session.c,v 1.96 2001/06/26 16:15:24 dugsong 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 */
111 char *display;
112 int screen;
113 char *auth_proto;
114 char *auth_data;
Damien Millerbd483e72000-04-30 10:00:53 +1000115 int single_connection;
Damien Millerb38eff82000-04-01 11:09:21 +1000116 /* proto 2 */
117 int chanid;
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000118 int is_subsystem;
Damien Millerb38eff82000-04-01 11:09:21 +1000119};
120
121/* func */
122
123Session *session_new(void);
Ben Lindstrombba81212001-06-25 05:01:22 +0000124void session_set_fds(Session *, int, int, int);
125static void session_pty_cleanup(void *);
126void session_proctitle(Session *);
127int session_setup_x11fwd(Session *);
128void do_exec_pty(Session *, const char *);
129void do_exec_no_pty(Session *, const char *);
130void do_exec(Session *, const char *);
131void do_login(Session *, const char *);
132void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000133void do_motd(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000134
Ben Lindstrombba81212001-06-25 05:01:22 +0000135static void do_authenticated1(Authctxt *);
136static void do_authenticated2(Authctxt *);
137
138static void session_close(Session *);
139static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000140
Damien Millerb38eff82000-04-01 11:09:21 +1000141/* import */
142extern ServerOptions options;
143extern char *__progname;
144extern int log_stderr;
145extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000146extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000147extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000148extern void destroy_sensitive_data(void);
Damien Miller37023962000-07-11 17:31:38 +1000149
Damien Miller7b28dc52000-09-05 13:34:53 +1100150/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000151const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100152
Damien Millerb38eff82000-04-01 11:09:21 +1000153/* data */
154#define MAX_SESSIONS 10
155Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100156
Damien Millerd2c208a2000-05-17 22:00:02 +1000157#ifdef WITH_AIXAUTHENTICATE
158/* AIX's lastlogin message, set in auth1.c */
159char *aixloginmsg;
160#endif /* WITH_AIXAUTHENTICATE */
Damien Millerb38eff82000-04-01 11:09:21 +1000161
Damien Millerad833b32000-08-23 10:46:23 +1000162#ifdef HAVE_LOGIN_CAP
163static login_cap_t *lc;
164#endif
165
Ben Lindstromb31783d2001-03-22 02:02:12 +0000166void
167do_authenticated(Authctxt *authctxt)
168{
169 /*
170 * Cancel the alarm we set to limit the time taken for
171 * authentication.
172 */
173 alarm(0);
174 if (startup_pipe != -1) {
175 close(startup_pipe);
176 startup_pipe = -1;
177 }
178#if defined(HAVE_LOGIN_CAP) && defined(HAVE_PW_CLASS_IN_PASSWD)
179 if ((lc = login_getclass(authctxt->pw->pw_class)) == NULL) {
180 error("unable to get login class");
181 return;
182 }
Ben Lindstrom005dd222001-04-18 15:29:33 +0000183#ifdef BSD_AUTH
184 if (auth_approval(NULL, lc, authctxt->pw->pw_name, "ssh") <= 0) {
185 packet_disconnect("Approval failure for %s",
186 authctxt->pw->pw_name);
187 }
188#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000189#endif
190 /* setup the channel layer */
191 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
192 channel_permit_all_opens();
193
194 if (compat20)
195 do_authenticated2(authctxt);
196 else
197 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000198
Ben Lindstrom2bcdf062001-06-13 04:41:41 +0000199 /* remove agent socket */
Ben Lindstrom838394c2001-06-09 01:11:59 +0000200 if (auth_get_socket_name())
Ben Lindstrom983c0982001-06-09 01:20:06 +0000201 auth_sock_cleanup_proc(authctxt->pw);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000202#ifdef KRB4
203 if (options.kerberos_ticket_cleanup)
204 krb4_cleanup_proc(authctxt);
205#endif
206#ifdef KRB5
207 if (options.kerberos_ticket_cleanup)
208 krb5_cleanup_proc(authctxt);
209#endif
Ben Lindstromb31783d2001-03-22 02:02:12 +0000210}
211
Damien Millerb38eff82000-04-01 11:09:21 +1000212/*
Damien Millerb38eff82000-04-01 11:09:21 +1000213 * Prepares for an interactive session. This is called after the user has
214 * been successfully authenticated. During this message exchange, pseudo
215 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
216 * are requested, etc.
217 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000219do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000220{
221 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000222 char *command;
Ben Lindstrom49c12602001-06-13 04:37:36 +0000223 int success, type, plen, screen_flag;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000224 int compression_level = 0, enable_compression_after_reply = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000225 u_int proto_len, data_len, dlen;
Damien Millerb38eff82000-04-01 11:09:21 +1000226
227 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000228 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000229 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000230
Damien Millerb38eff82000-04-01 11:09:21 +1000231 /*
232 * We stay in this loop until the client requests to execute a shell
233 * or a command.
234 */
235 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000236 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000237
238 /* Get a packet from the client. */
239 type = packet_read(&plen);
240
241 /* Process the packet. */
242 switch (type) {
243 case SSH_CMSG_REQUEST_COMPRESSION:
244 packet_integrity_check(plen, 4, type);
245 compression_level = packet_get_int();
246 if (compression_level < 1 || compression_level > 9) {
247 packet_send_debug("Received illegal compression level %d.",
248 compression_level);
249 break;
250 }
251 /* Enable compression after we have responded with SUCCESS. */
252 enable_compression_after_reply = 1;
253 success = 1;
254 break;
255
256 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000257 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000258 break;
259
260 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000261 s->auth_proto = packet_get_string(&proto_len);
262 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000263
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000264 screen_flag = packet_get_protocol_flags() &
265 SSH_PROTOFLAG_SCREEN_NUMBER;
266 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
267
268 if (packet_remaining() == 4) {
269 if (!screen_flag)
270 debug2("Buggy client: "
271 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000272 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000273 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000274 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000275 }
Ben Lindstrom768176b2001-06-09 01:29:12 +0000276 packet_done();
277 success = session_setup_x11fwd(s);
278 if (!success) {
279 xfree(s->auth_proto);
280 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000281 s->auth_proto = NULL;
282 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000283 }
Damien Millerb38eff82000-04-01 11:09:21 +1000284 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000285
286 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
287 if (no_agent_forwarding_flag || compat13) {
288 debug("Authentication agent forwarding not permitted for this authentication.");
289 break;
290 }
291 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000292 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000293 break;
294
295 case SSH_CMSG_PORT_FORWARD_REQUEST:
296 if (no_port_forwarding_flag) {
297 debug("Port forwarding not permitted for this authentication.");
298 break;
299 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100300 if (!options.allow_tcp_forwarding) {
301 debug("Port forwarding not permitted.");
302 break;
303 }
Damien Millerb38eff82000-04-01 11:09:21 +1000304 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000305 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000306 success = 1;
307 break;
308
309 case SSH_CMSG_MAX_PACKET_SIZE:
310 if (packet_set_maxsize(packet_get_int()) > 0)
311 success = 1;
312 break;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000313
314#if defined(AFS) || defined(KRB5)
315 case SSH_CMSG_HAVE_KERBEROS_TGT:
316 if (!options.kerberos_tgt_passing) {
317 verbose("Kerberos TGT passing disabled.");
318 } else {
319 char *kdata = packet_get_string(&dlen);
320 packet_integrity_check(plen, 4 + dlen, type);
321
322 /* XXX - 0x41, see creds_to_radix version */
323 if (kdata[0] != 0x41) {
324#ifdef KRB5
325 krb5_data tgt;
326 tgt.data = kdata;
327 tgt.length = dlen;
328
329 if (auth_krb5_tgt(s->authctxt, &tgt))
330 success = 1;
331 else
332 verbose("Kerberos v5 TGT refused for %.100s", s->authctxt->user);
333#endif /* KRB5 */
334 } else {
335#ifdef AFS
336 if (auth_krb4_tgt(s->authctxt, kdata))
337 success = 1;
338 else
339 verbose("Kerberos v4 TGT refused for %.100s", s->authctxt->user);
340#endif /* AFS */
341 }
342 xfree(kdata);
343 }
344 break;
345#endif /* AFS || KRB5 */
346
347#ifdef AFS
348 case SSH_CMSG_HAVE_AFS_TOKEN:
349 if (!options.afs_token_passing || !k_hasafs()) {
350 verbose("AFS token passing disabled.");
351 } else {
352 /* Accept AFS token. */
353 char *token = packet_get_string(&dlen);
354 packet_integrity_check(plen, 4 + dlen, type);
355
356 if (auth_afs_token(s->authctxt, token))
357 success = 1;
358 else
359 verbose("AFS token refused for %.100s",
360 s->authctxt->user);
361 xfree(token);
362 }
363 break;
364#endif /* AFS */
Damien Millerb38eff82000-04-01 11:09:21 +1000365
366 case SSH_CMSG_EXEC_SHELL:
367 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000368 if (type == SSH_CMSG_EXEC_CMD) {
369 command = packet_get_string(&dlen);
370 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000371 do_exec(s, command);
372 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000373 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000374 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000375 }
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000376 packet_done();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000377 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000378 return;
379
380 default:
381 /*
382 * Any unknown messages in this phase are ignored,
383 * and a failure message is returned.
384 */
385 log("Unknown packet type received after authentication: %d", type);
386 }
387 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
388 packet_send();
389 packet_write_wait();
390
391 /* Enable compression now that we have replied if appropriate. */
392 if (enable_compression_after_reply) {
393 enable_compression_after_reply = 0;
394 packet_start_compression(compression_level);
395 }
396 }
397}
398
399/*
400 * This is called to fork and execute a command when we have no tty. This
401 * will call do_child from the child, and server_loop from the parent after
402 * setting up file descriptors and such.
403 */
Damien Miller4af51302000-04-16 11:18:38 +1000404void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000405do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000406{
407 int pid;
408
409#ifdef USE_PIPES
410 int pin[2], pout[2], perr[2];
411 /* Allocate pipes for communicating with the program. */
412 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
413 packet_disconnect("Could not create pipes: %.100s",
414 strerror(errno));
415#else /* USE_PIPES */
416 int inout[2], err[2];
417 /* Uses socket pairs to communicate with the program. */
418 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
419 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
420 packet_disconnect("Could not create socket pairs: %.100s",
421 strerror(errno));
422#endif /* USE_PIPES */
423 if (s == NULL)
424 fatal("do_exec_no_pty: no session");
425
Damien Millere247cc42000-05-07 12:03:14 +1000426 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000427
Damien Millerc5946332001-02-28 11:46:11 +1100428#if defined(USE_PAM)
Damien Miller665af9c2001-06-27 09:34:15 +1000429 do_pam_session(s->pw->pw_name, NULL);
Damien Millerf9e93002001-03-27 16:12:24 +1000430 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000431#endif /* USE_PAM */
432
Damien Millerb38eff82000-04-01 11:09:21 +1000433 /* Fork the child. */
434 if ((pid = fork()) == 0) {
435 /* Child. Reinitialize the log since the pid has changed. */
436 log_init(__progname, options.log_level, options.log_facility, log_stderr);
437
438 /*
439 * Create a new session and process group since the 4.4BSD
440 * setlogin() affects the entire process group.
441 */
442 if (setsid() < 0)
443 error("setsid failed: %.100s", strerror(errno));
444
445#ifdef USE_PIPES
446 /*
447 * Redirect stdin. We close the parent side of the socket
448 * pair, and make the child side the standard input.
449 */
450 close(pin[1]);
451 if (dup2(pin[0], 0) < 0)
452 perror("dup2 stdin");
453 close(pin[0]);
454
455 /* Redirect stdout. */
456 close(pout[0]);
457 if (dup2(pout[1], 1) < 0)
458 perror("dup2 stdout");
459 close(pout[1]);
460
461 /* Redirect stderr. */
462 close(perr[0]);
463 if (dup2(perr[1], 2) < 0)
464 perror("dup2 stderr");
465 close(perr[1]);
466#else /* USE_PIPES */
467 /*
468 * Redirect stdin, stdout, and stderr. Stdin and stdout will
469 * use the same socket, as some programs (particularly rdist)
470 * seem to depend on it.
471 */
472 close(inout[1]);
473 close(err[1]);
474 if (dup2(inout[0], 0) < 0) /* stdin */
475 perror("dup2 stdin");
476 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
477 perror("dup2 stdout");
478 if (dup2(err[0], 2) < 0) /* stderr */
479 perror("dup2 stderr");
480#endif /* USE_PIPES */
481
482 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000483 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000484 /* NOTREACHED */
485 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100486#ifdef HAVE_CYGWIN
487 if (is_winnt)
488 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
489#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000490 if (pid < 0)
491 packet_disconnect("fork failed: %.100s", strerror(errno));
492 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000493 /* Set interactive/non-interactive mode. */
494 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000495#ifdef USE_PIPES
496 /* We are the parent. Close the child sides of the pipes. */
497 close(pin[0]);
498 close(pout[1]);
499 close(perr[1]);
500
Damien Millerefb4afe2000-04-12 18:45:05 +1000501 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000502 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000503 } else {
504 /* Enter the interactive session. */
505 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000506 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000507 }
Damien Millerb38eff82000-04-01 11:09:21 +1000508#else /* USE_PIPES */
509 /* We are the parent. Close the child sides of the socket pairs. */
510 close(inout[0]);
511 close(err[0]);
512
513 /*
514 * Enter the interactive session. Note: server_loop must be able to
515 * handle the case that fdin and fdout are the same.
516 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000517 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000518 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000519 } else {
520 server_loop(pid, inout[1], inout[1], err[1]);
521 /* server_loop has closed inout[1] and err[1]. */
522 }
Damien Millerb38eff82000-04-01 11:09:21 +1000523#endif /* USE_PIPES */
524}
525
526/*
527 * This is called to fork and execute a command when we have a tty. This
528 * will call do_child from the child, and server_loop from the parent after
529 * setting up file descriptors, controlling tty, updating wtmp, utmp,
530 * lastlog, and other such operations.
531 */
Damien Miller4af51302000-04-16 11:18:38 +1000532void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000533do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000534{
Damien Millerb38eff82000-04-01 11:09:21 +1000535 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000536 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000537
538 if (s == NULL)
539 fatal("do_exec_pty: no session");
540 ptyfd = s->ptyfd;
541 ttyfd = s->ttyfd;
542
Damien Millerc5946332001-02-28 11:46:11 +1100543#if defined(USE_PAM)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000544 do_pam_session(s->pw->pw_name, s->tty);
Damien Millerf9e93002001-03-27 16:12:24 +1000545 do_pam_setcred(1);
Damien Miller5a761312001-02-27 09:28:23 +1100546#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000547
Damien Millerb38eff82000-04-01 11:09:21 +1000548 /* Fork the child. */
549 if ((pid = fork()) == 0) {
Damien Miller942da032000-08-18 13:59:06 +1000550 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000551 log_init(__progname, options.log_level, options.log_facility, log_stderr);
552
553 /* Close the master side of the pseudo tty. */
554 close(ptyfd);
555
556 /* Make the pseudo tty our controlling tty. */
557 pty_make_controlling_tty(&ttyfd, s->tty);
558
559 /* Redirect stdin from the pseudo tty. */
560 if (dup2(ttyfd, fileno(stdin)) < 0)
561 error("dup2 stdin failed: %.100s", strerror(errno));
562
563 /* Redirect stdout to the pseudo tty. */
564 if (dup2(ttyfd, fileno(stdout)) < 0)
565 error("dup2 stdin failed: %.100s", strerror(errno));
566
567 /* Redirect stderr to the pseudo tty. */
568 if (dup2(ttyfd, fileno(stderr)) < 0)
569 error("dup2 stdin failed: %.100s", strerror(errno));
570
571 /* Close the extra descriptor for the pseudo tty. */
572 close(ttyfd);
573
Damien Miller942da032000-08-18 13:59:06 +1000574 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000575#ifndef HAVE_OSF_SIA
Damien Miller69b69aa2000-10-28 14:19:58 +1100576 if (!(options.use_login && command == NULL))
577 do_login(s, command);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000578# ifdef LOGIN_NEEDS_UTMPX
579 else
580 do_pre_login(s);
581# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000582#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000583
Damien Millerb38eff82000-04-01 11:09:21 +1000584 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000585 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000586 /* NOTREACHED */
587 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100588#ifdef HAVE_CYGWIN
589 if (is_winnt)
590 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
591#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000592 if (pid < 0)
593 packet_disconnect("fork failed: %.100s", strerror(errno));
594 s->pid = pid;
595
596 /* Parent. Close the slave side of the pseudo tty. */
597 close(ttyfd);
598
599 /*
600 * Create another descriptor of the pty master side for use as the
601 * standard input. We could use the original descriptor, but this
602 * simplifies code in server_loop. The descriptor is bidirectional.
603 */
604 fdout = dup(ptyfd);
605 if (fdout < 0)
606 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
607
608 /* we keep a reference to the pty master */
609 ptymaster = dup(ptyfd);
610 if (ptymaster < 0)
611 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
612 s->ptymaster = ptymaster;
613
614 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000615 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000616 if (compat20) {
617 session_set_fds(s, ptyfd, fdout, -1);
618 } else {
619 server_loop(pid, ptyfd, fdout, -1);
620 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000621 }
Damien Millerb38eff82000-04-01 11:09:21 +1000622}
623
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000624#ifdef LOGIN_NEEDS_UTMPX
625void
626do_pre_login(Session *s)
627{
628 socklen_t fromlen;
629 struct sockaddr_storage from;
630 pid_t pid = getpid();
631
632 /*
633 * Get IP address of client. If the connection is not a socket, let
634 * the address be 0.0.0.0.
635 */
636 memset(&from, 0, sizeof(from));
637 if (packet_connection_is_on_socket()) {
638 fromlen = sizeof(from);
639 if (getpeername(packet_get_connection_in(),
640 (struct sockaddr *) & from, &fromlen) < 0) {
641 debug("getpeername: %.100s", strerror(errno));
642 fatal_cleanup();
643 }
644 }
645
646 record_utmp_only(pid, s->tty, s->pw->pw_name,
647 get_remote_name_or_ip(utmp_len, options.reverse_mapping_check),
648 (struct sockaddr *)&from);
649}
650#endif
651
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000652/*
653 * This is called to fork and execute a command. If another command is
654 * to be forced, execute that instead.
655 */
656void
657do_exec(Session *s, const char *command)
658{
659 if (forced_command) {
660 original_command = command;
661 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000662 debug("Forced command '%.900s'", command);
663 }
664
665 if (s->ttyfd != -1)
666 do_exec_pty(s, command);
667 else
668 do_exec_no_pty(s, command);
669
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000670 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000671}
672
Damien Miller2d5ac082001-06-25 17:07:59 +1000673/*
674 * Check for quiet login, either .hushlogin or command given.
675 */
676static int
677check_quietlogin(Session *s, const char *command)
678{
679 char buf[256];
Ben Lindstromec95ed92001-07-04 04:21:14 +0000680 struct passwd *pw = s->pw;
Damien Miller2d5ac082001-06-25 17:07:59 +1000681 struct stat st;
682
683 /* Return 1 if .hushlogin exists or a command given. */
684 if (command != NULL)
685 return 1;
686 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
687#ifdef HAVE_LOGIN_CAP
688 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
689 return 1;
690#else
691 if (stat(buf, &st) >= 0)
692 return 1;
693#endif
694 return 0;
695}
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000696
Damien Miller942da032000-08-18 13:59:06 +1000697/* administrative, login(1)-like work */
698void
Damien Miller69b69aa2000-10-28 14:19:58 +1100699do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000700{
Damien Miller942da032000-08-18 13:59:06 +1000701 char *time_string;
Damien Miller7b28dc52000-09-05 13:34:53 +1100702 char hostname[MAXHOSTNAMELEN];
Damien Miller942da032000-08-18 13:59:06 +1000703 socklen_t fromlen;
704 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000705 time_t last_login_time;
706 struct passwd * pw = s->pw;
707 pid_t pid = getpid();
708
709 /*
710 * Get IP address of client. If the connection is not a socket, let
711 * the address be 0.0.0.0.
712 */
713 memset(&from, 0, sizeof(from));
714 if (packet_connection_is_on_socket()) {
715 fromlen = sizeof(from);
716 if (getpeername(packet_get_connection_in(),
717 (struct sockaddr *) & from, &fromlen) < 0) {
718 debug("getpeername: %.100s", strerror(errno));
719 fatal_cleanup();
720 }
721 }
722
Damien Miller7b28dc52000-09-05 13:34:53 +1100723 /* Get the time and hostname when the user last logged in. */
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000724 if (options.print_lastlog) {
725 hostname[0] = '\0';
726 last_login_time = get_last_login_time(pw->pw_uid, pw->pw_name,
727 hostname, sizeof(hostname));
728 }
Damien Millere4340be2000-09-16 13:29:08 +1100729
Damien Miller942da032000-08-18 13:59:06 +1000730 /* Record that there was a login on that tty from the remote host. */
731 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
Ben Lindstromf15a3862001-04-05 23:32:17 +0000732 get_remote_name_or_ip(utmp_len, options.reverse_mapping_check),
733 (struct sockaddr *)&from);
Damien Miller942da032000-08-18 13:59:06 +1000734
Kevin Steves092f2ef2000-10-14 13:36:13 +0000735#ifdef USE_PAM
736 /*
737 * If password change is needed, do it now.
738 * This needs to occur before the ~/.hushlogin check.
739 */
Damien Miller646aa602001-02-15 11:51:32 +1100740 if (is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000741 print_pam_messages();
742 do_pam_chauthtok();
743 }
744#endif
745
Damien Millercf205e82001-04-16 18:29:15 +1000746 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000747 return;
748
749#ifdef USE_PAM
Damien Miller646aa602001-02-15 11:51:32 +1100750 if (!is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000751 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000752#endif /* USE_PAM */
753#ifdef WITH_AIXAUTHENTICATE
754 if (aixloginmsg && *aixloginmsg)
755 printf("%s\n", aixloginmsg);
756#endif /* WITH_AIXAUTHENTICATE */
757
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000758 if (options.print_lastlog && last_login_time != 0) {
Damien Miller942da032000-08-18 13:59:06 +1000759 time_string = ctime(&last_login_time);
760 if (strchr(time_string, '\n'))
761 *strchr(time_string, '\n') = 0;
Kevin Stevesc368a3c2000-10-14 16:10:06 +0000762 if (strcmp(hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000763 printf("Last login: %s\r\n", time_string);
764 else
Damien Millere4340be2000-09-16 13:29:08 +1100765 printf("Last login: %s from %s\r\n", time_string, hostname);
Damien Miller942da032000-08-18 13:59:06 +1000766 }
Damien Millercf205e82001-04-16 18:29:15 +1000767
768 do_motd();
769}
770
771/*
772 * Display the message of the day.
773 */
774void
775do_motd(void)
776{
777 FILE *f;
778 char buf[256];
779
Damien Miller942da032000-08-18 13:59:06 +1000780 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000781#ifdef HAVE_LOGIN_CAP
782 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
783 "/etc/motd"), "r");
784#else
Damien Miller942da032000-08-18 13:59:06 +1000785 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000786#endif
Damien Miller942da032000-08-18 13:59:06 +1000787 if (f) {
788 while (fgets(buf, sizeof(buf), f))
789 fputs(buf, stdout);
790 fclose(f);
791 }
792 }
793}
794
Damien Millerb38eff82000-04-01 11:09:21 +1000795/*
796 * Sets the value of the given variable in the environment. If the variable
797 * already exists, its value is overriden.
798 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000799static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000800child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Millerb38eff82000-04-01 11:09:21 +1000801 const char *value)
802{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000803 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000804 char **env;
805
806 /*
807 * Find the slot where the value should be stored. If the variable
808 * already exists, we reuse the slot; otherwise we append a new slot
809 * at the end of the array, expanding if necessary.
810 */
811 env = *envp;
812 namelen = strlen(name);
813 for (i = 0; env[i]; i++)
814 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
815 break;
816 if (env[i]) {
817 /* Reuse the slot. */
818 xfree(env[i]);
819 } else {
820 /* New variable. Expand if necessary. */
821 if (i >= (*envsizep) - 1) {
822 (*envsizep) += 50;
823 env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
824 }
825 /* Need to set the NULL pointer at end of array beyond the new slot. */
826 env[i + 1] = NULL;
827 }
828
829 /* Allocate space and format the variable in the appropriate slot. */
830 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
831 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
832}
833
834/*
835 * Reads environment variables from the given file and adds/overrides them
836 * into the environment. If the file does not exist, this does nothing.
837 * Otherwise, it must consist of empty lines, comments (line starts with '#')
838 * and assignments of the form name=value. No other forms are allowed.
839 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000841read_environment_file(char ***env, u_int *envsize,
Damien Millerb38eff82000-04-01 11:09:21 +1000842 const char *filename)
843{
844 FILE *f;
845 char buf[4096];
846 char *cp, *value;
847
848 f = fopen(filename, "r");
849 if (!f)
850 return;
851
852 while (fgets(buf, sizeof(buf), f)) {
853 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
854 ;
855 if (!*cp || *cp == '#' || *cp == '\n')
856 continue;
857 if (strchr(cp, '\n'))
858 *strchr(cp, '\n') = '\0';
859 value = strchr(cp, '=');
860 if (value == NULL) {
861 fprintf(stderr, "Bad line in %.100s: %.200s\n", filename, buf);
862 continue;
863 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000864 /*
865 * Replace the equals sign by nul, and advance value to
866 * the value string.
867 */
Damien Millerb38eff82000-04-01 11:09:21 +1000868 *value = '\0';
869 value++;
870 child_set_env(env, envsize, cp, value);
871 }
872 fclose(f);
873}
874
875#ifdef USE_PAM
876/*
877 * Sets any environment variables which have been specified by PAM
878 */
Kevin Steves9b26f962001-06-29 17:52:17 +0000879void do_pam_environment(char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000880{
881 char *equals, var_name[512], var_val[512];
882 char **pam_env;
883 int i;
884
885 if ((pam_env = fetch_pam_environment()) == NULL)
886 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000887
Damien Millerb38eff82000-04-01 11:09:21 +1000888 for(i = 0; pam_env[i] != NULL; i++) {
889 if ((equals = strstr(pam_env[i], "=")) == NULL)
890 continue;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000891
Damien Millerb38eff82000-04-01 11:09:21 +1000892 if (strlen(pam_env[i]) < (sizeof(var_name) - 1)) {
893 memset(var_name, '\0', sizeof(var_name));
894 memset(var_val, '\0', sizeof(var_val));
895
896 strncpy(var_name, pam_env[i], equals - pam_env[i]);
897 strcpy(var_val, equals + 1);
898
Damien Millercb5e44a2000-09-29 12:12:36 +1100899 debug3("PAM environment: %s=%s", var_name, var_val);
Damien Millerb38eff82000-04-01 11:09:21 +1000900
901 child_set_env(env, envsize, var_name, var_val);
902 }
903 }
904}
905#endif /* USE_PAM */
906
Damien Millercb5e44a2000-09-29 12:12:36 +1100907#ifdef HAVE_CYGWIN
Kevin Steves9b26f962001-06-29 17:52:17 +0000908void copy_environment(char ***env, u_int *envsize)
Damien Millercb5e44a2000-09-29 12:12:36 +1100909{
910 char *equals, var_name[512], var_val[512];
911 int i;
912
913 for(i = 0; environ[i] != NULL; i++) {
914 if ((equals = strstr(environ[i], "=")) == NULL)
915 continue;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000916
Damien Millercb5e44a2000-09-29 12:12:36 +1100917 if (strlen(environ[i]) < (sizeof(var_name) - 1)) {
918 memset(var_name, '\0', sizeof(var_name));
919 memset(var_val, '\0', sizeof(var_val));
920
921 strncpy(var_name, environ[i], equals - environ[i]);
922 strcpy(var_val, equals + 1);
923
924 debug3("Copy environment: %s=%s", var_name, var_val);
925
926 child_set_env(env, envsize, var_name, var_val);
927 }
928 }
929}
930#endif
931
Damien Miller5fc85652000-07-09 23:53:07 +1000932#if defined(HAVE_GETUSERATTR)
933/*
934 * AIX-specific login initialisation
935 */
936void set_limit(char *user, char *soft, char *hard, int resource, int mult)
937{
938 struct rlimit rlim;
Damien Miller65964d62000-07-11 09:16:22 +1000939 int slim, hlim;
Damien Miller5fc85652000-07-09 23:53:07 +1000940
941 getrlimit(resource, &rlim);
942
Damien Miller65964d62000-07-11 09:16:22 +1000943 slim = 0;
944 if (getuserattr(user, soft, &slim, SEC_INT) != -1) {
945 if (slim < 0) {
946 rlim.rlim_cur = RLIM_INFINITY;
947 } else if (slim != 0) {
948 /* See the wackiness below */
949 if (rlim.rlim_cur == slim * mult)
950 slim = 0;
951 else
952 rlim.rlim_cur = slim * mult;
953 }
954 }
Damien Miller5fc85652000-07-09 23:53:07 +1000955
Damien Miller65964d62000-07-11 09:16:22 +1000956 hlim = 0;
957 if (getuserattr(user, hard, &hlim, SEC_INT) != -1) {
958 if (hlim < 0) {
959 rlim.rlim_max = RLIM_INFINITY;
960 } else if (hlim != 0) {
961 rlim.rlim_max = hlim * mult;
962 }
963 }
Damien Miller5fc85652000-07-09 23:53:07 +1000964
Damien Miller65964d62000-07-11 09:16:22 +1000965 /*
966 * XXX For cpu and fsize the soft limit is set to the hard limit
967 * if the hard limit is left at its default value and the soft limit
968 * is changed from its default value, either by requesting it
969 * (slim == 0) or by setting it to the current default. At least
970 * that's how rlogind does it. If you're confused you're not alone.
971 * Bug or feature? AIX 4.3.1.2
972 */
973 if ((!strcmp(soft, "fsize") || !strcmp(soft, "cpu"))
974 && hlim == 0 && slim != 0)
975 rlim.rlim_max = rlim.rlim_cur;
976 /* A specified hard limit limits the soft limit */
977 else if (hlim > 0 && rlim.rlim_cur > rlim.rlim_max)
978 rlim.rlim_cur = rlim.rlim_max;
979 /* A soft limit can increase a hard limit */
980 else if (rlim.rlim_cur > rlim.rlim_max)
Damien Miller5fc85652000-07-09 23:53:07 +1000981 rlim.rlim_max = rlim.rlim_cur;
982
983 if (setrlimit(resource, &rlim) != 0)
Damien Miller65964d62000-07-11 09:16:22 +1000984 error("setrlimit(%.10s) failed: %.100s", soft, strerror(errno));
Damien Miller5fc85652000-07-09 23:53:07 +1000985}
986
987void set_limits_from_userattr(char *user)
988{
989 int mask;
990 char buf[16];
991
992 set_limit(user, S_UFSIZE, S_UFSIZE_HARD, RLIMIT_FSIZE, 512);
993 set_limit(user, S_UCPU, S_UCPU_HARD, RLIMIT_CPU, 1);
994 set_limit(user, S_UDATA, S_UDATA_HARD, RLIMIT_DATA, 512);
995 set_limit(user, S_USTACK, S_USTACK_HARD, RLIMIT_STACK, 512);
996 set_limit(user, S_URSS, S_URSS_HARD, RLIMIT_RSS, 512);
997 set_limit(user, S_UCORE, S_UCORE_HARD, RLIMIT_CORE, 512);
998#if defined(S_UNOFILE)
999 set_limit(user, S_UNOFILE, S_UNOFILE_HARD, RLIMIT_NOFILE, 1);
1000#endif
1001
1002 if (getuserattr(user, S_UMASK, &mask, SEC_INT) != -1) {
1003 /* Convert decimal to octal */
1004 (void) snprintf(buf, sizeof(buf), "%d", mask);
1005 if (sscanf(buf, "%o", &mask) == 1)
1006 umask(mask);
1007 }
1008}
1009#endif /* defined(HAVE_GETUSERATTR) */
1010
Damien Millerb38eff82000-04-01 11:09:21 +10001011/*
1012 * Performs common processing for the child, such as setting up the
1013 * environment, closing extra file descriptors, setting the user and group
1014 * ids, and executing the command or shell.
1015 */
Damien Miller4af51302000-04-16 11:18:38 +10001016void
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001017do_child(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +10001018{
Damien Miller7b28dc52000-09-05 13:34:53 +11001019 const char *shell, *hostname = NULL, *cp = NULL;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001020 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +10001021 char buf[256];
Damien Miller0c043c12000-06-07 21:22:38 +10001022 char cmd[1024];
Damien Millerad833b32000-08-23 10:46:23 +10001023 FILE *f = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001024 u_int envsize, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001025 char **env;
1026 extern char **environ;
1027 struct stat st;
1028 char *argv[10];
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001029 int do_xauth;
Damien Miller91606b12000-06-28 08:22:29 +10001030#ifdef WITH_IRIX_PROJECT
1031 prid_t projid;
1032#endif /* WITH_IRIX_PROJECT */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001033#ifdef WITH_IRIX_JOBS
1034 jid_t jid = 0;
1035#else
1036#ifdef WITH_IRIX_ARRAY
1037 int jid = 0;
1038#endif /* WITH_IRIX_ARRAY */
1039#endif /* WITH_IRIX_JOBS */
1040
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001041 do_xauth =
1042 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1043
Ben Lindstrom005dd222001-04-18 15:29:33 +00001044 /* remove hostkey from the child's memory */
1045 destroy_sensitive_data();
1046
Damien Millerd3a18572000-06-07 19:55:44 +10001047 /* login(1) is only called if we execute the login shell */
1048 if (options.use_login && command != NULL)
1049 options.use_login = 0;
1050
Damien Miller364a9bd2001-04-16 18:37:05 +10001051#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
Damien Millerad833b32000-08-23 10:46:23 +10001052 if (!options.use_login) {
1053# ifdef HAVE_LOGIN_CAP
1054 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1055 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1056 _PATH_NOLOGIN), "r");
1057# else /* HAVE_LOGIN_CAP */
1058 if (pw->pw_uid)
1059 f = fopen(_PATH_NOLOGIN, "r");
1060# endif /* HAVE_LOGIN_CAP */
1061 if (f) {
1062 /* /etc/nologin exists. Print its contents and exit. */
1063 while (fgets(buf, sizeof(buf), f))
1064 fputs(buf, stderr);
1065 fclose(f);
Damien Millerb38eff82000-04-01 11:09:21 +10001066 exit(254);
Damien Millerad833b32000-08-23 10:46:23 +10001067 }
Damien Millerb38eff82000-04-01 11:09:21 +10001068 }
Damien Miller364a9bd2001-04-16 18:37:05 +10001069#endif /* USE_PAM || HAVE_OSF_SIA */
Damien Millerb38eff82000-04-01 11:09:21 +10001070
Damien Millerad833b32000-08-23 10:46:23 +10001071 /* Set login name, uid, gid, and groups. */
Damien Millerb38eff82000-04-01 11:09:21 +10001072 /* Login(1) does this as well, and it needs uid 0 for the "-h"
1073 switch, so we let login(1) to this for us. */
1074 if (!options.use_login) {
Damien Millerb8c656e2000-06-28 15:22:41 +10001075#ifdef HAVE_OSF_SIA
Damien Millerb69407d2001-03-21 16:13:03 +11001076 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
Damien Miller364a9bd2001-04-16 18:37:05 +10001077 if (!check_quietlogin(s, command))
1078 do_motd();
Kevin Steves7fafa5c2001-02-13 18:45:00 +00001079#else /* HAVE_OSF_SIA */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001080#ifdef HAVE_CYGWIN
1081 if (is_winnt) {
1082#else
Damien Millerb38eff82000-04-01 11:09:21 +10001083 if (getuid() == 0 || geteuid() == 0) {
Damien Millerbac2d8a2000-09-05 16:13:06 +11001084#endif
Damien Millerad833b32000-08-23 10:46:23 +10001085# ifdef HAVE_GETUSERATTR
Damien Miller5fc85652000-07-09 23:53:07 +10001086 set_limits_from_userattr(pw->pw_name);
Damien Millerad833b32000-08-23 10:46:23 +10001087# endif /* HAVE_GETUSERATTR */
1088# ifdef HAVE_LOGIN_CAP
1089 if (setusercontext(lc, pw, pw->pw_uid,
1090 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1091 perror("unable to set user context");
1092 exit(1);
1093 }
1094# else /* HAVE_LOGIN_CAP */
Ben Lindstrome1bd29b2001-02-21 20:00:28 +00001095#if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1096 /* Sets login uid for accounting */
1097 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1098 error("setluid: %s", strerror(errno));
1099#endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1100
Damien Millerad833b32000-08-23 10:46:23 +10001101 if (setlogin(pw->pw_name) < 0)
1102 error("setlogin failed: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10001103 if (setgid(pw->pw_gid) < 0) {
1104 perror("setgid");
1105 exit(1);
1106 }
1107 /* Initialize the group list. */
1108 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1109 perror("initgroups");
1110 exit(1);
1111 }
1112 endgrent();
Damien Millerf9e93002001-03-27 16:12:24 +10001113# ifdef USE_PAM
1114 /*
1115 * PAM credentials may take the form of
1116 * supplementary groups. These will have been
1117 * wiped by the above initgroups() call.
1118 * Reestablish them here.
1119 */
1120 do_pam_setcred(0);
1121# endif /* USE_PAM */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001122# ifdef WITH_IRIX_JOBS
1123 jid = jlimit_startjob(pw->pw_name, pw->pw_uid, "interactive");
1124 if (jid == -1) {
1125 fatal("Failed to create job container: %.100s",
1126 strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001127 }
Ben Lindstrom980754c2000-11-12 00:04:24 +00001128# endif /* WITH_IRIX_JOBS */
Damien Millerad833b32000-08-23 10:46:23 +10001129# ifdef WITH_IRIX_ARRAY
Damien Miller91606b12000-06-28 08:22:29 +10001130 /* initialize array session */
Ben Lindstrom980754c2000-11-12 00:04:24 +00001131 if (jid == 0) {
1132 if (newarraysess() != 0)
1133 fatal("Failed to set up new array session: %.100s",
1134 strerror(errno));
1135 }
Damien Millerad833b32000-08-23 10:46:23 +10001136# endif /* WITH_IRIX_ARRAY */
1137# ifdef WITH_IRIX_PROJECT
Damien Miller91606b12000-06-28 08:22:29 +10001138 /* initialize irix project info */
1139 if ((projid = getdfltprojuser(pw->pw_name)) == -1) {
1140 debug("Failed to get project id, using projid 0");
1141 projid = 0;
1142 }
Damien Miller91606b12000-06-28 08:22:29 +10001143 if (setprid(projid))
1144 fatal("Failed to initialize project %d for %s: %.100s",
1145 (int)projid, pw->pw_name, strerror(errno));
Damien Millerad833b32000-08-23 10:46:23 +10001146# endif /* WITH_IRIX_PROJECT */
Ben Lindstrom49a79c02000-11-17 03:47:20 +00001147#ifdef WITH_IRIX_AUDIT
1148 if (sysconf(_SC_AUDIT)) {
1149 debug("Setting sat id to %d", (int) pw->pw_uid);
1150 if (satsetid(pw->pw_uid))
1151 debug("error setting satid: %.100s", strerror(errno));
1152 }
1153#endif /* WITH_IRIX_AUDIT */
1154
Damien Miller168a7002001-03-17 10:29:50 +11001155#ifdef _AIX
1156 /*
1157 * AIX has a "usrinfo" area where logname and
1158 * other stuff is stored - a few applications
1159 * actually use this and die if it's not set
1160 */
Damien Millerbebd8be2001-03-22 11:58:15 +11001161 if (s->ttyfd == -1)
1162 s->tty[0] = '\0';
Damien Millerbe081762001-03-21 11:11:57 +11001163 cp = xmalloc(22 + strlen(s->tty) +
Damien Miller168a7002001-03-17 10:29:50 +11001164 2 * strlen(pw->pw_name));
1165 i = sprintf(cp, "LOGNAME=%s%cNAME=%s%cTTY=%s%c%c",
Damien Millerbebd8be2001-03-22 11:58:15 +11001166 pw->pw_name, 0, pw->pw_name, 0, s->tty, 0, 0);
Damien Miller168a7002001-03-17 10:29:50 +11001167 if (usrinfo(SETUINFO, cp, i) == -1)
1168 fatal("Couldn't set usrinfo: %s",
1169 strerror(errno));
1170 debug3("AIX/UsrInfo: set len %d", i);
1171 xfree(cp);
1172#endif
1173
Damien Millerb38eff82000-04-01 11:09:21 +10001174 /* Permanently switch to the desired uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00001175 permanently_set_uid(pw);
Damien Millerad833b32000-08-23 10:46:23 +10001176# endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001177 }
Damien Millerad833b32000-08-23 10:46:23 +10001178#endif /* HAVE_OSF_SIA */
1179
Damien Millerbac2d8a2000-09-05 16:13:06 +11001180#ifdef HAVE_CYGWIN
1181 if (is_winnt)
1182#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001183 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
Damien Millercaf6dd62000-08-29 11:33:50 +11001184 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Millerb38eff82000-04-01 11:09:21 +10001185 }
1186 /*
1187 * Get the shell from the password data. An empty shell field is
1188 * legal, and means /bin/sh.
1189 */
1190 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Damien Millerad833b32000-08-23 10:46:23 +10001191#ifdef HAVE_LOGIN_CAP
1192 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1193#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001194
1195#ifdef AFS
1196 /* Try to get AFS tokens for the local cell. */
1197 if (k_hasafs()) {
1198 char cell[64];
Ben Lindstromec95ed92001-07-04 04:21:14 +00001199
Damien Millerb38eff82000-04-01 11:09:21 +10001200 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1201 krb_afslog(cell, 0);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001202
Damien Millerb38eff82000-04-01 11:09:21 +10001203 krb_afslog(0, 0);
1204 }
1205#endif /* AFS */
1206
1207 /* Initialize the environment. */
1208 envsize = 100;
1209 env = xmalloc(envsize * sizeof(char *));
1210 env[0] = NULL;
1211
Damien Millerbac2d8a2000-09-05 16:13:06 +11001212#ifdef HAVE_CYGWIN
1213 /*
1214 * The Windows environment contains some setting which are
1215 * important for a running system. They must not be dropped.
1216 */
Damien Millercb5e44a2000-09-29 12:12:36 +11001217 copy_environment(&env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +11001218#endif
1219
Damien Millerb38eff82000-04-01 11:09:21 +10001220 if (!options.use_login) {
1221 /* Set basic environment. */
1222 child_set_env(&env, &envsize, "USER", pw->pw_name);
1223 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1224 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001225#ifdef HAVE_LOGIN_CAP
1226 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH);
1227 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001228#else /* HAVE_LOGIN_CAP */
1229# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001230 /*
1231 * There's no standard path on Windows. The path contains
1232 * important components pointing to the system directories,
1233 * needed for loading shared libraries. So the path better
1234 * remains intact here.
1235 */
Damien Millerb38eff82000-04-01 11:09:21 +10001236 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
Damien Millercb5e44a2000-09-29 12:12:36 +11001237# endif /* HAVE_CYGWIN */
1238#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001239
1240 snprintf(buf, sizeof buf, "%.200s/%.50s",
1241 _PATH_MAILDIR, pw->pw_name);
1242 child_set_env(&env, &envsize, "MAIL", buf);
1243
1244 /* Normal systems set SHELL by default. */
1245 child_set_env(&env, &envsize, "SHELL", shell);
1246 }
1247 if (getenv("TZ"))
1248 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1249
1250 /* Set custom environment options from RSA authentication. */
1251 while (custom_environment) {
1252 struct envstring *ce = custom_environment;
1253 char *s = ce->s;
1254 int i;
1255 for (i = 0; s[i] != '=' && s[i]; i++);
1256 if (s[i] == '=') {
1257 s[i] = 0;
1258 child_set_env(&env, &envsize, s, s + i + 1);
1259 }
1260 custom_environment = ce->next;
1261 xfree(ce->s);
1262 xfree(ce);
1263 }
1264
1265 snprintf(buf, sizeof buf, "%.50s %d %d",
1266 get_remote_ipaddr(), get_remote_port(), get_local_port());
1267 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1268
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001269 if (s->ttyfd != -1)
1270 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1271 if (s->term)
1272 child_set_env(&env, &envsize, "TERM", s->term);
1273 if (s->display)
1274 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001275 if (original_command)
1276 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1277 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001278
1279#ifdef _AIX
Damien Millercb5e44a2000-09-29 12:12:36 +11001280 if ((cp = getenv("AUTHSTATE")) != NULL)
1281 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1282 if ((cp = getenv("KRB5CCNAME")) != NULL)
1283 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1284 read_environment_file(&env, &envsize, "/etc/environment");
Damien Millerb38eff82000-04-01 11:09:21 +10001285#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001286#ifdef KRB4
Ben Lindstromec95ed92001-07-04 04:21:14 +00001287 if (s->authctxt->krb4_ticket_file)
1288 child_set_env(&env, &envsize, "KRBTKFILE",
1289 s->authctxt->krb4_ticket_file);
1290#endif
1291#ifdef KRB5
1292 if (s->authctxt->krb5_ticket_file)
1293 child_set_env(&env, &envsize, "KRB5CCNAME",
1294 s->authctxt->krb5_ticket_file);
1295#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001296#ifdef USE_PAM
1297 /* Pull in any environment variables that may have been set by PAM. */
1298 do_pam_environment(&env, &envsize);
1299#endif /* USE_PAM */
1300
Damien Millerb38eff82000-04-01 11:09:21 +10001301 if (auth_get_socket_name() != NULL)
1302 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1303 auth_get_socket_name());
1304
1305 /* read $HOME/.ssh/environment. */
1306 if (!options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001307 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1308 pw->pw_dir);
Damien Millerb38eff82000-04-01 11:09:21 +10001309 read_environment_file(&env, &envsize, buf);
1310 }
1311 if (debug_flag) {
1312 /* dump the environment */
1313 fprintf(stderr, "Environment:\n");
1314 for (i = 0; env[i]; i++)
1315 fprintf(stderr, " %.200s\n", env[i]);
1316 }
Damien Millerad833b32000-08-23 10:46:23 +10001317 /* we have to stash the hostname before we close our socket. */
1318 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001319 hostname = get_remote_name_or_ip(utmp_len,
1320 options.reverse_mapping_check);
Damien Millerb38eff82000-04-01 11:09:21 +10001321 /*
1322 * Close the connection descriptors; note that this is the child, and
1323 * the server will still have the socket open, and it is important
1324 * that we do not shutdown it. Note that the descriptors cannot be
1325 * closed before building the environment, as we call
1326 * get_remote_ipaddr there.
1327 */
1328 if (packet_get_connection_in() == packet_get_connection_out())
1329 close(packet_get_connection_in());
1330 else {
1331 close(packet_get_connection_in());
1332 close(packet_get_connection_out());
1333 }
1334 /*
1335 * Close all descriptors related to channels. They will still remain
1336 * open in the parent.
1337 */
1338 /* XXX better use close-on-exec? -markus */
1339 channel_close_all();
1340
1341 /*
1342 * Close any extra file descriptors. Note that there may still be
1343 * descriptors left by system functions. They will be closed later.
1344 */
1345 endpwent();
1346
1347 /*
1348 * Close any extra open file descriptors so that we don\'t have them
1349 * hanging around in clients. Note that we want to do this after
1350 * initgroups, because at least on Solaris 2.3 it leaves file
1351 * descriptors open.
1352 */
1353 for (i = 3; i < 64; i++)
1354 close(i);
1355
1356 /* Change current directory to the user\'s home directory. */
Damien Millerad833b32000-08-23 10:46:23 +10001357 if (chdir(pw->pw_dir) < 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001358 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1359 pw->pw_dir, strerror(errno));
Damien Millerad833b32000-08-23 10:46:23 +10001360#ifdef HAVE_LOGIN_CAP
1361 if (login_getcapbool(lc, "requirehome", 0))
1362 exit(1);
1363#endif
1364 }
Damien Millerb38eff82000-04-01 11:09:21 +10001365
1366 /*
1367 * Must take new environment into use so that .ssh/rc, /etc/sshrc and
1368 * xauth are run in the proper environment.
1369 */
1370 environ = env;
1371
1372 /*
1373 * Run $HOME/.ssh/rc, /etc/sshrc, or xauth (whichever is found first
1374 * in this order).
1375 */
1376 if (!options.use_login) {
Ben Lindstrom005dd222001-04-18 15:29:33 +00001377 /* ignore _PATH_SSH_USER_RC for subsystems */
1378 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
Ben Lindstrom60402fd2001-05-03 22:37:26 +00001379 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1380 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
Damien Millerb38eff82000-04-01 11:09:21 +10001381 if (debug_flag)
Ben Lindstrom60402fd2001-05-03 22:37:26 +00001382 fprintf(stderr, "Running %s\n", cmd);
1383 f = popen(cmd, "w");
Damien Millerb38eff82000-04-01 11:09:21 +10001384 if (f) {
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001385 if (do_xauth)
1386 fprintf(f, "%s %s\n", s->auth_proto,
1387 s->auth_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001388 pclose(f);
1389 } else
Ben Lindstrom5428bea2001-05-06 02:53:25 +00001390 fprintf(stderr, "Could not run %s\n",
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001391 _PATH_SSH_USER_RC);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001392 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001393 if (debug_flag)
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001394 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1395 _PATH_SSH_SYSTEM_RC);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001396 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
Damien Millerb38eff82000-04-01 11:09:21 +10001397 if (f) {
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001398 if (do_xauth)
1399 fprintf(f, "%s %s\n", s->auth_proto,
1400 s->auth_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001401 pclose(f);
1402 } else
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001403 fprintf(stderr, "Could not run %s\n",
1404 _PATH_SSH_SYSTEM_RC);
1405 } else if (do_xauth && options.xauth_location != NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +10001406 /* Add authority data to .Xauthority if appropriate. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001407 char *screen = strchr(s->display, ':');
1408
1409 if (debug_flag) {
1410 fprintf(stderr,
1411 "Running %.100s add "
1412 "%.100s %.100s %.100s\n",
1413 options.xauth_location, s->display,
1414 s->auth_proto, s->auth_data);
1415 if (screen != NULL)
Damien Millerb1715dc2000-05-30 13:44:51 +10001416 fprintf(stderr,
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001417 "Adding %.*s/unix%s %s %s\n",
1418 (int)(screen - s->display),
1419 s->display, screen,
1420 s->auth_proto, s->auth_data);
1421 }
1422 snprintf(cmd, sizeof cmd, "%s -q -",
1423 options.xauth_location);
1424 f = popen(cmd, "w");
1425 if (f) {
1426 fprintf(f, "add %s %s %s\n", s->display,
1427 s->auth_proto, s->auth_data);
1428 if (screen != NULL)
1429 fprintf(f, "add %.*s/unix%s %s %s\n",
1430 (int)(screen - s->display),
1431 s->display, screen,
1432 s->auth_proto,
1433 s->auth_data);
1434 pclose(f);
1435 } else {
1436 fprintf(stderr, "Could not run %s\n",
1437 cmd);
Damien Millerb38eff82000-04-01 11:09:21 +10001438 }
1439 }
Damien Millerb38eff82000-04-01 11:09:21 +10001440 /* Get the last component of the shell name. */
1441 cp = strrchr(shell, '/');
1442 if (cp)
1443 cp++;
1444 else
1445 cp = shell;
1446 }
Ben Lindstromde71cda2001-03-24 00:43:26 +00001447
1448 /* restore SIGPIPE for child */
1449 signal(SIGPIPE, SIG_DFL);
1450
Damien Millerb38eff82000-04-01 11:09:21 +10001451 /*
1452 * If we have no command, execute the shell. In this case, the shell
1453 * name to be passed in argv[0] is preceded by '-' to indicate that
1454 * this is a login shell.
1455 */
1456 if (!command) {
1457 if (!options.use_login) {
1458 char buf[256];
1459
1460 /*
1461 * Check for mail if we have a tty and it was enabled
1462 * in server options.
1463 */
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001464 if (s->ttyfd != -1 && options.check_mail) {
Damien Millerb38eff82000-04-01 11:09:21 +10001465 char *mailbox;
1466 struct stat mailstat;
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001467
Damien Millerb38eff82000-04-01 11:09:21 +10001468 mailbox = getenv("MAIL");
1469 if (mailbox != NULL) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001470 if (stat(mailbox, &mailstat) != 0 ||
1471 mailstat.st_size == 0)
Damien Millerb38eff82000-04-01 11:09:21 +10001472 printf("No mail.\n");
1473 else if (mailstat.st_mtime < mailstat.st_atime)
1474 printf("You have mail.\n");
1475 else
1476 printf("You have new mail.\n");
1477 }
1478 }
1479 /* Start the shell. Set initial character to '-'. */
1480 buf[0] = '-';
1481 strncpy(buf + 1, cp, sizeof(buf) - 1);
1482 buf[sizeof(buf) - 1] = 0;
1483
1484 /* Execute the shell. */
1485 argv[0] = buf;
1486 argv[1] = NULL;
1487 execve(shell, argv, env);
1488
1489 /* Executing the shell failed. */
1490 perror(shell);
1491 exit(1);
1492
1493 } else {
1494 /* Launch login(1). */
1495
Damien Millerad833b32000-08-23 10:46:23 +10001496 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Ben Lindstrom97c677d2001-05-08 20:33:05 +00001497#ifdef LOGIN_NEEDS_TERM
1498 s->term? s->term : "unknown",
1499#endif
Damien Miller942da032000-08-18 13:59:06 +10001500 "-p", "-f", "--", pw->pw_name, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001501
1502 /* Login couldn't be executed, die. */
1503
1504 perror("login");
1505 exit(1);
1506 }
1507 }
1508 /*
1509 * Execute the command using the user's shell. This uses the -c
1510 * option to execute the command.
1511 */
1512 argv[0] = (char *) cp;
1513 argv[1] = "-c";
1514 argv[2] = (char *) command;
1515 argv[3] = NULL;
1516 execve(shell, argv, env);
1517 perror(shell);
1518 exit(1);
1519}
1520
1521Session *
1522session_new(void)
1523{
1524 int i;
1525 static int did_init = 0;
1526 if (!did_init) {
1527 debug("session_new: init");
1528 for(i = 0; i < MAX_SESSIONS; i++) {
1529 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001530 }
1531 did_init = 1;
1532 }
1533 for(i = 0; i < MAX_SESSIONS; i++) {
1534 Session *s = &sessions[i];
1535 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001536 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001537 s->chanid = -1;
1538 s->ptyfd = -1;
1539 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001540 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001541 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001542 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001543 return s;
1544 }
1545 }
1546 return NULL;
1547}
1548
Ben Lindstrombba81212001-06-25 05:01:22 +00001549static void
Damien Millerb38eff82000-04-01 11:09:21 +10001550session_dump(void)
1551{
1552 int i;
1553 for(i = 0; i < MAX_SESSIONS; i++) {
1554 Session *s = &sessions[i];
1555 debug("dump: used %d session %d %p channel %d pid %d",
1556 s->used,
1557 s->self,
1558 s,
1559 s->chanid,
1560 s->pid);
1561 }
1562}
1563
Damien Millerefb4afe2000-04-12 18:45:05 +10001564int
1565session_open(int chanid)
1566{
1567 Session *s = session_new();
1568 debug("session_open: channel %d", chanid);
1569 if (s == NULL) {
1570 error("no more sessions");
1571 return 0;
1572 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001573 s->pw = auth_get_user();
1574 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001575 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001576 debug("session_open: session %d: link with channel %d", s->self, chanid);
1577 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001578 return 1;
1579}
1580
Ben Lindstrombba81212001-06-25 05:01:22 +00001581static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001582session_by_channel(int id)
1583{
1584 int i;
1585 for(i = 0; i < MAX_SESSIONS; i++) {
1586 Session *s = &sessions[i];
1587 if (s->used && s->chanid == id) {
1588 debug("session_by_channel: session %d channel %d", i, id);
1589 return s;
1590 }
1591 }
1592 debug("session_by_channel: unknown channel %d", id);
1593 session_dump();
1594 return NULL;
1595}
1596
Ben Lindstrombba81212001-06-25 05:01:22 +00001597static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001598session_by_pid(pid_t pid)
1599{
1600 int i;
1601 debug("session_by_pid: pid %d", pid);
1602 for(i = 0; i < MAX_SESSIONS; i++) {
1603 Session *s = &sessions[i];
1604 if (s->used && s->pid == pid)
1605 return s;
1606 }
1607 error("session_by_pid: unknown pid %d", pid);
1608 session_dump();
1609 return NULL;
1610}
1611
Ben Lindstrombba81212001-06-25 05:01:22 +00001612static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001613session_window_change_req(Session *s)
1614{
1615 s->col = packet_get_int();
1616 s->row = packet_get_int();
1617 s->xpixel = packet_get_int();
1618 s->ypixel = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001619 packet_done();
Damien Millerefb4afe2000-04-12 18:45:05 +10001620 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1621 return 1;
1622}
1623
Ben Lindstrombba81212001-06-25 05:01:22 +00001624static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001625session_pty_req(Session *s)
1626{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001627 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001628 int n_bytes;
Damien Millerefb4afe2000-04-12 18:45:05 +10001629
Ben Lindstrom49c12602001-06-13 04:37:36 +00001630 if (no_pty_flag) {
1631 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001632 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001633 }
1634 if (s->ttyfd != -1) {
1635 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001636 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001637 }
1638
Damien Millerefb4afe2000-04-12 18:45:05 +10001639 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001640
1641 if (compat20) {
1642 s->col = packet_get_int();
1643 s->row = packet_get_int();
1644 } else {
1645 s->row = packet_get_int();
1646 s->col = packet_get_int();
1647 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001648 s->xpixel = packet_get_int();
1649 s->ypixel = packet_get_int();
1650
1651 if (strcmp(s->term, "") == 0) {
1652 xfree(s->term);
1653 s->term = NULL;
1654 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001655
Damien Millerefb4afe2000-04-12 18:45:05 +10001656 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001657 debug("Allocating pty.");
Damien Millerefb4afe2000-04-12 18:45:05 +10001658 if (!pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001659 if (s->term)
1660 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001661 s->term = NULL;
1662 s->ptyfd = -1;
1663 s->ttyfd = -1;
1664 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001665 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001666 }
1667 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001668
1669 /* for SSH1 the tty modes length is not given */
1670 if (!compat20)
1671 n_bytes = packet_remaining();
1672 tty_parse_modes(s->ttyfd, &n_bytes);
1673
Damien Millerefb4afe2000-04-12 18:45:05 +10001674 /*
1675 * Add a cleanup function to clear the utmp entry and record logout
1676 * time in case we call fatal() (e.g., the connection gets closed).
1677 */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001678 fatal_add_cleanup(session_pty_cleanup, (void *)s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001679 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001680
1681 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001682 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1683
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001684 packet_done();
Damien Millere247cc42000-05-07 12:03:14 +10001685 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001686 return 1;
1687}
1688
Ben Lindstrombba81212001-06-25 05:01:22 +00001689static int
Damien Millerbd483e72000-04-30 10:00:53 +10001690session_subsystem_req(Session *s)
1691{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001692 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001693 int success = 0;
1694 char *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001695 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001696
1697 packet_done();
1698 log("subsystem request for %s", subsys);
1699
Damien Millerf6d9e222000-06-18 14:50:44 +10001700 for (i = 0; i < options.num_subsystems; i++) {
1701 if(strcmp(subsys, options.subsystem_name[i]) == 0) {
1702 debug("subsystem: exec() %s", options.subsystem_command[i]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001703 s->is_subsystem = 1;
Ben Lindstromb4c961d2001-03-22 01:25:37 +00001704 do_exec_no_pty(s, options.subsystem_command[i]);
Damien Millerf6d9e222000-06-18 14:50:44 +10001705 success = 1;
1706 }
1707 }
1708
1709 if (!success)
1710 log("subsystem request for %s failed, subsystem not found", subsys);
1711
Damien Millerbd483e72000-04-30 10:00:53 +10001712 xfree(subsys);
1713 return success;
1714}
1715
Ben Lindstrombba81212001-06-25 05:01:22 +00001716static int
Damien Millerbd483e72000-04-30 10:00:53 +10001717session_x11_req(Session *s)
1718{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001719 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001720
1721 s->single_connection = packet_get_char();
1722 s->auth_proto = packet_get_string(NULL);
1723 s->auth_data = packet_get_string(NULL);
1724 s->screen = packet_get_int();
1725 packet_done();
1726
Ben Lindstrom768176b2001-06-09 01:29:12 +00001727 success = session_setup_x11fwd(s);
1728 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001729 xfree(s->auth_proto);
1730 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001731 s->auth_proto = NULL;
1732 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001733 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001734 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001735}
1736
Ben Lindstrombba81212001-06-25 05:01:22 +00001737static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001738session_shell_req(Session *s)
1739{
Damien Millerf6d9e222000-06-18 14:50:44 +10001740 packet_done();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001741 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001742 return 1;
1743}
1744
Ben Lindstrombba81212001-06-25 05:01:22 +00001745static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001746session_exec_req(Session *s)
1747{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001748 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001749 char *command = packet_get_string(&len);
1750 packet_done();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001751 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001752 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001753 return 1;
1754}
1755
Ben Lindstrombba81212001-06-25 05:01:22 +00001756static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001757session_auth_agent_req(Session *s)
1758{
1759 static int called = 0;
1760 packet_done();
Ben Lindstrom14920292000-11-21 21:24:55 +00001761 if (no_agent_forwarding_flag) {
1762 debug("session_auth_agent_req: no_agent_forwarding_flag");
1763 return 0;
1764 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001765 if (called) {
1766 return 0;
1767 } else {
1768 called = 1;
1769 return auth_input_request_forwarding(s->pw);
1770 }
1771}
1772
Damien Millerefb4afe2000-04-12 18:45:05 +10001773void
1774session_input_channel_req(int id, void *arg)
1775{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001776 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001777 int reply;
1778 int success = 0;
1779 char *rtype;
1780 Session *s;
1781 Channel *c;
1782
1783 rtype = packet_get_string(&len);
1784 reply = packet_get_char();
1785
1786 s = session_by_channel(id);
1787 if (s == NULL)
1788 fatal("session_input_channel_req: channel %d: no session", id);
1789 c = channel_lookup(id);
1790 if (c == NULL)
1791 fatal("session_input_channel_req: channel %d: bad channel", id);
1792
1793 debug("session_input_channel_req: session %d channel %d request %s reply %d",
1794 s->self, id, rtype, reply);
1795
1796 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001797 * a session is in LARVAL state until a shell, a command
1798 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001799 */
1800 if (c->type == SSH_CHANNEL_LARVAL) {
1801 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001802 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001803 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001804 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001805 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001806 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001807 } else if (strcmp(rtype, "x11-req") == 0) {
1808 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001809 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1810 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001811 } else if (strcmp(rtype, "subsystem") == 0) {
1812 success = session_subsystem_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001813 }
1814 }
1815 if (strcmp(rtype, "window-change") == 0) {
1816 success = session_window_change_req(s);
1817 }
1818
1819 if (reply) {
1820 packet_start(success ?
1821 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1822 packet_put_int(c->remote_id);
1823 packet_send();
1824 }
1825 xfree(rtype);
1826}
1827
1828void
1829session_set_fds(Session *s, int fdin, int fdout, int fderr)
1830{
1831 if (!compat20)
1832 fatal("session_set_fds: called for proto != 2.0");
1833 /*
1834 * now that have a child and a pipe to the child,
1835 * we can activate our channel and register the fd's
1836 */
1837 if (s->chanid == -1)
1838 fatal("no channel for session %d", s->self);
1839 channel_set_fds(s->chanid,
1840 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001841 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
1842 1);
Damien Millerefb4afe2000-04-12 18:45:05 +10001843}
1844
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001845/*
1846 * Function to perform pty cleanup. Also called if we get aborted abnormally
1847 * (e.g., due to a dropped connection).
1848 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001849static void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001850session_pty_cleanup(void *session)
Damien Millerb38eff82000-04-01 11:09:21 +10001851{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001852 Session *s = session;
1853
1854 if (s == NULL) {
1855 error("session_pty_cleanup: no session");
1856 return;
1857 }
1858 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001859 return;
1860
Kevin Steves43cdef32001-02-11 14:12:08 +00001861 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001862
Damien Millerb38eff82000-04-01 11:09:21 +10001863 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001864 if (s->pid != 0)
1865 record_logout(s->pid, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001866
1867 /* Release the pseudo-tty. */
1868 pty_release(s->tty);
1869
1870 /*
1871 * Close the server side of the socket pairs. We must do this after
1872 * the pty cleanup, so that another process doesn't get this pty
1873 * while we're still cleaning up.
1874 */
1875 if (close(s->ptymaster) < 0)
1876 error("close(s->ptymaster): %s", strerror(errno));
1877}
Damien Millerefb4afe2000-04-12 18:45:05 +10001878
Ben Lindstrombba81212001-06-25 05:01:22 +00001879static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001880session_exit_message(Session *s, int status)
1881{
1882 Channel *c;
1883 if (s == NULL)
1884 fatal("session_close: no session");
1885 c = channel_lookup(s->chanid);
1886 if (c == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001887 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001888 s->self, s->chanid);
1889 debug("session_exit_message: session %d channel %d pid %d",
1890 s->self, s->chanid, s->pid);
1891
1892 if (WIFEXITED(status)) {
1893 channel_request_start(s->chanid,
1894 "exit-status", 0);
1895 packet_put_int(WEXITSTATUS(status));
1896 packet_send();
1897 } else if (WIFSIGNALED(status)) {
1898 channel_request_start(s->chanid,
1899 "exit-signal", 0);
1900 packet_put_int(WTERMSIG(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001901#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001902 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001903#else /* WCOREDUMP */
1904 packet_put_char(0);
1905#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001906 packet_put_cstring("");
1907 packet_put_cstring("");
1908 packet_send();
1909 } else {
1910 /* Some weird exit cause. Just exit. */
1911 packet_disconnect("wait returned status %04x.", status);
1912 }
1913
1914 /* disconnect channel */
1915 debug("session_exit_message: release channel %d", s->chanid);
1916 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001917 /*
1918 * emulate a write failure with 'chan_write_failed', nobody will be
1919 * interested in data we write.
1920 * Note that we must not call 'chan_read_failed', since there could
1921 * be some more data waiting in the pipe.
1922 */
Damien Millerbd483e72000-04-30 10:00:53 +10001923 if (c->ostate != CHAN_OUTPUT_CLOSED)
1924 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001925 s->chanid = -1;
1926}
1927
Ben Lindstrombba81212001-06-25 05:01:22 +00001928static void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001929session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001930{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001931 debug("session_close: session %d pid %d", s->self, s->pid);
1932 if (s->ttyfd != -1) {
1933 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1934 session_pty_cleanup(s);
1935 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001936 if (s->term)
1937 xfree(s->term);
1938 if (s->display)
1939 xfree(s->display);
1940 if (s->auth_data)
1941 xfree(s->auth_data);
1942 if (s->auth_proto)
1943 xfree(s->auth_proto);
1944 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001945 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001946}
1947
1948void
1949session_close_by_pid(pid_t pid, int status)
1950{
1951 Session *s = session_by_pid(pid);
1952 if (s == NULL) {
Ben Lindstrom7a837222001-06-13 19:23:32 +00001953 debug("session_close_by_pid: no session for pid %d", pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001954 return;
1955 }
1956 if (s->chanid != -1)
1957 session_exit_message(s, status);
1958 session_close(s);
1959}
1960
1961/*
1962 * this is called when a channel dies before
1963 * the session 'child' itself dies
1964 */
1965void
1966session_close_by_channel(int id, void *arg)
1967{
1968 Session *s = session_by_channel(id);
1969 if (s == NULL) {
1970 debug("session_close_by_channel: no session for channel %d", id);
1971 return;
1972 }
1973 /* disconnect channel */
1974 channel_cancel_cleanup(s->chanid);
1975 s->chanid = -1;
1976
1977 debug("session_close_by_channel: channel %d kill %d", id, s->pid);
1978 if (s->pid == 0) {
1979 /* close session immediately */
1980 session_close(s);
1981 } else {
1982 /* notify child, delay session cleanup */
Damien Miller7a445bb2000-06-26 13:12:37 +10001983 if (kill(s->pid, (s->ttyfd == -1) ? SIGTERM : SIGHUP) < 0)
Damien Millerefb4afe2000-04-12 18:45:05 +10001984 error("session_close_by_channel: kill %d: %s",
1985 s->pid, strerror(errno));
1986 }
1987}
1988
Ben Lindstrombba81212001-06-25 05:01:22 +00001989static char *
Damien Millere247cc42000-05-07 12:03:14 +10001990session_tty_list(void)
1991{
1992 static char buf[1024];
1993 int i;
1994 buf[0] = '\0';
1995 for(i = 0; i < MAX_SESSIONS; i++) {
1996 Session *s = &sessions[i];
1997 if (s->used && s->ttyfd != -1) {
1998 if (buf[0] != '\0')
1999 strlcat(buf, ",", sizeof buf);
2000 strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
2001 }
2002 }
2003 if (buf[0] == '\0')
2004 strlcpy(buf, "notty", sizeof buf);
2005 return buf;
2006}
2007
2008void
2009session_proctitle(Session *s)
2010{
2011 if (s->pw == NULL)
2012 error("no user for session %d", s->self);
2013 else
2014 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2015}
2016
Ben Lindstrom768176b2001-06-09 01:29:12 +00002017int
2018session_setup_x11fwd(Session *s)
2019{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002020 struct stat st;
2021
2022 if (no_x11_forwarding_flag) {
2023 packet_send_debug("X11 forwarding disabled in user configuration file.");
2024 return 0;
2025 }
2026 if (!options.x11_forwarding) {
2027 debug("X11 forwarding disabled in server configuration file.");
2028 return 0;
2029 }
2030 if (!options.xauth_location ||
2031 (stat(options.xauth_location, &st) == -1)) {
2032 packet_send_debug("No xauth program; cannot forward with spoofing.");
2033 return 0;
2034 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002035 if (options.use_login) {
2036 packet_send_debug("X11 forwarding disabled; "
2037 "not compatible with UseLogin=yes.");
2038 return 0;
2039 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002040 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002041 debug("X11 display already set.");
2042 return 0;
2043 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002044 s->display = x11_create_display_inet(s->screen, options.x11_display_offset);
2045 if (s->display == NULL) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002046 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002047 return 0;
2048 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002049 return 1;
2050}
2051
Ben Lindstrombba81212001-06-25 05:01:22 +00002052static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002053do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002054{
Damien Millerefb4afe2000-04-12 18:45:05 +10002055 server_loop2();
2056}