blob: 2b228906d20a10121ebeaca8a7b24c4be4b29e2f [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"
Darren Tucker072a7b12003-10-15 16:10:25 +100036RCSID("$OpenBSD: session.c,v 1.166 2003/10/14 19:54:39 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
Darren Tucker0efd1552003-08-26 11:49:55 +100061#ifdef GSSAPI
62#include "ssh-gss.h"
63#endif
64
Damien Millerb38eff82000-04-01 11:09:21 +100065/* func */
66
67Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000068void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100069void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000070void session_proctitle(Session *);
71int session_setup_x11fwd(Session *);
72void do_exec_pty(Session *, const char *);
73void do_exec_no_pty(Session *, const char *);
74void do_exec(Session *, const char *);
75void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000076#ifdef LOGIN_NEEDS_UTMPX
77static void do_pre_login(Session *s);
78#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000079void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100080void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000081int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100082
Ben Lindstrombba81212001-06-25 05:01:22 +000083static void do_authenticated1(Authctxt *);
84static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000085
Ben Lindstrombba81212001-06-25 05:01:22 +000086static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +000087
Damien Millerb38eff82000-04-01 11:09:21 +100088/* import */
89extern ServerOptions options;
90extern char *__progname;
91extern int log_stderr;
92extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +000093extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +100094extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +000095extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +100096extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +100097
Damien Miller7b28dc52000-09-05 13:34:53 +110098/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +000099const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100100
Damien Millerb38eff82000-04-01 11:09:21 +1000101/* data */
102#define MAX_SESSIONS 10
103Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100104
Damien Millerad833b32000-08-23 10:46:23 +1000105#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000106login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000107#endif
108
Darren Tucker3e33cec2003-10-02 16:12:36 +1000109static int is_child = 0;
110
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000111/* Name and directory of socket for authentication agent forwarding. */
112static char *auth_sock_name = NULL;
113static char *auth_sock_dir = NULL;
114
115/* removes the agent forwarding socket */
116
117static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000118auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000119{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000120 if (auth_sock_name != NULL) {
121 temporarily_use_uid(pw);
122 unlink(auth_sock_name);
123 rmdir(auth_sock_dir);
124 auth_sock_name = NULL;
125 restore_uid();
126 }
127}
128
129static int
130auth_input_request_forwarding(struct passwd * pw)
131{
132 Channel *nc;
133 int sock;
134 struct sockaddr_un sunaddr;
135
136 if (auth_sock_name != NULL) {
137 error("authentication forwarding requested twice.");
138 return 0;
139 }
140
141 /* Temporarily drop privileged uid for mkdir/bind. */
142 temporarily_use_uid(pw);
143
144 /* Allocate a buffer for the socket name, and format the name. */
145 auth_sock_name = xmalloc(MAXPATHLEN);
146 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000147 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000148
149 /* Create private directory for socket */
150 if (mkdtemp(auth_sock_dir) == NULL) {
151 packet_send_debug("Agent forwarding disabled: "
152 "mkdtemp() failed: %.100s", strerror(errno));
153 restore_uid();
154 xfree(auth_sock_name);
155 xfree(auth_sock_dir);
156 auth_sock_name = NULL;
157 auth_sock_dir = NULL;
158 return 0;
159 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000160 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
161 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000162
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000163 /* Create the socket. */
164 sock = socket(AF_UNIX, SOCK_STREAM, 0);
165 if (sock < 0)
166 packet_disconnect("socket: %.100s", strerror(errno));
167
168 /* Bind it to the name. */
169 memset(&sunaddr, 0, sizeof(sunaddr));
170 sunaddr.sun_family = AF_UNIX;
171 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
172
173 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
174 packet_disconnect("bind: %.100s", strerror(errno));
175
176 /* Restore the privileged uid. */
177 restore_uid();
178
179 /* Start listening on the socket. */
180 if (listen(sock, 5) < 0)
181 packet_disconnect("listen: %.100s", strerror(errno));
182
183 /* Allocate a channel for the authentication agent socket. */
184 nc = channel_new("auth socket",
185 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
186 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000187 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000188 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
189 return 1;
190}
191
192
Ben Lindstromb31783d2001-03-22 02:02:12 +0000193void
194do_authenticated(Authctxt *authctxt)
195{
Damien Miller97f39ae2003-02-24 11:57:01 +1100196 setproctitle("%s", authctxt->pw->pw_name);
197
Ben Lindstromb31783d2001-03-22 02:02:12 +0000198 /*
199 * Cancel the alarm we set to limit the time taken for
200 * authentication.
201 */
202 alarm(0);
203 if (startup_pipe != -1) {
204 close(startup_pipe);
205 startup_pipe = -1;
206 }
Damien Millere49d0962001-11-13 23:46:18 +1100207
Ben Lindstromb31783d2001-03-22 02:02:12 +0000208 /* setup the channel layer */
209 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
210 channel_permit_all_opens();
211
212 if (compat20)
213 do_authenticated2(authctxt);
214 else
215 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000216
Darren Tucker3e33cec2003-10-02 16:12:36 +1000217 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000218}
219
Damien Millerb38eff82000-04-01 11:09:21 +1000220/*
Damien Millerb38eff82000-04-01 11:09:21 +1000221 * Prepares for an interactive session. This is called after the user has
222 * been successfully authenticated. During this message exchange, pseudo
223 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
224 * are requested, etc.
225 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000226static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000227do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000228{
229 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000230 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100231 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000232 int enable_compression_after_reply = 0;
233 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000234
235 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000236 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000237 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000238
Damien Millerb38eff82000-04-01 11:09:21 +1000239 /*
240 * We stay in this loop until the client requests to execute a shell
241 * or a command.
242 */
243 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000244 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000245
246 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100247 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000248
249 /* Process the packet. */
250 switch (type) {
251 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000252 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100253 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000254 if (compression_level < 1 || compression_level > 9) {
255 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100256 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000257 break;
258 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000259 if (!options.compression) {
260 debug2("compression disabled");
261 break;
262 }
Damien Millerb38eff82000-04-01 11:09:21 +1000263 /* Enable compression after we have responded with SUCCESS. */
264 enable_compression_after_reply = 1;
265 success = 1;
266 break;
267
268 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000269 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000270 break;
271
272 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000273 s->auth_proto = packet_get_string(&proto_len);
274 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000275
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000276 screen_flag = packet_get_protocol_flags() &
277 SSH_PROTOFLAG_SCREEN_NUMBER;
278 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
279
280 if (packet_remaining() == 4) {
281 if (!screen_flag)
282 debug2("Buggy client: "
283 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000284 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000285 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000286 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000287 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100288 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000289 success = session_setup_x11fwd(s);
290 if (!success) {
291 xfree(s->auth_proto);
292 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000293 s->auth_proto = NULL;
294 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000295 }
Damien Millerb38eff82000-04-01 11:09:21 +1000296 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000297
298 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
299 if (no_agent_forwarding_flag || compat13) {
300 debug("Authentication agent forwarding not permitted for this authentication.");
301 break;
302 }
303 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000304 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000305 break;
306
307 case SSH_CMSG_PORT_FORWARD_REQUEST:
308 if (no_port_forwarding_flag) {
309 debug("Port forwarding not permitted for this authentication.");
310 break;
311 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100312 if (!options.allow_tcp_forwarding) {
313 debug("Port forwarding not permitted.");
314 break;
315 }
Damien Millerb38eff82000-04-01 11:09:21 +1000316 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000317 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000318 success = 1;
319 break;
320
321 case SSH_CMSG_MAX_PACKET_SIZE:
322 if (packet_set_maxsize(packet_get_int()) > 0)
323 success = 1;
324 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100325
Damien Millerb38eff82000-04-01 11:09:21 +1000326 case SSH_CMSG_EXEC_SHELL:
327 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000328 if (type == SSH_CMSG_EXEC_CMD) {
329 command = packet_get_string(&dlen);
330 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000331 do_exec(s, command);
332 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000333 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000334 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000335 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100336 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000337 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000338 return;
339
340 default:
341 /*
342 * Any unknown messages in this phase are ignored,
343 * and a failure message is returned.
344 */
Damien Miller996acd22003-04-09 20:59:48 +1000345 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000346 }
347 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
348 packet_send();
349 packet_write_wait();
350
351 /* Enable compression now that we have replied if appropriate. */
352 if (enable_compression_after_reply) {
353 enable_compression_after_reply = 0;
354 packet_start_compression(compression_level);
355 }
356 }
357}
358
359/*
360 * This is called to fork and execute a command when we have no tty. This
361 * will call do_child from the child, and server_loop from the parent after
362 * setting up file descriptors and such.
363 */
Damien Miller4af51302000-04-16 11:18:38 +1000364void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000365do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000366{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000367 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000368
369#ifdef USE_PIPES
370 int pin[2], pout[2], perr[2];
371 /* Allocate pipes for communicating with the program. */
372 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
373 packet_disconnect("Could not create pipes: %.100s",
374 strerror(errno));
375#else /* USE_PIPES */
376 int inout[2], err[2];
377 /* Uses socket pairs to communicate with the program. */
378 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
379 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
380 packet_disconnect("Could not create socket pairs: %.100s",
381 strerror(errno));
382#endif /* USE_PIPES */
383 if (s == NULL)
384 fatal("do_exec_no_pty: no session");
385
Damien Millere247cc42000-05-07 12:03:14 +1000386 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000387
Damien Millerc5946332001-02-28 11:46:11 +1100388#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000389 if (options.use_pam) {
Damien Miller4e448a32003-05-14 15:11:48 +1000390 do_pam_setcred(1);
391 if (is_pam_password_change_required())
392 packet_disconnect("Password change required but no "
393 "TTY available");
394 }
Kevin Stevesff793a22001-02-21 16:36:51 +0000395#endif /* USE_PAM */
396
Damien Millerb38eff82000-04-01 11:09:21 +1000397 /* Fork the child. */
398 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000399 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000400
Damien Millerb38eff82000-04-01 11:09:21 +1000401 /* Child. Reinitialize the log since the pid has changed. */
402 log_init(__progname, options.log_level, options.log_facility, log_stderr);
403
404 /*
405 * Create a new session and process group since the 4.4BSD
406 * setlogin() affects the entire process group.
407 */
408 if (setsid() < 0)
409 error("setsid failed: %.100s", strerror(errno));
410
411#ifdef USE_PIPES
412 /*
413 * Redirect stdin. We close the parent side of the socket
414 * pair, and make the child side the standard input.
415 */
416 close(pin[1]);
417 if (dup2(pin[0], 0) < 0)
418 perror("dup2 stdin");
419 close(pin[0]);
420
421 /* Redirect stdout. */
422 close(pout[0]);
423 if (dup2(pout[1], 1) < 0)
424 perror("dup2 stdout");
425 close(pout[1]);
426
427 /* Redirect stderr. */
428 close(perr[0]);
429 if (dup2(perr[1], 2) < 0)
430 perror("dup2 stderr");
431 close(perr[1]);
432#else /* USE_PIPES */
433 /*
434 * Redirect stdin, stdout, and stderr. Stdin and stdout will
435 * use the same socket, as some programs (particularly rdist)
436 * seem to depend on it.
437 */
438 close(inout[1]);
439 close(err[1]);
440 if (dup2(inout[0], 0) < 0) /* stdin */
441 perror("dup2 stdin");
442 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
443 perror("dup2 stdout");
444 if (dup2(err[0], 2) < 0) /* stderr */
445 perror("dup2 stderr");
446#endif /* USE_PIPES */
447
Tim Rice81ed5182002-09-25 17:38:46 -0700448#ifdef _UNICOS
449 cray_init_job(s->pw); /* set up cray jid and tmpdir */
450#endif
451
Damien Millerb38eff82000-04-01 11:09:21 +1000452 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000453 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000454 /* NOTREACHED */
455 }
Tim Rice81ed5182002-09-25 17:38:46 -0700456#ifdef _UNICOS
457 signal(WJSIGNAL, cray_job_termination_handler);
458#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100459#ifdef HAVE_CYGWIN
460 if (is_winnt)
461 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
462#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000463 if (pid < 0)
464 packet_disconnect("fork failed: %.100s", strerror(errno));
465 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000466 /* Set interactive/non-interactive mode. */
467 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000468#ifdef USE_PIPES
469 /* We are the parent. Close the child sides of the pipes. */
470 close(pin[0]);
471 close(pout[1]);
472 close(perr[1]);
473
Damien Millerefb4afe2000-04-12 18:45:05 +1000474 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000475 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000476 } else {
477 /* Enter the interactive session. */
478 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000479 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000480 }
Damien Millerb38eff82000-04-01 11:09:21 +1000481#else /* USE_PIPES */
482 /* We are the parent. Close the child sides of the socket pairs. */
483 close(inout[0]);
484 close(err[0]);
485
486 /*
487 * Enter the interactive session. Note: server_loop must be able to
488 * handle the case that fdin and fdout are the same.
489 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000490 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000491 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000492 } else {
493 server_loop(pid, inout[1], inout[1], err[1]);
494 /* server_loop has closed inout[1] and err[1]. */
495 }
Damien Millerb38eff82000-04-01 11:09:21 +1000496#endif /* USE_PIPES */
497}
498
499/*
500 * This is called to fork and execute a command when we have a tty. This
501 * will call do_child from the child, and server_loop from the parent after
502 * setting up file descriptors, controlling tty, updating wtmp, utmp,
503 * lastlog, and other such operations.
504 */
Damien Miller4af51302000-04-16 11:18:38 +1000505void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000506do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000507{
Damien Millerb38eff82000-04-01 11:09:21 +1000508 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000509 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000510
511 if (s == NULL)
512 fatal("do_exec_pty: no session");
513 ptyfd = s->ptyfd;
514 ttyfd = s->ttyfd;
515
Damien Millerc5946332001-02-28 11:46:11 +1100516#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000517 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000518 do_pam_set_tty(s->tty);
Damien Miller4e448a32003-05-14 15:11:48 +1000519 do_pam_setcred(1);
520 }
Damien Miller5a761312001-02-27 09:28:23 +1100521#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000522
Damien Millerb38eff82000-04-01 11:09:21 +1000523 /* Fork the child. */
524 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000525 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000526
Damien Miller942da032000-08-18 13:59:06 +1000527 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000528 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000529 /* Close the master side of the pseudo tty. */
530 close(ptyfd);
531
532 /* Make the pseudo tty our controlling tty. */
533 pty_make_controlling_tty(&ttyfd, s->tty);
534
Damien Miller9c751422001-10-10 15:02:46 +1000535 /* Redirect stdin/stdout/stderr from the pseudo tty. */
536 if (dup2(ttyfd, 0) < 0)
537 error("dup2 stdin: %s", strerror(errno));
538 if (dup2(ttyfd, 1) < 0)
539 error("dup2 stdout: %s", strerror(errno));
540 if (dup2(ttyfd, 2) < 0)
541 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000542
543 /* Close the extra descriptor for the pseudo tty. */
544 close(ttyfd);
545
Damien Miller942da032000-08-18 13:59:06 +1000546 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000547#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700548 if (!(options.use_login && command == NULL)) {
549#ifdef _UNICOS
550 cray_init_job(s->pw); /* set up cray jid and tmpdir */
551#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100552 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700553 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000554# ifdef LOGIN_NEEDS_UTMPX
555 else
556 do_pre_login(s);
557# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000558#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000559
Damien Millerb38eff82000-04-01 11:09:21 +1000560 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000561 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000562 /* NOTREACHED */
563 }
Tim Rice81ed5182002-09-25 17:38:46 -0700564#ifdef _UNICOS
565 signal(WJSIGNAL, cray_job_termination_handler);
566#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100567#ifdef HAVE_CYGWIN
568 if (is_winnt)
569 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
570#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000571 if (pid < 0)
572 packet_disconnect("fork failed: %.100s", strerror(errno));
573 s->pid = pid;
574
575 /* Parent. Close the slave side of the pseudo tty. */
576 close(ttyfd);
577
578 /*
579 * Create another descriptor of the pty master side for use as the
580 * standard input. We could use the original descriptor, but this
581 * simplifies code in server_loop. The descriptor is bidirectional.
582 */
583 fdout = dup(ptyfd);
584 if (fdout < 0)
585 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
586
587 /* we keep a reference to the pty master */
588 ptymaster = dup(ptyfd);
589 if (ptymaster < 0)
590 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
591 s->ptymaster = ptymaster;
592
593 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000594 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000595 if (compat20) {
596 session_set_fds(s, ptyfd, fdout, -1);
597 } else {
598 server_loop(pid, ptyfd, fdout, -1);
599 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000600 }
Damien Millerb38eff82000-04-01 11:09:21 +1000601}
602
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000603#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000604static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000605do_pre_login(Session *s)
606{
607 socklen_t fromlen;
608 struct sockaddr_storage from;
609 pid_t pid = getpid();
610
611 /*
612 * Get IP address of client. If the connection is not a socket, let
613 * the address be 0.0.0.0.
614 */
615 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000616 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000617 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000618 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100619 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000620 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000621 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000622 }
623 }
624
625 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000626 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000627 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000628}
629#endif
630
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000631/*
632 * This is called to fork and execute a command. If another command is
633 * to be forced, execute that instead.
634 */
635void
636do_exec(Session *s, const char *command)
637{
638 if (forced_command) {
639 original_command = command;
640 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000641 debug("Forced command '%.900s'", command);
642 }
643
Damien Miller324948b2003-09-02 22:55:45 +1000644#ifdef GSSAPI
645 if (options.gss_authentication) {
646 temporarily_use_uid(s->pw);
647 ssh_gssapi_storecreds();
648 restore_uid();
649 }
650#endif
651
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000652 if (s->ttyfd != -1)
653 do_exec_pty(s, command);
654 else
655 do_exec_no_pty(s, command);
656
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000657 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000658}
659
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000660
Damien Miller942da032000-08-18 13:59:06 +1000661/* administrative, login(1)-like work */
662void
Damien Miller69b69aa2000-10-28 14:19:58 +1100663do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000664{
Damien Miller942da032000-08-18 13:59:06 +1000665 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000666 socklen_t fromlen;
667 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000668 struct passwd * pw = s->pw;
669 pid_t pid = getpid();
670
671 /*
672 * Get IP address of client. If the connection is not a socket, let
673 * the address be 0.0.0.0.
674 */
675 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000676 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000677 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000678 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000679 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000680 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000681 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000682 }
683 }
684
685 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000686 if (!use_privsep)
687 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
688 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000689 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000690 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000691
Kevin Steves092f2ef2000-10-14 13:36:13 +0000692#ifdef USE_PAM
693 /*
694 * If password change is needed, do it now.
695 * This needs to occur before the ~/.hushlogin check.
696 */
Damien Miller4e448a32003-05-14 15:11:48 +1000697 if (options.use_pam && is_pam_password_change_required()) {
Kevin Steves092f2ef2000-10-14 13:36:13 +0000698 print_pam_messages();
699 do_pam_chauthtok();
Damien Miller1f499fd2003-08-25 13:08:49 +1000700 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000701 }
702#endif
703
Damien Millercf205e82001-04-16 18:29:15 +1000704 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000705 return;
706
707#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000708 if (options.use_pam && !is_pam_password_change_required())
Kevin Steves092f2ef2000-10-14 13:36:13 +0000709 print_pam_messages();
Damien Miller942da032000-08-18 13:59:06 +1000710#endif /* USE_PAM */
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000711
712 /* display post-login message */
713 if (buffer_len(&loginmsg) > 0) {
714 buffer_append(&loginmsg, "\0", 1);
715 printf("%s\n", (char *)buffer_ptr(&loginmsg));
716 }
717 buffer_free(&loginmsg);
Damien Miller942da032000-08-18 13:59:06 +1000718
Tim Rice81ed5182002-09-25 17:38:46 -0700719#ifndef NO_SSH_LASTLOG
Ben Lindstromc447fee2002-04-02 20:35:35 +0000720 if (options.print_lastlog && s->last_login_time != 0) {
721 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000722 if (strchr(time_string, '\n'))
723 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000724 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000725 printf("Last login: %s\r\n", time_string);
726 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000727 printf("Last login: %s from %s\r\n", time_string,
728 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000729 }
Tim Rice81ed5182002-09-25 17:38:46 -0700730#endif /* NO_SSH_LASTLOG */
Damien Millercf205e82001-04-16 18:29:15 +1000731
732 do_motd();
733}
734
735/*
736 * Display the message of the day.
737 */
738void
739do_motd(void)
740{
741 FILE *f;
742 char buf[256];
743
Damien Miller942da032000-08-18 13:59:06 +1000744 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000745#ifdef HAVE_LOGIN_CAP
746 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
747 "/etc/motd"), "r");
748#else
Damien Miller942da032000-08-18 13:59:06 +1000749 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000750#endif
Damien Miller942da032000-08-18 13:59:06 +1000751 if (f) {
752 while (fgets(buf, sizeof(buf), f))
753 fputs(buf, stdout);
754 fclose(f);
755 }
756 }
757}
758
Kevin Steves8f63caa2001-07-04 18:23:02 +0000759
760/*
761 * Check for quiet login, either .hushlogin or command given.
762 */
763int
764check_quietlogin(Session *s, const char *command)
765{
766 char buf[256];
767 struct passwd *pw = s->pw;
768 struct stat st;
769
770 /* Return 1 if .hushlogin exists or a command given. */
771 if (command != NULL)
772 return 1;
773 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
774#ifdef HAVE_LOGIN_CAP
775 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
776 return 1;
777#else
778 if (stat(buf, &st) >= 0)
779 return 1;
780#endif
781 return 0;
782}
783
Damien Millerb38eff82000-04-01 11:09:21 +1000784/*
785 * Sets the value of the given variable in the environment. If the variable
786 * already exists, its value is overriden.
787 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000788void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000789child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100790 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000791{
Damien Millerb38eff82000-04-01 11:09:21 +1000792 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000793 u_int envsize;
794 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000795
796 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000797 * If we're passed an uninitialized list, allocate a single null
798 * entry before continuing.
799 */
800 if (*envp == NULL && *envsizep == 0) {
801 *envp = xmalloc(sizeof(char *));
802 *envp[0] = NULL;
803 *envsizep = 1;
804 }
805
806 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000807 * 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. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000821 envsize = *envsizep;
822 if (i >= envsize - 1) {
823 if (envsize >= 1000)
824 fatal("child_set_env: too many env vars");
825 envsize += 50;
826 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
827 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000828 }
829 /* Need to set the NULL pointer at end of array beyond the new slot. */
830 env[i + 1] = NULL;
831 }
832
833 /* Allocate space and format the variable in the appropriate slot. */
834 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
835 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
836}
837
838/*
839 * Reads environment variables from the given file and adds/overrides them
840 * into the environment. If the file does not exist, this does nothing.
841 * Otherwise, it must consist of empty lines, comments (line starts with '#')
842 * and assignments of the form name=value. No other forms are allowed.
843 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000844static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000845read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100846 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000847{
848 FILE *f;
849 char buf[4096];
850 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000851 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000852
853 f = fopen(filename, "r");
854 if (!f)
855 return;
856
857 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000858 if (++lineno > 1000)
859 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000860 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
861 ;
862 if (!*cp || *cp == '#' || *cp == '\n')
863 continue;
864 if (strchr(cp, '\n'))
865 *strchr(cp, '\n') = '\0';
866 value = strchr(cp, '=');
867 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000868 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
869 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000870 continue;
871 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000872 /*
873 * Replace the equals sign by nul, and advance value to
874 * the value string.
875 */
Damien Millerb38eff82000-04-01 11:09:21 +1000876 *value = '\0';
877 value++;
878 child_set_env(env, envsize, cp, value);
879 }
880 fclose(f);
881}
882
Darren Tuckere1a790d2003-09-16 11:52:19 +1000883#ifdef HAVE_ETC_DEFAULT_LOGIN
884/*
885 * Return named variable from specified environment, or NULL if not present.
886 */
887static char *
888child_get_env(char **env, const char *name)
889{
890 int i;
891 size_t len;
892
893 len = strlen(name);
894 for (i=0; env[i] != NULL; i++)
895 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
896 return(env[i] + len + 1);
897 return NULL;
898}
899
900/*
901 * Read /etc/default/login.
902 * We pick up the PATH (or SUPATH for root) and UMASK.
903 */
904static void
905read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
906{
907 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000908 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000909 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000910
911 /*
912 * We don't want to copy the whole file to the child's environment,
913 * so we use a temporary environment and copy the variables we're
914 * interested in.
915 */
916 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
917
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000918 if (tmpenv == NULL)
919 return;
920
Darren Tuckere1a790d2003-09-16 11:52:19 +1000921 if (uid == 0)
922 var = child_get_env(tmpenv, "SUPATH");
923 else
924 var = child_get_env(tmpenv, "PATH");
925 if (var != NULL)
926 child_set_env(env, envsize, "PATH", var);
927
928 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
929 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000930 umask((mode_t)mask);
Darren Tuckere1a790d2003-09-16 11:52:19 +1000931
932 for (i = 0; tmpenv[i] != NULL; i++)
933 xfree(tmpenv[i]);
934 xfree(tmpenv);
935}
936#endif /* HAVE_ETC_DEFAULT_LOGIN */
937
Damien Millerbb9ffc12002-01-08 10:59:32 +1100938void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000939{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100940 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000941 int i;
942
Damien Millerbb9ffc12002-01-08 10:59:32 +1100943 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000944 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000945
Damien Millerbb9ffc12002-01-08 10:59:32 +1100946 for(i = 0; source[i] != NULL; i++) {
947 var_name = xstrdup(source[i]);
948 if ((var_val = strstr(var_name, "=")) == NULL) {
949 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000950 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000951 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100952 *var_val++ = '\0';
953
954 debug3("Copy environment: %s=%s", var_name, var_val);
955 child_set_env(env, envsize, var_name, var_val);
956
957 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000958 }
959}
Damien Millercb5e44a2000-09-29 12:12:36 +1100960
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000961static char **
962do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000963{
Damien Millerb38eff82000-04-01 11:09:21 +1000964 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000965 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000966 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000967 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000968
Damien Millerb38eff82000-04-01 11:09:21 +1000969 /* Initialize the environment. */
970 envsize = 100;
971 env = xmalloc(envsize * sizeof(char *));
972 env[0] = NULL;
973
Damien Millerbac2d8a2000-09-05 16:13:06 +1100974#ifdef HAVE_CYGWIN
975 /*
976 * The Windows environment contains some setting which are
977 * important for a running system. They must not be dropped.
978 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100979 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100980#endif
981
Darren Tucker0efd1552003-08-26 11:49:55 +1000982#ifdef GSSAPI
983 /* Allow any GSSAPI methods that we've used to alter
984 * the childs environment as they see fit
985 */
986 ssh_gssapi_do_child(&env, &envsize);
987#endif
988
Damien Millerb38eff82000-04-01 11:09:21 +1000989 if (!options.use_login) {
990 /* Set basic environment. */
991 child_set_env(&env, &envsize, "USER", pw->pw_name);
992 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +1100993#ifdef _AIX
994 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
995#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000996 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +1000997#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +0000998 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
999 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1000 else
1001 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001002#else /* HAVE_LOGIN_CAP */
1003# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001004 /*
1005 * There's no standard path on Windows. The path contains
1006 * important components pointing to the system directories,
1007 * needed for loading shared libraries. So the path better
1008 * remains intact here.
1009 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001010# ifdef HAVE_ETC_DEFAULT_LOGIN
1011 read_etc_default_login(&env, &envsize, pw->pw_uid);
1012 path = child_get_env(env, "PATH");
1013# endif /* HAVE_ETC_DEFAULT_LOGIN */
1014 if (path == NULL || *path == '\0') {
1015 child_set_env(&env, &envsize, "PATH",
1016 s->pw->pw_uid == 0 ?
1017 SUPERUSER_PATH : _PATH_STDPATH);
1018 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001019# endif /* HAVE_CYGWIN */
1020#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001021
1022 snprintf(buf, sizeof buf, "%.200s/%.50s",
1023 _PATH_MAILDIR, pw->pw_name);
1024 child_set_env(&env, &envsize, "MAIL", buf);
1025
1026 /* Normal systems set SHELL by default. */
1027 child_set_env(&env, &envsize, "SHELL", shell);
1028 }
1029 if (getenv("TZ"))
1030 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1031
1032 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001033 if (!options.use_login) {
1034 while (custom_environment) {
1035 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001036 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001037
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001038 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001039 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001040 if (str[i] == '=') {
1041 str[i] = 0;
1042 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001043 }
1044 custom_environment = ce->next;
1045 xfree(ce->s);
1046 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001047 }
Damien Millerb38eff82000-04-01 11:09:21 +10001048 }
1049
Damien Millerf37e2462002-09-19 11:47:55 +10001050 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001051 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001052 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001053 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1054
Damien Miller00111382003-03-10 11:21:17 +11001055 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001056 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001057 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1058 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001059 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1060
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001061 if (s->ttyfd != -1)
1062 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1063 if (s->term)
1064 child_set_env(&env, &envsize, "TERM", s->term);
1065 if (s->display)
1066 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001067 if (original_command)
1068 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1069 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001070
Tim Rice81ed5182002-09-25 17:38:46 -07001071#ifdef _UNICOS
1072 if (cray_tmpdir[0] != '\0')
1073 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1074#endif /* _UNICOS */
1075
Damien Millerb38eff82000-04-01 11:09:21 +10001076#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001077 {
1078 char *cp;
1079
1080 if ((cp = getenv("AUTHSTATE")) != NULL)
1081 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1082 if ((cp = getenv("KRB5CCNAME")) != NULL)
1083 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1084 read_environment_file(&env, &envsize, "/etc/environment");
1085 }
Damien Millerb38eff82000-04-01 11:09:21 +10001086#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001087#ifdef KRB5
1088 if (s->authctxt->krb5_ticket_file)
1089 child_set_env(&env, &envsize, "KRB5CCNAME",
1090 s->authctxt->krb5_ticket_file);
1091#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001092#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001093 /*
1094 * Pull in any environment variables that may have
1095 * been set by PAM.
1096 */
Damien Miller4e448a32003-05-14 15:11:48 +10001097 if (options.use_pam) {
1098 char **p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001099
Kevin Steves38b050a2002-07-23 00:44:07 +00001100 copy_environment(p, &env, &envsize);
1101 free_pam_environment(p);
1102 }
Damien Millerb38eff82000-04-01 11:09:21 +10001103#endif /* USE_PAM */
1104
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001105 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001106 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001107 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001108
1109 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001110 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001111 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001112 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001113 read_environment_file(&env, &envsize, buf);
1114 }
1115 if (debug_flag) {
1116 /* dump the environment */
1117 fprintf(stderr, "Environment:\n");
1118 for (i = 0; env[i]; i++)
1119 fprintf(stderr, " %.200s\n", env[i]);
1120 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001121 return env;
1122}
1123
1124/*
1125 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1126 * first in this order).
1127 */
1128static void
1129do_rc_files(Session *s, const char *shell)
1130{
1131 FILE *f = NULL;
1132 char cmd[1024];
1133 int do_xauth;
1134 struct stat st;
1135
1136 do_xauth =
1137 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1138
1139 /* ignore _PATH_SSH_USER_RC for subsystems */
1140 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1141 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1142 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1143 if (debug_flag)
1144 fprintf(stderr, "Running %s\n", cmd);
1145 f = popen(cmd, "w");
1146 if (f) {
1147 if (do_xauth)
1148 fprintf(f, "%s %s\n", s->auth_proto,
1149 s->auth_data);
1150 pclose(f);
1151 } else
1152 fprintf(stderr, "Could not run %s\n",
1153 _PATH_SSH_USER_RC);
1154 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1155 if (debug_flag)
1156 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1157 _PATH_SSH_SYSTEM_RC);
1158 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1159 if (f) {
1160 if (do_xauth)
1161 fprintf(f, "%s %s\n", s->auth_proto,
1162 s->auth_data);
1163 pclose(f);
1164 } else
1165 fprintf(stderr, "Could not run %s\n",
1166 _PATH_SSH_SYSTEM_RC);
1167 } else if (do_xauth && options.xauth_location != NULL) {
1168 /* Add authority data to .Xauthority if appropriate. */
1169 if (debug_flag) {
1170 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001171 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001172 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001173 fprintf(stderr,
1174 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001175 options.xauth_location, s->auth_display,
1176 s->auth_proto, s->auth_data);
1177 }
1178 snprintf(cmd, sizeof cmd, "%s -q -",
1179 options.xauth_location);
1180 f = popen(cmd, "w");
1181 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001182 fprintf(f, "remove %s\n",
1183 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001184 fprintf(f, "add %s %s %s\n",
1185 s->auth_display, s->auth_proto,
1186 s->auth_data);
1187 pclose(f);
1188 } else {
1189 fprintf(stderr, "Could not run %s\n",
1190 cmd);
1191 }
1192 }
1193}
1194
1195static void
1196do_nologin(struct passwd *pw)
1197{
1198 FILE *f = NULL;
1199 char buf[1024];
1200
1201#ifdef HAVE_LOGIN_CAP
1202 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1203 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1204 _PATH_NOLOGIN), "r");
1205#else
1206 if (pw->pw_uid)
1207 f = fopen(_PATH_NOLOGIN, "r");
1208#endif
1209 if (f) {
1210 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001211 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001212 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001213 while (fgets(buf, sizeof(buf), f))
1214 fputs(buf, stderr);
1215 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001216 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001217 exit(254);
1218 }
1219}
1220
1221/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001222void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001223do_setusercontext(struct passwd *pw)
1224{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001225#ifndef HAVE_CYGWIN
1226 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001227#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001228 {
1229
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001230#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001231 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1232 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001233#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001234#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001235# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001236 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001237# endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001238 if (setusercontext(lc, pw, pw->pw_uid,
1239 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1240 perror("unable to set user context");
1241 exit(1);
1242 }
1243#else
1244# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1245 /* Sets login uid for accounting */
1246 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1247 error("setluid: %s", strerror(errno));
1248# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1249
1250 if (setlogin(pw->pw_name) < 0)
1251 error("setlogin failed: %s", strerror(errno));
1252 if (setgid(pw->pw_gid) < 0) {
1253 perror("setgid");
1254 exit(1);
1255 }
1256 /* Initialize the group list. */
1257 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1258 perror("initgroups");
1259 exit(1);
1260 }
1261 endgrent();
1262# ifdef USE_PAM
1263 /*
1264 * PAM credentials may take the form of supplementary groups.
1265 * These will have been wiped by the above initgroups() call.
1266 * Reestablish them here.
1267 */
Damien Miller341c6e62003-09-02 23:18:52 +10001268 if (options.use_pam) {
1269 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001270 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001271 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001272# endif /* USE_PAM */
1273# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1274 irix_setusercontext(pw);
1275# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001276# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001277 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001278# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001279 /* Permanently switch to the desired uid. */
1280 permanently_set_uid(pw);
1281#endif
1282 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001283
1284#ifdef HAVE_CYGWIN
1285 if (is_winnt)
1286#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001287 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1288 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1289}
1290
Ben Lindstrom08105192002-03-22 02:50:06 +00001291static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001292launch_login(struct passwd *pw, const char *hostname)
1293{
1294 /* Launch login(1). */
1295
Ben Lindstrom378a4172002-06-07 14:49:56 +00001296 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001297#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001298 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001299#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001300#ifdef LOGIN_NO_ENDOPT
1301 "-p", "-f", pw->pw_name, (char *)NULL);
1302#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001303 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001304#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001305
1306 /* Login couldn't be executed, die. */
1307
1308 perror("login");
1309 exit(1);
1310}
1311
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001312/*
1313 * Performs common processing for the child, such as setting up the
1314 * environment, closing extra file descriptors, setting the user and group
1315 * ids, and executing the command or shell.
1316 */
1317void
1318do_child(Session *s, const char *command)
1319{
1320 extern char **environ;
1321 char **env;
1322 char *argv[10];
1323 const char *shell, *shell0, *hostname = NULL;
1324 struct passwd *pw = s->pw;
1325 u_int i;
1326
1327 /* remove hostkey from the child's memory */
1328 destroy_sensitive_data();
1329
1330 /* login(1) is only called if we execute the login shell */
1331 if (options.use_login && command != NULL)
1332 options.use_login = 0;
1333
Tim Rice81ed5182002-09-25 17:38:46 -07001334#ifdef _UNICOS
1335 cray_setup(pw->pw_uid, pw->pw_name, command);
1336#endif /* _UNICOS */
1337
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001338 /*
1339 * Login(1) does this as well, and it needs uid 0 for the "-h"
1340 * switch, so we let login(1) to this for us.
1341 */
1342 if (!options.use_login) {
1343#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001344 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001345 if (!check_quietlogin(s, command))
1346 do_motd();
1347#else /* HAVE_OSF_SIA */
1348 do_nologin(pw);
1349 do_setusercontext(pw);
1350#endif /* HAVE_OSF_SIA */
1351 }
1352
1353 /*
1354 * Get the shell from the password data. An empty shell field is
1355 * legal, and means /bin/sh.
1356 */
1357 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001358
1359 /*
1360 * Make sure $SHELL points to the shell from the password file,
1361 * even if shell is overridden from login.conf
1362 */
1363 env = do_setup_env(s, shell);
1364
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001365#ifdef HAVE_LOGIN_CAP
1366 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1367#endif
1368
Damien Millerad833b32000-08-23 10:46:23 +10001369 /* we have to stash the hostname before we close our socket. */
1370 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001371 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001372 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001373 /*
1374 * Close the connection descriptors; note that this is the child, and
1375 * the server will still have the socket open, and it is important
1376 * that we do not shutdown it. Note that the descriptors cannot be
1377 * closed before building the environment, as we call
1378 * get_remote_ipaddr there.
1379 */
1380 if (packet_get_connection_in() == packet_get_connection_out())
1381 close(packet_get_connection_in());
1382 else {
1383 close(packet_get_connection_in());
1384 close(packet_get_connection_out());
1385 }
1386 /*
1387 * Close all descriptors related to channels. They will still remain
1388 * open in the parent.
1389 */
1390 /* XXX better use close-on-exec? -markus */
1391 channel_close_all();
1392
1393 /*
1394 * Close any extra file descriptors. Note that there may still be
1395 * descriptors left by system functions. They will be closed later.
1396 */
1397 endpwent();
1398
1399 /*
1400 * Close any extra open file descriptors so that we don\'t have them
1401 * hanging around in clients. Note that we want to do this after
1402 * initgroups, because at least on Solaris 2.3 it leaves file
1403 * descriptors open.
1404 */
1405 for (i = 3; i < 64; i++)
1406 close(i);
1407
Damien Millerb38eff82000-04-01 11:09:21 +10001408 /*
Damien Miller05eda432002-02-10 18:32:28 +11001409 * Must take new environment into use so that .ssh/rc,
1410 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001411 */
1412 environ = env;
1413
Damien Miller139d4cd2001-10-10 15:07:44 +10001414 /* Change current directory to the user\'s home directory. */
1415 if (chdir(pw->pw_dir) < 0) {
1416 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1417 pw->pw_dir, strerror(errno));
1418#ifdef HAVE_LOGIN_CAP
1419 if (login_getcapbool(lc, "requirehome", 0))
1420 exit(1);
1421#endif
1422 }
1423
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001424 if (!options.use_login)
1425 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001426
1427 /* restore SIGPIPE for child */
1428 signal(SIGPIPE, SIG_DFL);
1429
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001430 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001431 launch_login(pw, hostname);
1432 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001433 }
1434
1435 /* Get the last component of the shell name. */
1436 if ((shell0 = strrchr(shell, '/')) != NULL)
1437 shell0++;
1438 else
1439 shell0 = shell;
1440
Damien Millerb38eff82000-04-01 11:09:21 +10001441 /*
1442 * If we have no command, execute the shell. In this case, the shell
1443 * name to be passed in argv[0] is preceded by '-' to indicate that
1444 * this is a login shell.
1445 */
1446 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001447 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001448
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001449 /* Start the shell. Set initial character to '-'. */
1450 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001451
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001452 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1453 >= sizeof(argv0) - 1) {
1454 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001455 perror(shell);
1456 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001457 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001458
1459 /* Execute the shell. */
1460 argv[0] = argv0;
1461 argv[1] = NULL;
1462 execve(shell, argv, env);
1463
1464 /* Executing the shell failed. */
1465 perror(shell);
1466 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001467 }
1468 /*
1469 * Execute the command using the user's shell. This uses the -c
1470 * option to execute the command.
1471 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001472 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001473 argv[1] = "-c";
1474 argv[2] = (char *) command;
1475 argv[3] = NULL;
1476 execve(shell, argv, env);
1477 perror(shell);
1478 exit(1);
1479}
1480
1481Session *
1482session_new(void)
1483{
1484 int i;
1485 static int did_init = 0;
1486 if (!did_init) {
1487 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001488 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001489 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001490 }
1491 did_init = 1;
1492 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001493 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001494 Session *s = &sessions[i];
1495 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001496 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001497 s->chanid = -1;
1498 s->ptyfd = -1;
1499 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001500 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001501 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001502 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001503 return s;
1504 }
1505 }
1506 return NULL;
1507}
1508
Ben Lindstrombba81212001-06-25 05:01:22 +00001509static void
Damien Millerb38eff82000-04-01 11:09:21 +10001510session_dump(void)
1511{
1512 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001513 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001514 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001515 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001516 s->used,
1517 s->self,
1518 s,
1519 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001520 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001521 }
1522}
1523
Damien Millerefb4afe2000-04-12 18:45:05 +10001524int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001525session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001526{
1527 Session *s = session_new();
1528 debug("session_open: channel %d", chanid);
1529 if (s == NULL) {
1530 error("no more sessions");
1531 return 0;
1532 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001533 s->authctxt = authctxt;
1534 s->pw = authctxt->pw;
Damien Millerefb4afe2000-04-12 18:45:05 +10001535 if (s->pw == NULL)
Kevin Steves43cdef32001-02-11 14:12:08 +00001536 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001537 debug("session_open: session %d: link with channel %d", s->self, chanid);
1538 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001539 return 1;
1540}
1541
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001542Session *
1543session_by_tty(char *tty)
1544{
1545 int i;
1546 for (i = 0; i < MAX_SESSIONS; i++) {
1547 Session *s = &sessions[i];
1548 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1549 debug("session_by_tty: session %d tty %s", i, tty);
1550 return s;
1551 }
1552 }
1553 debug("session_by_tty: unknown tty %.100s", tty);
1554 session_dump();
1555 return NULL;
1556}
1557
Ben Lindstrombba81212001-06-25 05:01:22 +00001558static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001559session_by_channel(int id)
1560{
1561 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001562 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001563 Session *s = &sessions[i];
1564 if (s->used && s->chanid == id) {
1565 debug("session_by_channel: session %d channel %d", i, id);
1566 return s;
1567 }
1568 }
1569 debug("session_by_channel: unknown channel %d", id);
1570 session_dump();
1571 return NULL;
1572}
1573
Ben Lindstrombba81212001-06-25 05:01:22 +00001574static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001575session_by_pid(pid_t pid)
1576{
1577 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001578 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001579 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001580 Session *s = &sessions[i];
1581 if (s->used && s->pid == pid)
1582 return s;
1583 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001584 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001585 session_dump();
1586 return NULL;
1587}
1588
Ben Lindstrombba81212001-06-25 05:01:22 +00001589static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001590session_window_change_req(Session *s)
1591{
1592 s->col = packet_get_int();
1593 s->row = packet_get_int();
1594 s->xpixel = packet_get_int();
1595 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001596 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001597 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1598 return 1;
1599}
1600
Ben Lindstrombba81212001-06-25 05:01:22 +00001601static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001602session_pty_req(Session *s)
1603{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001604 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001605 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001606
Ben Lindstrom49c12602001-06-13 04:37:36 +00001607 if (no_pty_flag) {
1608 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001609 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001610 }
1611 if (s->ttyfd != -1) {
1612 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001613 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001614 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001615 /* Get the time and hostname when the user last logged in. */
1616 if (options.print_lastlog) {
1617 s->hostname[0] = '\0';
1618 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1619 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1620 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001621
Damien Millerefb4afe2000-04-12 18:45:05 +10001622 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001623
1624 if (compat20) {
1625 s->col = packet_get_int();
1626 s->row = packet_get_int();
1627 } else {
1628 s->row = packet_get_int();
1629 s->col = packet_get_int();
1630 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001631 s->xpixel = packet_get_int();
1632 s->ypixel = packet_get_int();
1633
1634 if (strcmp(s->term, "") == 0) {
1635 xfree(s->term);
1636 s->term = NULL;
1637 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001638
Damien Millerefb4afe2000-04-12 18:45:05 +10001639 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001640 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001641 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001642 if (s->term)
1643 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001644 s->term = NULL;
1645 s->ptyfd = -1;
1646 s->ttyfd = -1;
1647 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001648 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001649 }
1650 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001651
1652 /* for SSH1 the tty modes length is not given */
1653 if (!compat20)
1654 n_bytes = packet_remaining();
1655 tty_parse_modes(s->ttyfd, &n_bytes);
1656
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001657 if (!use_privsep)
1658 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001659
1660 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001661 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1662
Damien Miller48b03fc2002-01-22 23:11:40 +11001663 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001664 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001665 return 1;
1666}
1667
Ben Lindstrombba81212001-06-25 05:01:22 +00001668static int
Damien Millerbd483e72000-04-30 10:00:53 +10001669session_subsystem_req(Session *s)
1670{
Damien Millerae452462001-10-10 15:08:06 +10001671 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001672 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001673 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001674 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001675 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001676
Damien Miller48b03fc2002-01-22 23:11:40 +11001677 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001678 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001679
Damien Millerf6d9e222000-06-18 14:50:44 +10001680 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001681 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1682 cmd = options.subsystem_command[i];
1683 if (stat(cmd, &st) < 0) {
1684 error("subsystem: cannot stat %s: %s", cmd,
1685 strerror(errno));
1686 break;
1687 }
1688 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001689 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001690 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001691 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001692 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001693 }
1694 }
1695
1696 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001697 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001698 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001699
Damien Millerbd483e72000-04-30 10:00:53 +10001700 xfree(subsys);
1701 return success;
1702}
1703
Ben Lindstrombba81212001-06-25 05:01:22 +00001704static int
Damien Millerbd483e72000-04-30 10:00:53 +10001705session_x11_req(Session *s)
1706{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001707 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001708
1709 s->single_connection = packet_get_char();
1710 s->auth_proto = packet_get_string(NULL);
1711 s->auth_data = packet_get_string(NULL);
1712 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001713 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001714
Ben Lindstrom768176b2001-06-09 01:29:12 +00001715 success = session_setup_x11fwd(s);
1716 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001717 xfree(s->auth_proto);
1718 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001719 s->auth_proto = NULL;
1720 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001721 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001722 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001723}
1724
Ben Lindstrombba81212001-06-25 05:01:22 +00001725static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001726session_shell_req(Session *s)
1727{
Damien Miller48b03fc2002-01-22 23:11:40 +11001728 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001729 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001730 return 1;
1731}
1732
Ben Lindstrombba81212001-06-25 05:01:22 +00001733static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001734session_exec_req(Session *s)
1735{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001736 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001737 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001738 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001739 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001740 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001741 return 1;
1742}
1743
Ben Lindstrombba81212001-06-25 05:01:22 +00001744static int
Damien Miller54c45982003-05-15 10:20:13 +10001745session_break_req(Session *s)
1746{
1747 u_int break_length;
1748
Darren Tucker3bdbd842003-08-13 20:31:05 +10001749 break_length = packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001750 packet_check_eom();
1751
Darren Tucker3bdbd842003-08-13 20:31:05 +10001752 if (s->ttyfd == -1 ||
1753 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001754 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001755 return 1;
1756}
1757
1758static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001759session_auth_agent_req(Session *s)
1760{
1761 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001762 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001763 if (no_agent_forwarding_flag) {
1764 debug("session_auth_agent_req: no_agent_forwarding_flag");
1765 return 0;
1766 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001767 if (called) {
1768 return 0;
1769 } else {
1770 called = 1;
1771 return auth_input_request_forwarding(s->pw);
1772 }
1773}
1774
Damien Millerc7ef63d2002-02-05 12:21:42 +11001775int
1776session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001777{
Damien Millerefb4afe2000-04-12 18:45:05 +10001778 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001779 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001780
Damien Millerc7ef63d2002-02-05 12:21:42 +11001781 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001782 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001783 c->self, rtype);
1784 return 0;
1785 }
1786 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001787
1788 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001789 * a session is in LARVAL state until a shell, a command
1790 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001791 */
1792 if (c->type == SSH_CHANNEL_LARVAL) {
1793 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001794 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001795 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001796 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001797 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001798 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001799 } else if (strcmp(rtype, "x11-req") == 0) {
1800 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001801 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1802 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001803 } else if (strcmp(rtype, "subsystem") == 0) {
1804 success = session_subsystem_req(s);
Damien Miller54c45982003-05-15 10:20:13 +10001805 } else if (strcmp(rtype, "break") == 0) {
1806 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001807 }
1808 }
1809 if (strcmp(rtype, "window-change") == 0) {
1810 success = session_window_change_req(s);
1811 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001812 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001813}
1814
1815void
1816session_set_fds(Session *s, int fdin, int fdout, int fderr)
1817{
1818 if (!compat20)
1819 fatal("session_set_fds: called for proto != 2.0");
1820 /*
1821 * now that have a child and a pipe to the child,
1822 * we can activate our channel and register the fd's
1823 */
1824 if (s->chanid == -1)
1825 fatal("no channel for session %d", s->self);
1826 channel_set_fds(s->chanid,
1827 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001828 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001829 1,
1830 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001831}
1832
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001833/*
1834 * Function to perform pty cleanup. Also called if we get aborted abnormally
1835 * (e.g., due to a dropped connection).
1836 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001837void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001838session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10001839{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001840 if (s == NULL) {
1841 error("session_pty_cleanup: no session");
1842 return;
1843 }
1844 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001845 return;
1846
Kevin Steves43cdef32001-02-11 14:12:08 +00001847 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001848
Damien Millerb38eff82000-04-01 11:09:21 +10001849 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001850 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001851 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001852
1853 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001854 if (getuid() == 0)
1855 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001856
1857 /*
1858 * Close the server side of the socket pairs. We must do this after
1859 * the pty cleanup, so that another process doesn't get this pty
1860 * while we're still cleaning up.
1861 */
1862 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001863 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001864
1865 /* unlink pty from session */
1866 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001867}
Damien Millerefb4afe2000-04-12 18:45:05 +10001868
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001869void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001870session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001871{
Darren Tucker3e33cec2003-10-02 16:12:36 +10001872 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001873}
1874
Damien Miller5a80bba2002-09-04 16:39:02 +10001875static char *
1876sig2name(int sig)
1877{
1878#define SSH_SIG(x) if (sig == SIG ## x) return #x
1879 SSH_SIG(ABRT);
1880 SSH_SIG(ALRM);
1881 SSH_SIG(FPE);
1882 SSH_SIG(HUP);
1883 SSH_SIG(ILL);
1884 SSH_SIG(INT);
1885 SSH_SIG(KILL);
1886 SSH_SIG(PIPE);
1887 SSH_SIG(QUIT);
1888 SSH_SIG(SEGV);
1889 SSH_SIG(TERM);
1890 SSH_SIG(USR1);
1891 SSH_SIG(USR2);
1892#undef SSH_SIG
1893 return "SIG@openssh.com";
1894}
1895
Ben Lindstrombba81212001-06-25 05:01:22 +00001896static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001897session_exit_message(Session *s, int status)
1898{
1899 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001900
1901 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001902 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001903 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001904 debug("session_exit_message: session %d channel %d pid %ld",
1905 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001906
1907 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001908 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001909 packet_put_int(WEXITSTATUS(status));
1910 packet_send();
1911 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001912 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10001913 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001914#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001915 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001916#else /* WCOREDUMP */
1917 packet_put_char(0);
1918#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001919 packet_put_cstring("");
1920 packet_put_cstring("");
1921 packet_send();
1922 } else {
1923 /* Some weird exit cause. Just exit. */
1924 packet_disconnect("wait returned status %04x.", status);
1925 }
1926
1927 /* disconnect channel */
1928 debug("session_exit_message: release channel %d", s->chanid);
1929 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10001930 /*
1931 * emulate a write failure with 'chan_write_failed', nobody will be
1932 * interested in data we write.
1933 * Note that we must not call 'chan_read_failed', since there could
1934 * be some more data waiting in the pipe.
1935 */
Damien Millerbd483e72000-04-30 10:00:53 +10001936 if (c->ostate != CHAN_OUTPUT_CLOSED)
1937 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10001938 s->chanid = -1;
1939}
1940
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001941void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001942session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001943{
Ben Lindstromce0f6342002-06-11 16:42:49 +00001944 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001945 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001946 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001947 if (s->term)
1948 xfree(s->term);
1949 if (s->display)
1950 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11001951 if (s->auth_display)
1952 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10001953 if (s->auth_data)
1954 xfree(s->auth_data);
1955 if (s->auth_proto)
1956 xfree(s->auth_proto);
1957 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10001958 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001959}
1960
1961void
1962session_close_by_pid(pid_t pid, int status)
1963{
1964 Session *s = session_by_pid(pid);
1965 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001966 debug("session_close_by_pid: no session for pid %ld",
1967 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001968 return;
1969 }
1970 if (s->chanid != -1)
1971 session_exit_message(s, status);
1972 session_close(s);
1973}
1974
1975/*
1976 * this is called when a channel dies before
1977 * the session 'child' itself dies
1978 */
1979void
1980session_close_by_channel(int id, void *arg)
1981{
1982 Session *s = session_by_channel(id);
1983 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10001984 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001985 return;
1986 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001987 debug("session_close_by_channel: channel %d child %ld",
1988 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10001989 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10001990 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10001991 /*
1992 * delay detach of session, but release pty, since
1993 * the fd's to the child are already closed
1994 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10001995 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10001996 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10001997 return;
1998 }
1999 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002000 channel_cancel_cleanup(s->chanid);
2001 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002002 session_close(s);
2003}
2004
2005void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002006session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002007{
2008 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002009 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002010 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002011 if (s->used) {
2012 if (closefunc != NULL)
2013 closefunc(s);
2014 else
2015 session_close(s);
2016 }
Damien Miller52b77be2001-10-10 15:14:37 +10002017 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002018}
2019
Ben Lindstrombba81212001-06-25 05:01:22 +00002020static char *
Damien Millere247cc42000-05-07 12:03:14 +10002021session_tty_list(void)
2022{
2023 static char buf[1024];
2024 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002025 char *cp;
2026
Damien Millere247cc42000-05-07 12:03:14 +10002027 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002028 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002029 Session *s = &sessions[i];
2030 if (s->used && s->ttyfd != -1) {
Damien Millera8ed44b2003-01-10 09:53:12 +11002031
2032 if (strncmp(s->tty, "/dev/", 5) != 0) {
2033 cp = strrchr(s->tty, '/');
2034 cp = (cp == NULL) ? s->tty : cp + 1;
2035 } else
2036 cp = s->tty + 5;
2037
Damien Millere247cc42000-05-07 12:03:14 +10002038 if (buf[0] != '\0')
2039 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002040 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002041 }
2042 }
2043 if (buf[0] == '\0')
2044 strlcpy(buf, "notty", sizeof buf);
2045 return buf;
2046}
2047
2048void
2049session_proctitle(Session *s)
2050{
2051 if (s->pw == NULL)
2052 error("no user for session %d", s->self);
2053 else
2054 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2055}
2056
Ben Lindstrom768176b2001-06-09 01:29:12 +00002057int
2058session_setup_x11fwd(Session *s)
2059{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002060 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002061 char display[512], auth_display[512];
2062 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002063
2064 if (no_x11_forwarding_flag) {
2065 packet_send_debug("X11 forwarding disabled in user configuration file.");
2066 return 0;
2067 }
2068 if (!options.x11_forwarding) {
2069 debug("X11 forwarding disabled in server configuration file.");
2070 return 0;
2071 }
2072 if (!options.xauth_location ||
2073 (stat(options.xauth_location, &st) == -1)) {
2074 packet_send_debug("No xauth program; cannot forward with spoofing.");
2075 return 0;
2076 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002077 if (options.use_login) {
2078 packet_send_debug("X11 forwarding disabled; "
2079 "not compatible with UseLogin=yes.");
2080 return 0;
2081 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002082 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002083 debug("X11 display already set.");
2084 return 0;
2085 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002086 if (x11_create_display_inet(options.x11_display_offset,
2087 options.x11_use_localhost, s->single_connection,
2088 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002089 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002090 return 0;
2091 }
Kevin Steves366298c2001-12-19 17:58:01 +00002092
2093 /* Set up a suitable value for the DISPLAY variable. */
2094 if (gethostname(hostname, sizeof(hostname)) < 0)
2095 fatal("gethostname: %.100s", strerror(errno));
2096 /*
2097 * auth_display must be used as the displayname when the
2098 * authorization entry is added with xauth(1). This will be
2099 * different than the DISPLAY string for localhost displays.
2100 */
Damien Miller95c249f2002-02-05 12:11:34 +11002101 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002102 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002103 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002104 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002105 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002106 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002107 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002108 } else {
2109#ifdef IPADDR_IN_DISPLAY
2110 struct hostent *he;
2111 struct in_addr my_addr;
2112
2113 he = gethostbyname(hostname);
2114 if (he == NULL) {
2115 error("Can't get IP address for X11 DISPLAY.");
2116 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2117 return 0;
2118 }
2119 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002120 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002121 s->display_number, s->screen);
2122#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002123 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002124 s->display_number, s->screen);
2125#endif
2126 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002127 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002128 }
2129
Ben Lindstrom768176b2001-06-09 01:29:12 +00002130 return 1;
2131}
2132
Ben Lindstrombba81212001-06-25 05:01:22 +00002133static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002134do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002135{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002136 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002137}
2138
2139void
2140do_cleanup(Authctxt *authctxt)
2141{
2142 static int called = 0;
2143
2144 debug("do_cleanup");
2145
2146 /* no cleanup if we're in the child for login shell */
2147 if (is_child)
2148 return;
2149
2150 /* avoid double cleanup */
2151 if (called)
2152 return;
2153 called = 1;
2154
2155 if (authctxt == NULL)
2156 return;
2157#ifdef KRB5
2158 if (options.kerberos_ticket_cleanup &&
2159 authctxt->krb5_ctx)
2160 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002161#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002162
2163#ifdef GSSAPI
2164 if (compat20 && options.gss_cleanup_creds)
2165 ssh_gssapi_cleanup_creds();
2166#endif
2167
Darren Tucker8846a072003-10-07 11:30:15 +10002168#ifdef USE_PAM
2169 if (options.use_pam) {
2170 sshpam_cleanup();
2171 sshpam_thread_cleanup();
2172 }
2173#endif
2174
Darren Tucker3e33cec2003-10-02 16:12:36 +10002175 /* remove agent socket */
2176 auth_sock_cleanup_proc(authctxt->pw);
2177
2178 /*
2179 * Cleanup ptys/utmp only if privsep is disabled,
2180 * or if running in monitor.
2181 */
2182 if (!use_privsep || mm_is_monitor())
2183 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002184}