blob: a3f0b356241e33f15dc0b299901d1505f065044a [file] [log] [blame]
djm@openbsd.org2a358622018-11-16 03:26:01 +00001/* $OpenBSD: session.c,v 1.308 2018/11/16 03:26:01 djm Exp $ */
Damien Millerb38eff82000-04-01 11:09:21 +10002/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 *
Damien Millerefb4afe2000-04-12 18:45:05 +100012 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100034 */
Damien Millerb38eff82000-04-01 11:09:21 +100035
36#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110037
38#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100039#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110040#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100045#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110046
Damien Miller1cdde6f2006-07-24 14:07:35 +100047#include <arpa/inet.h>
48
djm@openbsd.org4b4bfb02016-03-10 11:47:57 +000049#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100050#include <errno.h>
Damien Miller22a29882010-05-10 11:53:54 +100051#include <fcntl.h>
Damien Miller427a1d52006-07-10 20:20:33 +100052#include <grp.h>
Damien Millere5c0d522014-07-03 21:24:19 +100053#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110054#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110055#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110056#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100057#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110058#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100059#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100060#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100061#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100062#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100063#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000064#include <limits.h>
Damien Millerb38eff82000-04-01 11:09:21 +100065
Damien Millerb84886b2008-05-19 15:05:07 +100066#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100067#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000070#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100071#include "packet.h"
markus@openbsd.org2808d182018-07-09 21:26:02 +000072#include "sshbuf.h"
73#include "ssherr.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100074#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100075#include "uidswap.h"
76#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000077#include "channels.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000078#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100079#include "cipher.h"
80#ifdef GSSAPI
81#include "ssh-gss.h"
82#endif
83#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100084#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100085#include "auth-options.h"
Damien Miller85b45e02013-07-20 13:21:52 +100086#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "pathnames.h"
88#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100089#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000091#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092#include "serverloop.h"
93#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000094#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100095#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000096#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110097#include "sftp.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000098#include "atomicio.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100099
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100100#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +1100101#include <kafs.h>
102#endif
103
Damien Miller14684a12011-05-20 11:23:07 +1000104#ifdef WITH_SELINUX
105#include <selinux/selinux.h>
106#endif
107
Damien Millerad793d52008-11-03 19:17:57 +1100108#define IS_INTERNAL_SFTP(c) \
109 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
110 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
111 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
112 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
113
Damien Millerb38eff82000-04-01 11:09:21 +1000114/* func */
115
116Session *session_new(void);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000117void session_set_fds(struct ssh *, Session *, int, int, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000118void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000119void session_proctitle(Session *);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000120int session_setup_x11fwd(struct ssh *, Session *);
121int do_exec_pty(struct ssh *, Session *, const char *);
122int do_exec_no_pty(struct ssh *, Session *, const char *);
123int do_exec(struct ssh *, Session *, const char *);
124void do_login(struct ssh *, Session *, const char *);
125void do_child(struct ssh *, Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000126#ifdef LOGIN_NEEDS_UTMPX
127static void do_pre_login(Session *s);
128#endif
Damien Millercf205e82001-04-16 18:29:15 +1000129void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000130int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000131
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000132static void do_authenticated2(struct ssh *, Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000133
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000134static int session_pty_req(struct ssh *, Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000135
Damien Millerb38eff82000-04-01 11:09:21 +1000136/* import */
137extern ServerOptions options;
138extern char *__progname;
Damien Millerb38eff82000-04-01 11:09:21 +1000139extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000140extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000141extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000142extern void destroy_sensitive_data(void);
markus@openbsd.org2808d182018-07-09 21:26:02 +0000143extern struct sshbuf *loginmsg;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000144extern struct sshauthopt *auth_opts;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000145char *tun_fwd_ifnames; /* serverloop.c */
Damien Miller37023962000-07-11 17:31:38 +1000146
Damien Miller7b28dc52000-09-05 13:34:53 +1100147/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000148const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100149
Damien Millerb38eff82000-04-01 11:09:21 +1000150/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000151static int sessions_first_unused = -1;
152static int sessions_nalloc = 0;
153static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100154
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100155#define SUBSYSTEM_NONE 0
156#define SUBSYSTEM_EXT 1
157#define SUBSYSTEM_INT_SFTP 2
158#define SUBSYSTEM_INT_SFTP_ERROR 3
Damien Millerdfc24252008-02-10 22:29:40 +1100159
Damien Millerad833b32000-08-23 10:46:23 +1000160#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000161login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000162#endif
163
Darren Tucker3e33cec2003-10-02 16:12:36 +1000164static int is_child = 0;
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +0000165static int in_chroot = 0;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000166
djm@openbsd.org8f574952017-06-24 06:34:38 +0000167/* File containing userauth info, if ExposeAuthInfo set */
168static char *auth_info_file = NULL;
169
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000170/* Name and directory of socket for authentication agent forwarding. */
171static char *auth_sock_name = NULL;
172static char *auth_sock_dir = NULL;
173
174/* removes the agent forwarding socket */
175
176static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000177auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000178{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000179 if (auth_sock_name != NULL) {
180 temporarily_use_uid(pw);
181 unlink(auth_sock_name);
182 rmdir(auth_sock_dir);
183 auth_sock_name = NULL;
184 restore_uid();
185 }
186}
187
188static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000189auth_input_request_forwarding(struct ssh *ssh, struct passwd * pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000190{
191 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000192 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000193
194 if (auth_sock_name != NULL) {
195 error("authentication forwarding requested twice.");
196 return 0;
197 }
198
199 /* Temporarily drop privileged uid for mkdir/bind. */
200 temporarily_use_uid(pw);
201
202 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000203 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204
205 /* Create private directory for socket */
206 if (mkdtemp(auth_sock_dir) == NULL) {
207 packet_send_debug("Agent forwarding disabled: "
208 "mkdtemp() failed: %.100s", strerror(errno));
209 restore_uid();
Darren Tuckera627d422013-06-02 07:31:17 +1000210 free(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000211 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000212 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000213 }
Damien Miller7207f642008-05-19 15:34:50 +1000214
215 xasprintf(&auth_sock_name, "%s/agent.%ld",
216 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000217
Damien Miller7acefbb2014-07-18 14:11:24 +1000218 /* Start a Unix listener on auth_sock_name. */
219 sock = unix_listener(auth_sock_name, SSH_LISTEN_BACKLOG, 0);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000220
221 /* Restore the privileged uid. */
222 restore_uid();
223
Damien Miller7acefbb2014-07-18 14:11:24 +1000224 /* Check for socket/bind/listen failure. */
225 if (sock < 0)
Damien Miller7207f642008-05-19 15:34:50 +1000226 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000227
228 /* Allocate a channel for the authentication agent socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000229 nc = channel_new(ssh, "auth socket",
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000230 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
231 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000232 0, "auth socket", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100233 nc->path = xstrdup(auth_sock_name);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000234 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000235
236 authsock_err:
Darren Tuckera627d422013-06-02 07:31:17 +1000237 free(auth_sock_name);
Damien Miller7207f642008-05-19 15:34:50 +1000238 if (auth_sock_dir != NULL) {
239 rmdir(auth_sock_dir);
Darren Tuckera627d422013-06-02 07:31:17 +1000240 free(auth_sock_dir);
Damien Miller7207f642008-05-19 15:34:50 +1000241 }
242 if (sock != -1)
243 close(sock);
244 auth_sock_name = NULL;
245 auth_sock_dir = NULL;
246 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000247}
248
Darren Tucker1921ed92004-02-10 13:23:28 +1100249static void
250display_loginmsg(void)
251{
markus@openbsd.org2808d182018-07-09 21:26:02 +0000252 int r;
253
254 if (sshbuf_len(loginmsg) == 0)
255 return;
256 if ((r = sshbuf_put_u8(loginmsg, 0)) != 0)
257 fatal("%s: buffer error: %s", __func__, ssh_err(r));
258 printf("%s", (char *)sshbuf_ptr(loginmsg));
259 sshbuf_reset(loginmsg);
Darren Tucker1921ed92004-02-10 13:23:28 +1100260}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000261
djm@openbsd.org8f574952017-06-24 06:34:38 +0000262static void
263prepare_auth_info_file(struct passwd *pw, struct sshbuf *info)
264{
265 int fd = -1, success = 0;
266
267 if (!options.expose_userauth_info || info == NULL)
268 return;
269
270 temporarily_use_uid(pw);
271 auth_info_file = xstrdup("/tmp/sshauth.XXXXXXXXXXXXXXX");
272 if ((fd = mkstemp(auth_info_file)) == -1) {
273 error("%s: mkstemp: %s", __func__, strerror(errno));
274 goto out;
275 }
276 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(info),
277 sshbuf_len(info)) != sshbuf_len(info)) {
278 error("%s: write: %s", __func__, strerror(errno));
279 goto out;
280 }
281 if (close(fd) != 0) {
282 error("%s: close: %s", __func__, strerror(errno));
283 goto out;
284 }
285 success = 1;
286 out:
287 if (!success) {
288 if (fd != -1)
289 close(fd);
290 free(auth_info_file);
291 auth_info_file = NULL;
292 }
293 restore_uid();
294}
295
djm@openbsd.org7c856852018-03-03 03:15:51 +0000296static void
djm@openbsd.org93c06ab2018-06-06 18:23:32 +0000297set_fwdpermit_from_authopts(struct ssh *ssh, const struct sshauthopt *opts)
djm@openbsd.org7c856852018-03-03 03:15:51 +0000298{
299 char *tmp, *cp, *host;
300 int port;
301 size_t i;
302
djm@openbsd.org93c06ab2018-06-06 18:23:32 +0000303 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0) {
304 channel_clear_permission(ssh, FORWARD_USER, FORWARD_LOCAL);
305 for (i = 0; i < auth_opts->npermitopen; i++) {
306 tmp = cp = xstrdup(auth_opts->permitopen[i]);
307 /* This shouldn't fail as it has already been checked */
308 if ((host = hpdelim(&cp)) == NULL)
309 fatal("%s: internal error: hpdelim", __func__);
310 host = cleanhostname(host);
311 if (cp == NULL || (port = permitopen_port(cp)) < 0)
312 fatal("%s: internal error: permitopen port",
313 __func__);
314 channel_add_permission(ssh,
315 FORWARD_USER, FORWARD_LOCAL, host, port);
316 free(tmp);
317 }
318 }
319 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) != 0) {
320 channel_clear_permission(ssh, FORWARD_USER, FORWARD_REMOTE);
321 for (i = 0; i < auth_opts->npermitlisten; i++) {
322 tmp = cp = xstrdup(auth_opts->permitlisten[i]);
323 /* This shouldn't fail as it has already been checked */
324 if ((host = hpdelim(&cp)) == NULL)
325 fatal("%s: internal error: hpdelim", __func__);
326 host = cleanhostname(host);
327 if (cp == NULL || (port = permitopen_port(cp)) < 0)
328 fatal("%s: internal error: permitlisten port",
329 __func__);
330 channel_add_permission(ssh,
331 FORWARD_USER, FORWARD_REMOTE, host, port);
332 free(tmp);
333 }
djm@openbsd.org7c856852018-03-03 03:15:51 +0000334 }
335}
336
Ben Lindstromb31783d2001-03-22 02:02:12 +0000337void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000338do_authenticated(struct ssh *ssh, Authctxt *authctxt)
Ben Lindstromb31783d2001-03-22 02:02:12 +0000339{
Damien Miller97f39ae2003-02-24 11:57:01 +1100340 setproctitle("%s", authctxt->pw->pw_name);
341
djm@openbsd.org7c856852018-03-03 03:15:51 +0000342 auth_log_authopts("active", auth_opts, 0);
343
Ben Lindstromb31783d2001-03-22 02:02:12 +0000344 /* setup the channel layer */
Damien Miller7acefbb2014-07-18 14:11:24 +1000345 /* XXX - streamlocal? */
djm@openbsd.org93c06ab2018-06-06 18:23:32 +0000346 set_fwdpermit_from_authopts(ssh, auth_opts);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000347
djm@openbsd.org115063a2018-06-06 18:22:41 +0000348 if (!auth_opts->permit_port_forwarding_flag ||
349 options.disable_forwarding) {
350 channel_disable_admin(ssh, FORWARD_LOCAL);
351 channel_disable_admin(ssh, FORWARD_REMOTE);
352 } else {
353 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) == 0)
354 channel_disable_admin(ssh, FORWARD_LOCAL);
355 else
356 channel_permit_all(ssh, FORWARD_LOCAL);
357 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0)
358 channel_disable_admin(ssh, FORWARD_REMOTE);
359 else
360 channel_permit_all(ssh, FORWARD_REMOTE);
361 }
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100362 auth_debug_send();
363
djm@openbsd.org8f574952017-06-24 06:34:38 +0000364 prepare_auth_info_file(authctxt->pw, authctxt->session_info);
365
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000366 do_authenticated2(ssh, authctxt);
djm@openbsd.org8f574952017-06-24 06:34:38 +0000367
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000368 do_cleanup(ssh, authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000369}
370
djm@openbsd.org4b4bfb02016-03-10 11:47:57 +0000371/* Check untrusted xauth strings for metacharacters */
372static int
373xauth_valid_string(const char *s)
374{
375 size_t i;
376
377 for (i = 0; s[i] != '\0'; i++) {
378 if (!isalnum((u_char)s[i]) &&
379 s[i] != '.' && s[i] != ':' && s[i] != '/' &&
380 s[i] != '-' && s[i] != '_')
deraadt@openbsd.org21fd4772018-07-25 13:56:23 +0000381 return 0;
djm@openbsd.org4b4bfb02016-03-10 11:47:57 +0000382 }
383 return 1;
384}
385
Darren Tucker293ee3c2014-01-19 15:28:01 +1100386#define USE_PIPES 1
Damien Millerb38eff82000-04-01 11:09:21 +1000387/*
388 * This is called to fork and execute a command when we have no tty. This
389 * will call do_child from the child, and server_loop from the parent after
390 * setting up file descriptors and such.
391 */
Damien Miller7207f642008-05-19 15:34:50 +1000392int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000393do_exec_no_pty(struct ssh *ssh, Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000394{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000395 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000396#ifdef USE_PIPES
397 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000398
Damien Miller22a29882010-05-10 11:53:54 +1000399 if (s == NULL)
400 fatal("do_exec_no_pty: no session");
401
Damien Millerb38eff82000-04-01 11:09:21 +1000402 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000403 if (pipe(pin) < 0) {
404 error("%s: pipe in: %.100s", __func__, strerror(errno));
405 return -1;
406 }
407 if (pipe(pout) < 0) {
408 error("%s: pipe out: %.100s", __func__, strerror(errno));
409 close(pin[0]);
410 close(pin[1]);
411 return -1;
412 }
Damien Miller8853ca52010-06-26 10:00:14 +1000413 if (pipe(perr) < 0) {
414 error("%s: pipe err: %.100s", __func__,
415 strerror(errno));
416 close(pin[0]);
417 close(pin[1]);
418 close(pout[0]);
419 close(pout[1]);
420 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000421 }
422#else
Damien Millerb38eff82000-04-01 11:09:21 +1000423 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000424
Damien Miller22a29882010-05-10 11:53:54 +1000425 if (s == NULL)
426 fatal("do_exec_no_pty: no session");
427
Damien Millerb38eff82000-04-01 11:09:21 +1000428 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000429 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
430 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
431 return -1;
432 }
Damien Miller8853ca52010-06-26 10:00:14 +1000433 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
434 error("%s: socketpair #2: %.100s", __func__,
435 strerror(errno));
436 close(inout[0]);
437 close(inout[1]);
438 return -1;
Damien Miller7207f642008-05-19 15:34:50 +1000439 }
440#endif
441
Damien Millere247cc42000-05-07 12:03:14 +1000442 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000443
Damien Millerb38eff82000-04-01 11:09:21 +1000444 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000445 switch ((pid = fork())) {
446 case -1:
447 error("%s: fork: %.100s", __func__, strerror(errno));
448#ifdef USE_PIPES
449 close(pin[0]);
450 close(pin[1]);
451 close(pout[0]);
452 close(pout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000453 close(perr[0]);
Damien Miller7207f642008-05-19 15:34:50 +1000454 close(perr[1]);
455#else
456 close(inout[0]);
457 close(inout[1]);
458 close(err[0]);
Damien Miller8853ca52010-06-26 10:00:14 +1000459 close(err[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000460#endif
461 return -1;
462 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000463 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000464
Damien Millerb38eff82000-04-01 11:09:21 +1000465 /*
466 * Create a new session and process group since the 4.4BSD
467 * setlogin() affects the entire process group.
468 */
469 if (setsid() < 0)
470 error("setsid failed: %.100s", strerror(errno));
471
472#ifdef USE_PIPES
473 /*
474 * Redirect stdin. We close the parent side of the socket
475 * pair, and make the child side the standard input.
476 */
477 close(pin[1]);
478 if (dup2(pin[0], 0) < 0)
479 perror("dup2 stdin");
480 close(pin[0]);
481
482 /* Redirect stdout. */
483 close(pout[0]);
484 if (dup2(pout[1], 1) < 0)
485 perror("dup2 stdout");
486 close(pout[1]);
487
488 /* Redirect stderr. */
Damien Miller8853ca52010-06-26 10:00:14 +1000489 close(perr[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000490 if (dup2(perr[1], 2) < 0)
491 perror("dup2 stderr");
492 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000493#else
Damien Millerb38eff82000-04-01 11:09:21 +1000494 /*
495 * Redirect stdin, stdout, and stderr. Stdin and stdout will
496 * use the same socket, as some programs (particularly rdist)
497 * seem to depend on it.
498 */
499 close(inout[1]);
Damien Miller8853ca52010-06-26 10:00:14 +1000500 close(err[1]);
Damien Millerb38eff82000-04-01 11:09:21 +1000501 if (dup2(inout[0], 0) < 0) /* stdin */
502 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000503 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000504 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000505 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000506 if (dup2(err[0], 2) < 0) /* stderr */
507 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000508 close(err[0]);
509#endif
510
Damien Millerb38eff82000-04-01 11:09:21 +1000511 /* Do processing for the child (exec command etc). */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000512 do_child(ssh, s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000513 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000514 default:
515 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000516 }
Damien Miller7207f642008-05-19 15:34:50 +1000517
Damien Millerbac2d8a2000-09-05 16:13:06 +1100518#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100519 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100520#endif
Damien Miller7207f642008-05-19 15:34:50 +1000521
Damien Millerb38eff82000-04-01 11:09:21 +1000522 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000523 /* Set interactive/non-interactive mode. */
Damien Miller0dac6fb2010-11-20 15:19:38 +1100524 packet_set_interactive(s->display != NULL,
525 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller7207f642008-05-19 15:34:50 +1000526
527 /*
528 * Clear loginmsg, since it's the child's responsibility to display
529 * it to the user, otherwise multiple sessions may accumulate
530 * multiple copies of the login messages.
531 */
Damien Miller120a1ec2018-07-10 19:39:52 +1000532 sshbuf_reset(loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000533
Damien Millerb38eff82000-04-01 11:09:21 +1000534#ifdef USE_PIPES
535 /* We are the parent. Close the child sides of the pipes. */
536 close(pin[0]);
537 close(pout[1]);
538 close(perr[1]);
539
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000540 session_set_fds(ssh, s, pin[1], pout[0], perr[0],
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000541 s->is_subsystem, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000542#else
Damien Millerb38eff82000-04-01 11:09:21 +1000543 /* We are the parent. Close the child sides of the socket pairs. */
544 close(inout[0]);
545 close(err[0]);
546
547 /*
548 * Enter the interactive session. Note: server_loop must be able to
549 * handle the case that fdin and fdout are the same.
550 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000551 session_set_fds(s, inout[1], inout[1], err[1],
552 s->is_subsystem, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000553#endif
554 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000555}
556
557/*
558 * This is called to fork and execute a command when we have a tty. This
559 * will call do_child from the child, and server_loop from the parent after
560 * setting up file descriptors, controlling tty, updating wtmp, utmp,
561 * lastlog, and other such operations.
562 */
Damien Miller7207f642008-05-19 15:34:50 +1000563int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000564do_exec_pty(struct ssh *ssh, Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000565{
Damien Millerb38eff82000-04-01 11:09:21 +1000566 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000567 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000568
569 if (s == NULL)
570 fatal("do_exec_pty: no session");
571 ptyfd = s->ptyfd;
572 ttyfd = s->ttyfd;
573
Damien Miller7207f642008-05-19 15:34:50 +1000574 /*
575 * Create another descriptor of the pty master side for use as the
576 * standard input. We could use the original descriptor, but this
577 * simplifies code in server_loop. The descriptor is bidirectional.
578 * Do this before forking (and cleanup in the child) so as to
579 * detect and gracefully fail out-of-fd conditions.
580 */
581 if ((fdout = dup(ptyfd)) < 0) {
582 error("%s: dup #1: %s", __func__, strerror(errno));
583 close(ttyfd);
584 close(ptyfd);
585 return -1;
586 }
587 /* we keep a reference to the pty master */
588 if ((ptymaster = dup(ptyfd)) < 0) {
589 error("%s: dup #2: %s", __func__, strerror(errno));
590 close(ttyfd);
591 close(ptyfd);
592 close(fdout);
593 return -1;
594 }
595
Damien Millerb38eff82000-04-01 11:09:21 +1000596 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000597 switch ((pid = fork())) {
598 case -1:
599 error("%s: fork: %.100s", __func__, strerror(errno));
600 close(fdout);
601 close(ptymaster);
602 close(ttyfd);
603 close(ptyfd);
604 return -1;
605 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000606 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000607
Damien Miller7207f642008-05-19 15:34:50 +1000608 close(fdout);
609 close(ptymaster);
610
Damien Millerb38eff82000-04-01 11:09:21 +1000611 /* Close the master side of the pseudo tty. */
612 close(ptyfd);
613
614 /* Make the pseudo tty our controlling tty. */
615 pty_make_controlling_tty(&ttyfd, s->tty);
616
Damien Miller9c751422001-10-10 15:02:46 +1000617 /* Redirect stdin/stdout/stderr from the pseudo tty. */
618 if (dup2(ttyfd, 0) < 0)
619 error("dup2 stdin: %s", strerror(errno));
620 if (dup2(ttyfd, 1) < 0)
621 error("dup2 stdout: %s", strerror(errno));
622 if (dup2(ttyfd, 2) < 0)
623 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000624
625 /* Close the extra descriptor for the pseudo tty. */
626 close(ttyfd);
627
Damien Miller942da032000-08-18 13:59:06 +1000628 /* record login, etc. similar to login(1) */
otto@openbsd.orgfc041c42016-08-23 16:21:45 +0000629#ifndef HAVE_OSF_SIA
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000630 do_login(ssh, s, command);
Damien Miller364a9bd2001-04-16 18:37:05 +1000631#endif
Damien Miller7207f642008-05-19 15:34:50 +1000632 /*
633 * Do common processing for the child, such as execing
634 * the command.
635 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000636 do_child(ssh, s, command);
Darren Tucker43e7a352009-06-21 19:50:08 +1000637 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000638 default:
639 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000640 }
Damien Miller7207f642008-05-19 15:34:50 +1000641
Damien Millerbac2d8a2000-09-05 16:13:06 +1100642#ifdef HAVE_CYGWIN
Darren Tucker9d86e5d2009-03-08 11:40:27 +1100643 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100644#endif
Damien Miller7207f642008-05-19 15:34:50 +1000645
Damien Millerb38eff82000-04-01 11:09:21 +1000646 s->pid = pid;
647
648 /* Parent. Close the slave side of the pseudo tty. */
649 close(ttyfd);
650
Damien Millerb38eff82000-04-01 11:09:21 +1000651 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000652 s->ptymaster = ptymaster;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100653 packet_set_interactive(1,
654 options.ip_qos_interactive, options.ip_qos_bulk);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000655 session_set_fds(ssh, s, ptyfd, fdout, -1, 1, 1);
Damien Miller7207f642008-05-19 15:34:50 +1000656 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000657}
658
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000659#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000660static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000661do_pre_login(Session *s)
662{
Darren Tuckeraa377682016-06-20 15:55:34 +1000663 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000664 socklen_t fromlen;
665 struct sockaddr_storage from;
666 pid_t pid = getpid();
667
668 /*
669 * Get IP address of client. If the connection is not a socket, let
670 * the address be 0.0.0.0.
671 */
672 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000673 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000674 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000675 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100676 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000677 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000678 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000679 }
680 }
681
682 record_utmp_only(pid, s->tty, s->pw->pw_name,
Darren Tuckeraa377682016-06-20 15:55:34 +1000683 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000684 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000685}
686#endif
687
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000688/*
689 * This is called to fork and execute a command. If another command is
690 * to be forced, execute that instead.
691 */
Damien Miller7207f642008-05-19 15:34:50 +1000692int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000693do_exec(struct ssh *ssh, Session *s, const char *command)
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000694{
Damien Miller7207f642008-05-19 15:34:50 +1000695 int ret;
djm@openbsd.org5a0fcb72016-02-16 03:37:48 +0000696 const char *forced = NULL, *tty = NULL;
697 char session_type[1024];
Damien Miller7207f642008-05-19 15:34:50 +1000698
Damien Millere2754432006-07-24 14:06:47 +1000699 if (options.adm_forced_command) {
700 original_command = command;
701 command = options.adm_forced_command;
Damien Miller71df7522013-10-15 12:12:02 +1100702 forced = "(config)";
djm@openbsd.org7c856852018-03-03 03:15:51 +0000703 } else if (auth_opts->force_command != NULL) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000704 original_command = command;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000705 command = auth_opts->force_command;
Damien Miller71df7522013-10-15 12:12:02 +1100706 forced = "(key-option)";
707 }
djm@openbsd.orgcd989252018-10-02 12:40:07 +0000708 s->forced = 0;
Damien Miller71df7522013-10-15 12:12:02 +1100709 if (forced != NULL) {
djm@openbsd.orgcd989252018-10-02 12:40:07 +0000710 s->forced = 1;
Darren Tuckerd6b06a92010-01-08 17:09:11 +1100711 if (IS_INTERNAL_SFTP(command)) {
712 s->is_subsystem = s->is_subsystem ?
713 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
714 } else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100715 s->is_subsystem = SUBSYSTEM_EXT;
Damien Miller71df7522013-10-15 12:12:02 +1100716 snprintf(session_type, sizeof(session_type),
717 "forced-command %s '%.900s'", forced, command);
718 } else if (s->is_subsystem) {
719 snprintf(session_type, sizeof(session_type),
720 "subsystem '%.900s'", s->subsys);
721 } else if (command == NULL) {
722 snprintf(session_type, sizeof(session_type), "shell");
723 } else {
724 /* NB. we don't log unforced commands to preserve privacy */
725 snprintf(session_type, sizeof(session_type), "command");
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000726 }
727
Damien Miller71df7522013-10-15 12:12:02 +1100728 if (s->ttyfd != -1) {
729 tty = s->tty;
730 if (strncmp(tty, "/dev/", 5) == 0)
731 tty += 5;
732 }
733
djm@openbsd.org5a0fcb72016-02-16 03:37:48 +0000734 verbose("Starting session: %s%s%s for %s from %.200s port %d id %d",
Damien Miller71df7522013-10-15 12:12:02 +1100735 session_type,
736 tty == NULL ? "" : " on ",
737 tty == NULL ? "" : tty,
738 s->pw->pw_name,
djm@openbsd.org95767262016-03-07 19:02:43 +0000739 ssh_remote_ipaddr(ssh),
740 ssh_remote_port(ssh),
djm@openbsd.org5a0fcb72016-02-16 03:37:48 +0000741 s->self);
Damien Miller71df7522013-10-15 12:12:02 +1100742
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100743#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100744 if (command != NULL)
745 PRIVSEP(audit_run_command(command));
746 else if (s->ttyfd == -1) {
747 char *shell = s->pw->pw_shell;
748
749 if (shell[0] == '\0') /* empty shell means /bin/sh */
750 shell =_PATH_BSHELL;
751 PRIVSEP(audit_run_command(shell));
752 }
753#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000754 if (s->ttyfd != -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000755 ret = do_exec_pty(ssh, s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000756 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000757 ret = do_exec_no_pty(ssh, s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000758
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000759 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000760
Darren Tucker09991742004-07-17 17:05:14 +1000761 /*
762 * Clear loginmsg: it's the child's responsibility to display
763 * it to the user, otherwise multiple sessions may accumulate
764 * multiple copies of the login messages.
765 */
markus@openbsd.org2808d182018-07-09 21:26:02 +0000766 sshbuf_reset(loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000767
768 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000769}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000770
Damien Miller942da032000-08-18 13:59:06 +1000771/* administrative, login(1)-like work */
772void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000773do_login(struct ssh *ssh, Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000774{
Damien Miller942da032000-08-18 13:59:06 +1000775 socklen_t fromlen;
776 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000777 struct passwd * pw = s->pw;
778 pid_t pid = getpid();
779
780 /*
781 * Get IP address of client. If the connection is not a socket, let
782 * the address be 0.0.0.0.
783 */
784 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000785 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000786 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000787 if (getpeername(packet_get_connection_in(),
Darren Tucker43e7a352009-06-21 19:50:08 +1000788 (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000789 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000790 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000791 }
792 }
793
794 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000795 if (!use_privsep)
796 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +0000797 session_get_remote_name_or_ip(ssh, utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000798 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000799 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000800
Kevin Steves092f2ef2000-10-14 13:36:13 +0000801#ifdef USE_PAM
802 /*
803 * If password change is needed, do it now.
804 * This needs to occur before the ~/.hushlogin check.
805 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100806 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
807 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000808 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100809 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000810 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000811 }
812#endif
813
Damien Millercf205e82001-04-16 18:29:15 +1000814 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000815 return;
816
Darren Tucker1921ed92004-02-10 13:23:28 +1100817 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000818
Damien Millercf205e82001-04-16 18:29:15 +1000819 do_motd();
820}
821
822/*
823 * Display the message of the day.
824 */
825void
826do_motd(void)
827{
828 FILE *f;
829 char buf[256];
830
Damien Miller942da032000-08-18 13:59:06 +1000831 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000832#ifdef HAVE_LOGIN_CAP
833 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
834 "/etc/motd"), "r");
835#else
Damien Miller942da032000-08-18 13:59:06 +1000836 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000837#endif
Damien Miller942da032000-08-18 13:59:06 +1000838 if (f) {
839 while (fgets(buf, sizeof(buf), f))
840 fputs(buf, stdout);
841 fclose(f);
842 }
843 }
844}
845
Kevin Steves8f63caa2001-07-04 18:23:02 +0000846
847/*
848 * Check for quiet login, either .hushlogin or command given.
849 */
850int
851check_quietlogin(Session *s, const char *command)
852{
853 char buf[256];
854 struct passwd *pw = s->pw;
855 struct stat st;
856
857 /* Return 1 if .hushlogin exists or a command given. */
858 if (command != NULL)
859 return 1;
860 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
861#ifdef HAVE_LOGIN_CAP
862 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
863 return 1;
864#else
865 if (stat(buf, &st) >= 0)
866 return 1;
867#endif
868 return 0;
869}
870
Damien Millerb38eff82000-04-01 11:09:21 +1000871/*
Damien Millerb38eff82000-04-01 11:09:21 +1000872 * Reads environment variables from the given file and adds/overrides them
873 * into the environment. If the file does not exist, this does nothing.
874 * Otherwise, it must consist of empty lines, comments (line starts with '#')
875 * and assignments of the form name=value. No other forms are allowed.
djm@openbsd.org95344c22018-07-03 10:59:35 +0000876 * If whitelist is not NULL, then it is interpreted as a pattern list and
877 * only variable names that match it will be accepted.
Damien Millerb38eff82000-04-01 11:09:21 +1000878 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000879static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000880read_environment_file(char ***env, u_int *envsize,
djm@openbsd.org95344c22018-07-03 10:59:35 +0000881 const char *filename, const char *whitelist)
Damien Millerb38eff82000-04-01 11:09:21 +1000882{
883 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000884 char *line = NULL, *cp, *value;
885 size_t linesize = 0;
Damien Miller990070a2002-06-26 23:51:06 +1000886 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000887
888 f = fopen(filename, "r");
889 if (!f)
890 return;
891
markus@openbsd.org7f906352018-06-06 18:29:18 +0000892 while (getline(&line, &linesize, f) != -1) {
Damien Miller990070a2002-06-26 23:51:06 +1000893 if (++lineno > 1000)
894 fatal("Too many lines in environment file %s", filename);
markus@openbsd.org7f906352018-06-06 18:29:18 +0000895 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerb38eff82000-04-01 11:09:21 +1000896 ;
897 if (!*cp || *cp == '#' || *cp == '\n')
898 continue;
Damien Miller14b017d2007-09-17 16:09:15 +1000899
900 cp[strcspn(cp, "\n")] = '\0';
901
Damien Millerb38eff82000-04-01 11:09:21 +1000902 value = strchr(cp, '=');
903 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000904 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
905 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000906 continue;
907 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000908 /*
909 * Replace the equals sign by nul, and advance value to
910 * the value string.
911 */
Damien Millerb38eff82000-04-01 11:09:21 +1000912 *value = '\0';
913 value++;
djm@openbsd.org95344c22018-07-03 10:59:35 +0000914 if (whitelist != NULL &&
915 match_pattern_list(cp, whitelist, 0) != 1)
916 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000917 child_set_env(env, envsize, cp, value);
918 }
markus@openbsd.org7f906352018-06-06 18:29:18 +0000919 free(line);
Damien Millerb38eff82000-04-01 11:09:21 +1000920 fclose(f);
921}
922
Darren Tuckere1a790d2003-09-16 11:52:19 +1000923#ifdef HAVE_ETC_DEFAULT_LOGIN
924/*
925 * Return named variable from specified environment, or NULL if not present.
926 */
927static char *
928child_get_env(char **env, const char *name)
929{
930 int i;
931 size_t len;
932
933 len = strlen(name);
934 for (i=0; env[i] != NULL; i++)
935 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
936 return(env[i] + len + 1);
937 return NULL;
938}
939
940/*
941 * Read /etc/default/login.
942 * We pick up the PATH (or SUPATH for root) and UMASK.
943 */
944static void
945read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
946{
947 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000948 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000949 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000950
951 /*
952 * We don't want to copy the whole file to the child's environment,
953 * so we use a temporary environment and copy the variables we're
954 * interested in.
955 */
Darren Tucker3deb56f2018-07-05 13:32:01 +1000956 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login",
957 options.permit_user_env_whitelist);
Darren Tuckere1a790d2003-09-16 11:52:19 +1000958
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000959 if (tmpenv == NULL)
960 return;
961
Darren Tuckere1a790d2003-09-16 11:52:19 +1000962 if (uid == 0)
963 var = child_get_env(tmpenv, "SUPATH");
964 else
965 var = child_get_env(tmpenv, "PATH");
966 if (var != NULL)
967 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100968
Darren Tuckere1a790d2003-09-16 11:52:19 +1000969 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
970 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000971 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100972
Darren Tuckere1a790d2003-09-16 11:52:19 +1000973 for (i = 0; tmpenv[i] != NULL; i++)
Darren Tuckerf60845f2013-06-02 08:07:31 +1000974 free(tmpenv[i]);
975 free(tmpenv);
Darren Tuckere1a790d2003-09-16 11:52:19 +1000976}
977#endif /* HAVE_ETC_DEFAULT_LOGIN */
978
Damien Miller94bc1e72017-07-28 14:50:59 +1000979static void
980copy_environment_blacklist(char **source, char ***env, u_int *envsize,
981 const char *blacklist)
Damien Millerb38eff82000-04-01 11:09:21 +1000982{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100983 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000984 int i;
985
Damien Millerbb9ffc12002-01-08 10:59:32 +1100986 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000987 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000988
Damien Millerbb9ffc12002-01-08 10:59:32 +1100989 for(i = 0; source[i] != NULL; i++) {
990 var_name = xstrdup(source[i]);
991 if ((var_val = strstr(var_name, "=")) == NULL) {
Darren Tuckerf60845f2013-06-02 08:07:31 +1000992 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000993 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000994 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100995 *var_val++ = '\0';
996
Damien Miller94bc1e72017-07-28 14:50:59 +1000997 if (blacklist == NULL ||
998 match_pattern_list(var_name, blacklist, 0) != 1) {
999 debug3("Copy environment: %s=%s", var_name, var_val);
1000 child_set_env(env, envsize, var_name, var_val);
1001 }
Damien Miller787b2ec2003-11-21 23:56:47 +11001002
Darren Tuckerf60845f2013-06-02 08:07:31 +10001003 free(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001004 }
1005}
Damien Millercb5e44a2000-09-29 12:12:36 +11001006
Damien Miller94bc1e72017-07-28 14:50:59 +10001007void
1008copy_environment(char **source, char ***env, u_int *envsize)
1009{
1010 copy_environment_blacklist(source, env, envsize, NULL);
1011}
1012
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001013static char **
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001014do_setup_env(struct ssh *ssh, Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001015{
Damien Millerb38eff82000-04-01 11:09:21 +10001016 char buf[256];
djm@openbsd.org7c856852018-03-03 03:15:51 +00001017 size_t n;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001018 u_int i, envsize;
djm@openbsd.org28013752018-06-09 03:03:10 +00001019 char *ocp, *cp, *value, **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001020 struct passwd *pw = s->pw;
Darren Tucker9d86e5d2009-03-08 11:40:27 +11001021#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
Damien Millerad5ecbf2006-07-24 15:03:06 +10001022 char *path = NULL;
1023#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001024
Damien Millerb38eff82000-04-01 11:09:21 +10001025 /* Initialize the environment. */
1026 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001027 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001028 env[0] = NULL;
1029
Damien Millerbac2d8a2000-09-05 16:13:06 +11001030#ifdef HAVE_CYGWIN
1031 /*
1032 * The Windows environment contains some setting which are
1033 * important for a running system. They must not be dropped.
1034 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001035 {
1036 char **p;
1037
1038 p = fetch_windows_environment();
1039 copy_environment(p, &env, &envsize);
1040 free_windows_environment(p);
1041 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001042#endif
1043
Darren Tucker0efd1552003-08-26 11:49:55 +10001044#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001045 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001046 * the childs environment as they see fit
1047 */
1048 ssh_gssapi_do_child(&env, &envsize);
1049#endif
1050
djm@openbsd.org83b58182016-08-19 03:18:06 +00001051 /* Set basic environment. */
1052 for (i = 0; i < s->num_env; i++)
1053 child_set_env(&env, &envsize, s->env[i].name, s->env[i].val);
Darren Tucker46bc0752004-05-02 22:11:30 +10001054
djm@openbsd.org83b58182016-08-19 03:18:06 +00001055 child_set_env(&env, &envsize, "USER", pw->pw_name);
1056 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001057#ifdef _AIX
djm@openbsd.org83b58182016-08-19 03:18:06 +00001058 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001059#endif
djm@openbsd.org83b58182016-08-19 03:18:06 +00001060 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001061#ifdef HAVE_LOGIN_CAP
djm@openbsd.org83b58182016-08-19 03:18:06 +00001062 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1063 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1064 else
1065 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001066#else /* HAVE_LOGIN_CAP */
1067# ifndef HAVE_CYGWIN
djm@openbsd.org83b58182016-08-19 03:18:06 +00001068 /*
1069 * There's no standard path on Windows. The path contains
1070 * important components pointing to the system directories,
1071 * needed for loading shared libraries. So the path better
1072 * remains intact here.
1073 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001074# ifdef HAVE_ETC_DEFAULT_LOGIN
djm@openbsd.org83b58182016-08-19 03:18:06 +00001075 read_etc_default_login(&env, &envsize, pw->pw_uid);
1076 path = child_get_env(env, "PATH");
Darren Tuckere1a790d2003-09-16 11:52:19 +10001077# endif /* HAVE_ETC_DEFAULT_LOGIN */
djm@openbsd.org83b58182016-08-19 03:18:06 +00001078 if (path == NULL || *path == '\0') {
1079 child_set_env(&env, &envsize, "PATH",
1080 s->pw->pw_uid == 0 ? SUPERUSER_PATH : _PATH_STDPATH);
1081 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001082# endif /* HAVE_CYGWIN */
1083#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001084
djm@openbsd.org83b58182016-08-19 03:18:06 +00001085 snprintf(buf, sizeof buf, "%.200s/%.50s", _PATH_MAILDIR, pw->pw_name);
1086 child_set_env(&env, &envsize, "MAIL", buf);
Damien Millerb38eff82000-04-01 11:09:21 +10001087
djm@openbsd.org83b58182016-08-19 03:18:06 +00001088 /* Normal systems set SHELL by default. */
1089 child_set_env(&env, &envsize, "SHELL", shell);
1090
Damien Millerb38eff82000-04-01 11:09:21 +10001091 if (getenv("TZ"))
1092 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001093 if (s->term)
1094 child_set_env(&env, &envsize, "TERM", s->term);
1095 if (s->display)
1096 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Millerb38eff82000-04-01 11:09:21 +10001097
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001098 /*
1099 * Since we clear KRB5CCNAME at startup, if it's set now then it
1100 * must have been set by a native authentication method (eg AIX or
1101 * SIA), so copy it to the child.
1102 */
1103 {
1104 char *cp;
1105
1106 if ((cp = getenv("KRB5CCNAME")) != NULL)
1107 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1108 }
1109
Damien Millerb38eff82000-04-01 11:09:21 +10001110#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001111 {
1112 char *cp;
1113
1114 if ((cp = getenv("AUTHSTATE")) != NULL)
1115 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Darren Tucker3deb56f2018-07-05 13:32:01 +10001116 read_environment_file(&env, &envsize, "/etc/environment",
1117 options.permit_user_env_whitelist);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001118 }
Damien Millerb38eff82000-04-01 11:09:21 +10001119#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001120#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001121 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001122 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001123 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001124#endif
djm@openbsd.org3b9798b2018-06-09 02:58:02 +00001125 if (auth_sock_name != NULL)
1126 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1127 auth_sock_name);
1128
1129
1130 /* Set custom environment options from pubkey authentication. */
1131 if (options.permit_user_env) {
1132 for (n = 0 ; n < auth_opts->nenv; n++) {
1133 ocp = xstrdup(auth_opts->env[n]);
1134 cp = strchr(ocp, '=');
1135 if (*cp == '=') {
1136 *cp = '\0';
djm@openbsd.org95344c22018-07-03 10:59:35 +00001137 /* Apply PermitUserEnvironment whitelist */
1138 if (options.permit_user_env_whitelist == NULL ||
1139 match_pattern_list(ocp,
1140 options.permit_user_env_whitelist, 0) == 1)
1141 child_set_env(&env, &envsize,
1142 ocp, cp + 1);
djm@openbsd.org3b9798b2018-06-09 02:58:02 +00001143 }
1144 free(ocp);
1145 }
1146 }
1147
1148 /* read $HOME/.ssh/environment. */
1149 if (options.permit_user_env) {
1150 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1151 pw->pw_dir);
djm@openbsd.org95344c22018-07-03 10:59:35 +00001152 read_environment_file(&env, &envsize, buf,
1153 options.permit_user_env_whitelist);
djm@openbsd.org3b9798b2018-06-09 02:58:02 +00001154 }
1155
Damien Millerb38eff82000-04-01 11:09:21 +10001156#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001157 /*
1158 * Pull in any environment variables that may have
1159 * been set by PAM.
1160 */
djm@openbsd.org83b58182016-08-19 03:18:06 +00001161 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001162 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001163
Damien Miller94bc1e72017-07-28 14:50:59 +10001164 /*
1165 * Don't allow SSH_AUTH_INFO variables posted to PAM to leak
1166 * back into the environment.
1167 */
Damien Millerc756e9b2003-11-17 21:41:42 +11001168 p = fetch_pam_child_environment();
Damien Miller94bc1e72017-07-28 14:50:59 +10001169 copy_environment_blacklist(p, &env, &envsize, "SSH_AUTH_INFO*");
Damien Millerc756e9b2003-11-17 21:41:42 +11001170 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001171
Damien Millerc756e9b2003-11-17 21:41:42 +11001172 p = fetch_pam_environment();
Damien Miller94bc1e72017-07-28 14:50:59 +10001173 copy_environment_blacklist(p, &env, &envsize, "SSH_AUTH_INFO*");
Kevin Steves38b050a2002-07-23 00:44:07 +00001174 free_pam_environment(p);
1175 }
Damien Millerb38eff82000-04-01 11:09:21 +10001176#endif /* USE_PAM */
1177
djm@openbsd.org28013752018-06-09 03:03:10 +00001178 /* Environment specified by admin */
1179 for (i = 0; i < options.num_setenv; i++) {
1180 cp = xstrdup(options.setenv[i]);
1181 if ((value = strchr(cp, '=')) == NULL) {
1182 /* shouldn't happen; vars are checked in servconf.c */
1183 fatal("Invalid config SetEnv: %s", options.setenv[i]);
1184 }
1185 *value++ = '\0';
1186 child_set_env(&env, &envsize, cp, value);
1187 }
1188
djm@openbsd.org3b9798b2018-06-09 02:58:02 +00001189 /* SSH_CLIENT deprecated */
1190 snprintf(buf, sizeof buf, "%.50s %d %d",
1191 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
1192 ssh_local_port(ssh));
1193 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
Damien Millerb38eff82000-04-01 11:09:21 +10001194
djm@openbsd.org3b9798b2018-06-09 02:58:02 +00001195 laddr = get_local_ipaddr(packet_get_connection_in());
1196 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
1197 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
1198 laddr, ssh_local_port(ssh));
1199 free(laddr);
1200 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1201
1202 if (tun_fwd_ifnames != NULL)
1203 child_set_env(&env, &envsize, "SSH_TUNNEL", tun_fwd_ifnames);
1204 if (auth_info_file != NULL)
1205 child_set_env(&env, &envsize, "SSH_USER_AUTH", auth_info_file);
1206 if (s->ttyfd != -1)
1207 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1208 if (original_command)
1209 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1210 original_command);
1211
Damien Millerb38eff82000-04-01 11:09:21 +10001212 if (debug_flag) {
1213 /* dump the environment */
1214 fprintf(stderr, "Environment:\n");
1215 for (i = 0; env[i]; i++)
1216 fprintf(stderr, " %.200s\n", env[i]);
1217 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001218 return env;
1219}
1220
1221/*
1222 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1223 * first in this order).
1224 */
1225static void
djm@openbsd.org7c856852018-03-03 03:15:51 +00001226do_rc_files(struct ssh *ssh, Session *s, const char *shell)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001227{
1228 FILE *f = NULL;
1229 char cmd[1024];
1230 int do_xauth;
1231 struct stat st;
1232
1233 do_xauth =
1234 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1235
Damien Millera1b48cc2008-03-27 11:02:02 +11001236 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001237 if (!s->is_subsystem && options.adm_forced_command == NULL &&
djm@openbsd.org7c856852018-03-03 03:15:51 +00001238 auth_opts->permit_user_rc && options.permit_user_rc &&
Damien Miller72e6b5c2014-07-04 09:00:04 +10001239 stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001240 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1241 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1242 if (debug_flag)
1243 fprintf(stderr, "Running %s\n", cmd);
1244 f = popen(cmd, "w");
1245 if (f) {
1246 if (do_xauth)
1247 fprintf(f, "%s %s\n", s->auth_proto,
1248 s->auth_data);
1249 pclose(f);
1250 } else
1251 fprintf(stderr, "Could not run %s\n",
1252 _PATH_SSH_USER_RC);
1253 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1254 if (debug_flag)
1255 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1256 _PATH_SSH_SYSTEM_RC);
1257 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1258 if (f) {
1259 if (do_xauth)
1260 fprintf(f, "%s %s\n", s->auth_proto,
1261 s->auth_data);
1262 pclose(f);
1263 } else
1264 fprintf(stderr, "Could not run %s\n",
1265 _PATH_SSH_SYSTEM_RC);
1266 } else if (do_xauth && options.xauth_location != NULL) {
1267 /* Add authority data to .Xauthority if appropriate. */
1268 if (debug_flag) {
1269 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001270 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001271 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001272 fprintf(stderr,
1273 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001274 options.xauth_location, s->auth_display,
1275 s->auth_proto, s->auth_data);
1276 }
1277 snprintf(cmd, sizeof cmd, "%s -q -",
1278 options.xauth_location);
1279 f = popen(cmd, "w");
1280 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001281 fprintf(f, "remove %s\n",
1282 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001283 fprintf(f, "add %s %s %s\n",
1284 s->auth_display, s->auth_proto,
1285 s->auth_data);
1286 pclose(f);
1287 } else {
1288 fprintf(stderr, "Could not run %s\n",
1289 cmd);
1290 }
1291 }
1292}
1293
1294static void
1295do_nologin(struct passwd *pw)
1296{
1297 FILE *f = NULL;
Darren Tucker09aa4c02010-01-12 19:51:48 +11001298 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1299 struct stat sb;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001300
1301#ifdef HAVE_LOGIN_CAP
Damien Miller29cd1882012-04-22 11:08:10 +10001302 if (login_getcapbool(lc, "ignorenologin", 0) || pw->pw_uid == 0)
Darren Tucker09aa4c02010-01-12 19:51:48 +11001303 return;
1304 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001305#else
Darren Tucker09aa4c02010-01-12 19:51:48 +11001306 if (pw->pw_uid == 0)
1307 return;
1308 nl = def_nl;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001309#endif
Darren Tucker09aa4c02010-01-12 19:51:48 +11001310 if (stat(nl, &sb) == -1) {
1311 if (nl != def_nl)
Darren Tuckera627d422013-06-02 07:31:17 +10001312 free(nl);
Darren Tucker09aa4c02010-01-12 19:51:48 +11001313 return;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001314 }
Darren Tucker09aa4c02010-01-12 19:51:48 +11001315
1316 /* /etc/nologin exists. Print its contents if we can and exit. */
1317 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1318 if ((f = fopen(nl, "r")) != NULL) {
Darren Tucker19edfd42018-02-13 08:25:46 +11001319 while (fgets(buf, sizeof(buf), f))
1320 fputs(buf, stderr);
1321 fclose(f);
1322 }
Darren Tucker09aa4c02010-01-12 19:51:48 +11001323 exit(254);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001324}
1325
Damien Millerd8cb1f12008-02-10 22:40:12 +11001326/*
1327 * Chroot into a directory after checking it for safety: all path components
1328 * must be root-owned directories with strict permissions.
1329 */
1330static void
1331safely_chroot(const char *path, uid_t uid)
1332{
1333 const char *cp;
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00001334 char component[PATH_MAX];
Damien Millerd8cb1f12008-02-10 22:40:12 +11001335 struct stat st;
1336
djm@openbsd.org2a358622018-11-16 03:26:01 +00001337 if (!path_absolute(path))
Damien Millerd8cb1f12008-02-10 22:40:12 +11001338 fatal("chroot path does not begin at root");
1339 if (strlen(path) >= sizeof(component))
1340 fatal("chroot path too long");
1341
1342 /*
1343 * Descend the path, checking that each component is a
1344 * root-owned directory with strict permissions.
1345 */
1346 for (cp = path; cp != NULL;) {
1347 if ((cp = strchr(cp, '/')) == NULL)
1348 strlcpy(component, path, sizeof(component));
1349 else {
1350 cp++;
1351 memcpy(component, path, cp - path);
1352 component[cp - path] = '\0';
1353 }
1354
1355 debug3("%s: checking '%s'", __func__, component);
1356
1357 if (stat(component, &st) != 0)
1358 fatal("%s: stat(\"%s\"): %s", __func__,
1359 component, strerror(errno));
1360 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1361 fatal("bad ownership or modes for chroot "
1362 "directory %s\"%s\"",
1363 cp == NULL ? "" : "component ", component);
1364 if (!S_ISDIR(st.st_mode))
1365 fatal("chroot path %s\"%s\" is not a directory",
1366 cp == NULL ? "" : "component ", component);
1367
1368 }
1369
1370 if (chdir(path) == -1)
1371 fatal("Unable to chdir to chroot path \"%s\": "
1372 "%s", path, strerror(errno));
1373 if (chroot(path) == -1)
1374 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1375 if (chdir("/") == -1)
1376 fatal("%s: chdir(/) after chroot: %s",
1377 __func__, strerror(errno));
1378 verbose("Changed root directory to \"%s\"", path);
1379}
1380
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001381/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001382void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001383do_setusercontext(struct passwd *pw)
1384{
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001385 char uidstr[32], *chroot_path, *tmp;
Damien Miller54e37732008-02-10 22:48:55 +11001386
Darren Tucker97528352010-11-05 12:03:05 +11001387 platform_setusercontext(pw);
1388
Darren Tuckerb12fe272010-11-05 14:47:01 +11001389 if (platform_privileged_uidswap()) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001390#ifdef HAVE_LOGIN_CAP
1391 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001392 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001393 perror("unable to set user context");
1394 exit(1);
1395 }
1396#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001397 if (setlogin(pw->pw_name) < 0)
1398 error("setlogin failed: %s", strerror(errno));
1399 if (setgid(pw->pw_gid) < 0) {
1400 perror("setgid");
1401 exit(1);
1402 }
1403 /* Initialize the group list. */
1404 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1405 perror("initgroups");
1406 exit(1);
1407 }
1408 endgrent();
Damien Millerd8cb1f12008-02-10 22:40:12 +11001409#endif
1410
Darren Tucker920612e2010-11-05 12:36:15 +11001411 platform_setusercontext_post_groups(pw);
Damien Miller8b906422010-03-26 11:04:09 +11001412
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +00001413 if (!in_chroot && options.chroot_directory != NULL &&
Damien Millerd8cb1f12008-02-10 22:40:12 +11001414 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001415 tmp = tilde_expand_filename(options.chroot_directory,
1416 pw->pw_uid);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001417 snprintf(uidstr, sizeof(uidstr), "%llu",
1418 (unsigned long long)pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001419 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001420 "u", pw->pw_name, "U", uidstr, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001421 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001422 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001423 free(chroot_path);
Damien Millera56086b2013-04-23 15:24:18 +10001424 /* Make sure we don't attempt to chroot again */
1425 free(options.chroot_directory);
1426 options.chroot_directory = NULL;
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +00001427 in_chroot = 1;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001428 }
1429
1430#ifdef HAVE_LOGIN_CAP
1431 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1432 perror("unable to set user context (setuser)");
1433 exit(1);
1434 }
Damien Miller58528402013-03-15 11:22:37 +11001435 /*
1436 * FreeBSD's setusercontext() will not apply the user's
1437 * own umask setting unless running with the user's UID.
1438 */
1439 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001440#else
Tim Rice9464ba62014-01-20 17:59:28 -08001441# ifdef USE_LIBIAF
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +00001442 /*
1443 * In a chroot environment, the set_id() will always fail;
1444 * typically because of the lack of necessary authentication
1445 * services and runtime such as ./usr/lib/libiaf.so,
1446 * ./usr/lib/libpam.so.1, and ./etc/passwd We skip it in the
1447 * internal sftp chroot case. We'll lose auditing and ACLs but
1448 * permanently_set_uid will take care of the rest.
1449 */
1450 if (!in_chroot && set_id(pw->pw_name) != 0)
1451 fatal("set_id(%s) Failed", pw->pw_name);
Tim Rice9464ba62014-01-20 17:59:28 -08001452# endif /* USE_LIBIAF */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001453 /* Permanently switch to the desired uid. */
1454 permanently_set_uid(pw);
1455#endif
Damien Millera56086b2013-04-23 15:24:18 +10001456 } else if (options.chroot_directory != NULL &&
1457 strcasecmp(options.chroot_directory, "none") != 0) {
1458 fatal("server lacks privileges to chroot to ChrootDirectory");
Damien Millerf1a02ae2013-04-23 15:22:13 +10001459 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001460
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001461 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1462 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1463}
1464
Ben Lindstrom08105192002-03-22 02:50:06 +00001465static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001466do_pwchange(Session *s)
1467{
Darren Tucker09991742004-07-17 17:05:14 +10001468 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001469 fprintf(stderr, "WARNING: Your password has expired.\n");
1470 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001471 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001472 "You must change your password now and login again!\n");
Damien Miller14684a12011-05-20 11:23:07 +10001473#ifdef WITH_SELINUX
1474 setexeccon(NULL);
1475#endif
Darren Tucker33370e02005-02-09 22:17:28 +11001476#ifdef PASSWD_NEEDS_USERNAME
1477 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1478 (char *)NULL);
1479#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001480 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001481#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001482 perror("passwd");
1483 } else {
1484 fprintf(stderr,
1485 "Password change required but no TTY available.\n");
1486 }
1487 exit(1);
1488}
1489
1490static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001491child_close_fds(struct ssh *ssh)
Darren Tucker23bc8d02004-02-06 16:24:31 +11001492{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001493 extern int auth_sock;
Damien Miller85b45e02013-07-20 13:21:52 +10001494
djm@openbsd.org141efe42015-01-14 20:05:27 +00001495 if (auth_sock != -1) {
1496 close(auth_sock);
1497 auth_sock = -1;
Damien Miller85b45e02013-07-20 13:21:52 +10001498 }
1499
Darren Tucker23bc8d02004-02-06 16:24:31 +11001500 if (packet_get_connection_in() == packet_get_connection_out())
1501 close(packet_get_connection_in());
1502 else {
1503 close(packet_get_connection_in());
1504 close(packet_get_connection_out());
1505 }
1506 /*
1507 * Close all descriptors related to channels. They will still remain
1508 * open in the parent.
1509 */
1510 /* XXX better use close-on-exec? -markus */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001511 channel_close_all(ssh);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001512
1513 /*
1514 * Close any extra file descriptors. Note that there may still be
1515 * descriptors left by system functions. They will be closed later.
1516 */
1517 endpwent();
1518
1519 /*
Damien Miller788f2122005-11-05 15:14:59 +11001520 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001521 * hanging around in clients. Note that we want to do this after
1522 * initgroups, because at least on Solaris 2.3 it leaves file
1523 * descriptors open.
1524 */
Damien Millerf80c3de2010-12-01 12:02:59 +11001525 closefrom(STDERR_FILENO + 1);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001526}
1527
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001528/*
1529 * Performs common processing for the child, such as setting up the
1530 * environment, closing extra file descriptors, setting the user and group
1531 * ids, and executing the command or shell.
1532 */
Damien Millerdfc24252008-02-10 22:29:40 +11001533#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001534void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001535do_child(struct ssh *ssh, Session *s, const char *command)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001536{
1537 extern char **environ;
1538 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001539 char *argv[ARGV_MAX];
djm@openbsd.org83b58182016-08-19 03:18:06 +00001540 const char *shell, *shell0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001541 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001542 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001543
1544 /* remove hostkey from the child's memory */
1545 destroy_sensitive_data();
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001546 packet_clear_keys();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001547
Darren Tucker23bc8d02004-02-06 16:24:31 +11001548 /* Force a password change */
1549 if (s->authctxt->force_pwchange) {
1550 do_setusercontext(pw);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001551 child_close_fds(ssh);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001552 do_pwchange(s);
1553 exit(1);
1554 }
1555
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001556 /*
1557 * Login(1) does this as well, and it needs uid 0 for the "-h"
1558 * switch, so we let login(1) to this for us.
1559 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001560#ifdef HAVE_OSF_SIA
djm@openbsd.org83b58182016-08-19 03:18:06 +00001561 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
1562 if (!check_quietlogin(s, command))
1563 do_motd();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001564#else /* HAVE_OSF_SIA */
djm@openbsd.org83b58182016-08-19 03:18:06 +00001565 /* When PAM is enabled we rely on it to do the nologin check */
1566 if (!options.use_pam)
1567 do_nologin(pw);
1568 do_setusercontext(pw);
1569 /*
1570 * PAM session modules in do_setusercontext may have
1571 * generated messages, so if this in an interactive
1572 * login then display them too.
1573 */
1574 if (!check_quietlogin(s, command))
1575 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001576#endif /* HAVE_OSF_SIA */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001577
Darren Tucker69687f42004-09-11 22:17:26 +10001578#ifdef USE_PAM
djm@openbsd.org83b58182016-08-19 03:18:06 +00001579 if (options.use_pam && !is_pam_session_open()) {
Darren Tucker48554152005-04-21 19:50:55 +10001580 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001581 display_loginmsg();
1582 exit(254);
1583 }
1584#endif
1585
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001586 /*
1587 * Get the shell from the password data. An empty shell field is
1588 * legal, and means /bin/sh.
1589 */
1590 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001591
1592 /*
1593 * Make sure $SHELL points to the shell from the password file,
1594 * even if shell is overridden from login.conf
1595 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001596 env = do_setup_env(ssh, s, shell);
Ben Lindstrom46767602002-12-23 02:26:08 +00001597
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001598#ifdef HAVE_LOGIN_CAP
1599 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1600#endif
1601
Damien Millerb38eff82000-04-01 11:09:21 +10001602 /*
1603 * Close the connection descriptors; note that this is the child, and
1604 * the server will still have the socket open, and it is important
1605 * that we do not shutdown it. Note that the descriptors cannot be
1606 * closed before building the environment, as we call
djm@openbsd.org95767262016-03-07 19:02:43 +00001607 * ssh_remote_ipaddr there.
Damien Millerb38eff82000-04-01 11:09:21 +10001608 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001609 child_close_fds(ssh);
Damien Millerb38eff82000-04-01 11:09:21 +10001610
Damien Millerb38eff82000-04-01 11:09:21 +10001611 /*
Damien Miller05eda432002-02-10 18:32:28 +11001612 * Must take new environment into use so that .ssh/rc,
1613 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001614 */
1615 environ = env;
1616
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001617#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001618 /*
1619 * At this point, we check to see if AFS is active and if we have
1620 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1621 * if we can (and need to) extend the ticket into an AFS token. If
1622 * we don't do this, we run into potential problems if the user's
1623 * home directory is in AFS and it's not world-readable.
1624 */
1625
1626 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001627 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001628 char cell[64];
1629
1630 debug("Getting AFS token");
1631
1632 k_setpag();
1633
1634 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1635 krb5_afslog(s->authctxt->krb5_ctx,
1636 s->authctxt->krb5_fwd_ccache, cell, NULL);
1637
1638 krb5_afslog_home(s->authctxt->krb5_ctx,
1639 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1640 }
1641#endif
1642
Damien Miller788f2122005-11-05 15:14:59 +11001643 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001644 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001645 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001646#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001647 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001648#endif
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +00001649 if (r || !in_chroot) {
Damien Miller6051c942008-06-16 07:53:16 +10001650 fprintf(stderr, "Could not chdir to home "
1651 "directory %s: %s\n", pw->pw_dir,
1652 strerror(errno));
djm@openbsd.org44fc7cd2015-10-24 22:52:22 +00001653 }
Damien Miller6051c942008-06-16 07:53:16 +10001654 if (r)
1655 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001656 }
1657
Damien Millera1939002008-03-15 17:27:58 +11001658 closefrom(STDERR_FILENO + 1);
1659
djm@openbsd.org7c856852018-03-03 03:15:51 +00001660 do_rc_files(ssh, s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001661
1662 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001663 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001664
Darren Tuckerd6b06a92010-01-08 17:09:11 +11001665 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1666 printf("This service allows sftp connections only.\n");
1667 fflush(NULL);
1668 exit(1);
1669 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
Damien Millerdfc24252008-02-10 22:29:40 +11001670 extern int optind, optreset;
1671 int i;
1672 char *p, *args;
1673
Darren Tuckerac46a912009-06-21 17:55:23 +10001674 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
Damien Millerd58f5602008-11-03 19:20:49 +11001675 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001676 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1677 if (i < ARGV_MAX - 1)
1678 argv[i++] = p;
1679 argv[i] = NULL;
1680 optind = optreset = 1;
1681 __progname = argv[0];
Darren Tucker4d6656b2009-10-24 15:04:12 +11001682#ifdef WITH_SELINUX
1683 ssh_selinux_change_context("sftpd_t");
1684#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +11001685 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001686 }
1687
Darren Tucker695ed392009-10-07 09:02:18 +11001688 fflush(NULL);
1689
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001690 /* Get the last component of the shell name. */
1691 if ((shell0 = strrchr(shell, '/')) != NULL)
1692 shell0++;
1693 else
1694 shell0 = shell;
1695
Damien Millerb38eff82000-04-01 11:09:21 +10001696 /*
1697 * If we have no command, execute the shell. In this case, the shell
1698 * name to be passed in argv[0] is preceded by '-' to indicate that
1699 * this is a login shell.
1700 */
1701 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001702 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001703
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001704 /* Start the shell. Set initial character to '-'. */
1705 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001706
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001707 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1708 >= sizeof(argv0) - 1) {
1709 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001710 perror(shell);
1711 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001712 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001713
1714 /* Execute the shell. */
1715 argv[0] = argv0;
1716 argv[1] = NULL;
1717 execve(shell, argv, env);
1718
1719 /* Executing the shell failed. */
1720 perror(shell);
1721 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001722 }
1723 /*
1724 * Execute the command using the user's shell. This uses the -c
1725 * option to execute the command.
1726 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001727 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001728 argv[1] = "-c";
1729 argv[2] = (char *) command;
1730 argv[3] = NULL;
1731 execve(shell, argv, env);
1732 perror(shell);
1733 exit(1);
1734}
1735
Damien Miller7207f642008-05-19 15:34:50 +10001736void
1737session_unused(int id)
1738{
1739 debug3("%s: session id %d unused", __func__, id);
1740 if (id >= options.max_sessions ||
1741 id >= sessions_nalloc) {
1742 fatal("%s: insane session id %d (max %d nalloc %d)",
1743 __func__, id, options.max_sessions, sessions_nalloc);
1744 }
Damien Miller1d2c4562014-02-04 11:18:20 +11001745 memset(&sessions[id], 0, sizeof(*sessions));
Damien Miller7207f642008-05-19 15:34:50 +10001746 sessions[id].self = id;
1747 sessions[id].used = 0;
1748 sessions[id].chanid = -1;
1749 sessions[id].ptyfd = -1;
1750 sessions[id].ttyfd = -1;
1751 sessions[id].ptymaster = -1;
1752 sessions[id].x11_chanids = NULL;
1753 sessions[id].next_unused = sessions_first_unused;
1754 sessions_first_unused = id;
1755}
1756
Damien Millerb38eff82000-04-01 11:09:21 +10001757Session *
1758session_new(void)
1759{
Damien Miller7207f642008-05-19 15:34:50 +10001760 Session *s, *tmp;
1761
1762 if (sessions_first_unused == -1) {
1763 if (sessions_nalloc >= options.max_sessions)
1764 return NULL;
1765 debug2("%s: allocate (allocated %d max %d)",
1766 __func__, sessions_nalloc, options.max_sessions);
deraadt@openbsd.org9e509d42017-05-31 09:15:42 +00001767 tmp = xrecallocarray(sessions, sessions_nalloc,
1768 sessions_nalloc + 1, sizeof(*sessions));
Damien Miller7207f642008-05-19 15:34:50 +10001769 if (tmp == NULL) {
1770 error("%s: cannot allocate %d sessions",
1771 __func__, sessions_nalloc + 1);
1772 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001773 }
Damien Miller7207f642008-05-19 15:34:50 +10001774 sessions = tmp;
1775 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001776 }
Damien Miller7207f642008-05-19 15:34:50 +10001777
1778 if (sessions_first_unused >= sessions_nalloc ||
1779 sessions_first_unused < 0) {
1780 fatal("%s: insane first_unused %d max %d nalloc %d",
1781 __func__, sessions_first_unused, options.max_sessions,
1782 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001783 }
Damien Miller7207f642008-05-19 15:34:50 +10001784
1785 s = &sessions[sessions_first_unused];
1786 if (s->used) {
1787 fatal("%s: session %d already used",
1788 __func__, sessions_first_unused);
1789 }
1790 sessions_first_unused = s->next_unused;
1791 s->used = 1;
1792 s->next_unused = -1;
1793 debug("session_new: session %d", s->self);
1794
1795 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001796}
1797
Ben Lindstrombba81212001-06-25 05:01:22 +00001798static void
Damien Millerb38eff82000-04-01 11:09:21 +10001799session_dump(void)
1800{
1801 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001802 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001803 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001804
1805 debug("dump: used %d next_unused %d session %d %p "
1806 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001807 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001808 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001809 s->self,
1810 s,
1811 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001812 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001813 }
1814}
1815
Damien Millerefb4afe2000-04-12 18:45:05 +10001816int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001817session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001818{
1819 Session *s = session_new();
1820 debug("session_open: channel %d", chanid);
1821 if (s == NULL) {
1822 error("no more sessions");
1823 return 0;
1824 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001825 s->authctxt = authctxt;
1826 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001827 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001828 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001829 debug("session_open: session %d: link with channel %d", s->self, chanid);
1830 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001831 return 1;
1832}
1833
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001834Session *
1835session_by_tty(char *tty)
1836{
1837 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001838 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001839 Session *s = &sessions[i];
1840 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1841 debug("session_by_tty: session %d tty %s", i, tty);
1842 return s;
1843 }
1844 }
1845 debug("session_by_tty: unknown tty %.100s", tty);
1846 session_dump();
1847 return NULL;
1848}
1849
Ben Lindstrombba81212001-06-25 05:01:22 +00001850static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001851session_by_channel(int id)
1852{
1853 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001854 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001855 Session *s = &sessions[i];
1856 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001857 debug("session_by_channel: session %d channel %d",
1858 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001859 return s;
1860 }
1861 }
1862 debug("session_by_channel: unknown channel %d", id);
1863 session_dump();
1864 return NULL;
1865}
1866
Ben Lindstrombba81212001-06-25 05:01:22 +00001867static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001868session_by_x11_channel(int id)
1869{
1870 int i, j;
1871
Damien Miller7207f642008-05-19 15:34:50 +10001872 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10001873 Session *s = &sessions[i];
1874
1875 if (s->x11_chanids == NULL || !s->used)
1876 continue;
1877 for (j = 0; s->x11_chanids[j] != -1; j++) {
1878 if (s->x11_chanids[j] == id) {
1879 debug("session_by_x11_channel: session %d "
1880 "channel %d", s->self, id);
1881 return s;
1882 }
1883 }
1884 }
1885 debug("session_by_x11_channel: unknown channel %d", id);
1886 session_dump();
1887 return NULL;
1888}
1889
1890static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001891session_by_pid(pid_t pid)
1892{
1893 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001894 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10001895 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001896 Session *s = &sessions[i];
1897 if (s->used && s->pid == pid)
1898 return s;
1899 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001900 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001901 session_dump();
1902 return NULL;
1903}
1904
Ben Lindstrombba81212001-06-25 05:01:22 +00001905static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001906session_window_change_req(struct ssh *ssh, Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001907{
1908 s->col = packet_get_int();
1909 s->row = packet_get_int();
1910 s->xpixel = packet_get_int();
1911 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001912 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001913 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1914 return 1;
1915}
1916
Ben Lindstrombba81212001-06-25 05:01:22 +00001917static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001918session_pty_req(struct ssh *ssh, Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10001919{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001920 u_int len;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001921
djm@openbsd.org7c856852018-03-03 03:15:51 +00001922 if (!auth_opts->permit_pty_flag || !options.permit_tty) {
1923 debug("Allocating a pty not permitted for this connection.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001924 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001925 }
1926 if (s->ttyfd != -1) {
1927 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001928 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001929 }
1930
Damien Millerefb4afe2000-04-12 18:45:05 +10001931 s->term = packet_get_string(&len);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001932 s->col = packet_get_int();
1933 s->row = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +10001934 s->xpixel = packet_get_int();
1935 s->ypixel = packet_get_int();
1936
1937 if (strcmp(s->term, "") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001938 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001939 s->term = NULL;
1940 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001941
Damien Millerefb4afe2000-04-12 18:45:05 +10001942 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001943 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10001944 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
1945 sizeof(s->tty)))) {
Darren Tuckera627d422013-06-02 07:31:17 +10001946 free(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001947 s->term = NULL;
1948 s->ptyfd = -1;
1949 s->ttyfd = -1;
1950 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001951 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001952 }
1953 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001954
markus@openbsd.org89dd6152018-07-09 21:20:26 +00001955 ssh_tty_parse_modes(ssh, s->ttyfd);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001956
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001957 if (!use_privsep)
1958 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001959
1960 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001961 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1962
Damien Miller48b03fc2002-01-22 23:11:40 +11001963 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001964 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001965 return 1;
1966}
1967
Ben Lindstrombba81212001-06-25 05:01:22 +00001968static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001969session_subsystem_req(struct ssh *ssh, Session *s)
Damien Millerbd483e72000-04-30 10:00:53 +10001970{
Damien Millerae452462001-10-10 15:08:06 +10001971 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001972 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001973 int success = 0;
Damien Miller71df7522013-10-15 12:12:02 +11001974 char *prog, *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +10001975 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001976
Damien Miller71df7522013-10-15 12:12:02 +11001977 s->subsys = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001978 packet_check_eom();
Damien Miller71df7522013-10-15 12:12:02 +11001979 debug2("subsystem request for %.100s by user %s", s->subsys,
Damien Miller1b2b61e2010-06-26 09:47:43 +10001980 s->pw->pw_name);
Damien Millerbd483e72000-04-30 10:00:53 +10001981
Damien Millerf6d9e222000-06-18 14:50:44 +10001982 for (i = 0; i < options.num_subsystems; i++) {
Damien Miller71df7522013-10-15 12:12:02 +11001983 if (strcmp(s->subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10001984 prog = options.subsystem_command[i];
1985 cmd = options.subsystem_args[i];
Darren Tuckerc3dc4042010-01-08 17:09:50 +11001986 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
Damien Millerdfc24252008-02-10 22:29:40 +11001987 s->is_subsystem = SUBSYSTEM_INT_SFTP;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11001988 debug("subsystem: %s", prog);
Damien Millerdfc24252008-02-10 22:29:40 +11001989 } else {
Darren Tuckerc3dc4042010-01-08 17:09:50 +11001990 if (stat(prog, &st) < 0)
1991 debug("subsystem: cannot stat %s: %s",
1992 prog, strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001993 s->is_subsystem = SUBSYSTEM_EXT;
Darren Tuckerc3dc4042010-01-08 17:09:50 +11001994 debug("subsystem: exec() %s", cmd);
Damien Millerae452462001-10-10 15:08:06 +10001995 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001996 success = do_exec(ssh, s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11001997 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001998 }
1999 }
2000
2001 if (!success)
Damien Miller71df7522013-10-15 12:12:02 +11002002 logit("subsystem request for %.100s by user %s failed, "
2003 "subsystem not found", s->subsys, s->pw->pw_name);
Damien Millerf6d9e222000-06-18 14:50:44 +10002004
Damien Millerbd483e72000-04-30 10:00:53 +10002005 return success;
2006}
2007
Ben Lindstrombba81212001-06-25 05:01:22 +00002008static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002009session_x11_req(struct ssh *ssh, Session *s)
Damien Millerbd483e72000-04-30 10:00:53 +10002010{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002011 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002012
Damien Miller2b9b0452005-07-17 17:19:24 +10002013 if (s->auth_proto != NULL || s->auth_data != NULL) {
2014 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002015 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002016 return 0;
2017 }
Damien Millerbd483e72000-04-30 10:00:53 +10002018 s->single_connection = packet_get_char();
2019 s->auth_proto = packet_get_string(NULL);
2020 s->auth_data = packet_get_string(NULL);
2021 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002022 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002023
djm@openbsd.org4b4bfb02016-03-10 11:47:57 +00002024 if (xauth_valid_string(s->auth_proto) &&
2025 xauth_valid_string(s->auth_data))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002026 success = session_setup_x11fwd(ssh, s);
djm@openbsd.org4b4bfb02016-03-10 11:47:57 +00002027 else {
2028 success = 0;
2029 error("Invalid X11 forwarding data");
2030 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002031 if (!success) {
Darren Tuckera627d422013-06-02 07:31:17 +10002032 free(s->auth_proto);
2033 free(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002034 s->auth_proto = NULL;
2035 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002036 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002037 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002038}
2039
Ben Lindstrombba81212001-06-25 05:01:22 +00002040static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002041session_shell_req(struct ssh *ssh, Session *s)
Damien Millerf6d9e222000-06-18 14:50:44 +10002042{
Damien Miller48b03fc2002-01-22 23:11:40 +11002043 packet_check_eom();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002044 return do_exec(ssh, s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002045}
2046
Ben Lindstrombba81212001-06-25 05:01:22 +00002047static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002048session_exec_req(struct ssh *ssh, Session *s)
Damien Millerf6d9e222000-06-18 14:50:44 +10002049{
Damien Miller7207f642008-05-19 15:34:50 +10002050 u_int len, success;
2051
Damien Millerf6d9e222000-06-18 14:50:44 +10002052 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002053 packet_check_eom();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002054 success = do_exec(ssh, s, command) == 0;
Darren Tuckera627d422013-06-02 07:31:17 +10002055 free(command);
Damien Miller7207f642008-05-19 15:34:50 +10002056 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002057}
2058
Ben Lindstrombba81212001-06-25 05:01:22 +00002059static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002060session_break_req(struct ssh *ssh, Session *s)
Damien Miller54c45982003-05-15 10:20:13 +10002061{
Damien Miller54c45982003-05-15 10:20:13 +10002062
Darren Tucker1f8311c2004-05-13 16:39:33 +10002063 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002064 packet_check_eom();
2065
Darren Tucker9c5d5532011-11-04 10:55:24 +11002066 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002067 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002068 return 1;
2069}
2070
2071static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002072session_env_req(struct ssh *ssh, Session *s)
Darren Tucker46bc0752004-05-02 22:11:30 +10002073{
2074 char *name, *val;
2075 u_int name_len, val_len, i;
2076
Damien Miller8569eba2014-03-04 09:35:17 +11002077 name = packet_get_cstring(&name_len);
2078 val = packet_get_cstring(&val_len);
Darren Tucker46bc0752004-05-02 22:11:30 +10002079 packet_check_eom();
2080
2081 /* Don't set too many environment variables */
2082 if (s->num_env > 128) {
2083 debug2("Ignoring env request %s: too many env vars", name);
2084 goto fail;
2085 }
2086
2087 for (i = 0; i < options.num_accept_env; i++) {
2088 if (match_pattern(name, options.accept_env[i])) {
2089 debug2("Setting env %d: %s=%s", s->num_env, name, val);
deraadt@openbsd.org9e509d42017-05-31 09:15:42 +00002090 s->env = xrecallocarray(s->env, s->num_env,
2091 s->num_env + 1, sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002092 s->env[s->num_env].name = name;
2093 s->env[s->num_env].val = val;
2094 s->num_env++;
2095 return (1);
2096 }
2097 }
2098 debug2("Ignoring env request %s: disallowed name", name);
2099
2100 fail:
Darren Tuckera627d422013-06-02 07:31:17 +10002101 free(name);
2102 free(val);
Darren Tucker46bc0752004-05-02 22:11:30 +10002103 return (0);
2104}
2105
djm@openbsd.orgcd989252018-10-02 12:40:07 +00002106/*
2107 * Conversion of signals from ssh channel request names.
2108 * Subset of signals from RFC 4254 section 6.10C, with SIGINFO as
2109 * local extension.
2110 */
2111static int
2112name2sig(char *name)
2113{
2114#define SSH_SIG(x) if (strcmp(name, #x) == 0) return SIG ## x
2115 SSH_SIG(HUP);
2116 SSH_SIG(INT);
2117 SSH_SIG(KILL);
2118 SSH_SIG(QUIT);
2119 SSH_SIG(TERM);
2120 SSH_SIG(USR1);
2121 SSH_SIG(USR2);
2122#undef SSH_SIG
Damien Millerff3a4112018-10-02 22:49:40 +10002123#ifdef SIGINFO
djm@openbsd.orgcd989252018-10-02 12:40:07 +00002124 if (strcmp(name, "INFO@openssh.com") == 0)
2125 return SIGINFO;
Damien Millerff3a4112018-10-02 22:49:40 +10002126#endif
djm@openbsd.orgcd989252018-10-02 12:40:07 +00002127 return -1;
2128}
2129
2130static int
2131session_signal_req(struct ssh *ssh, Session *s)
2132{
2133 char *signame = NULL;
2134 int r, sig, success = 0;
2135
2136 if ((r = sshpkt_get_cstring(ssh, &signame, NULL)) != 0 ||
2137 (r = sshpkt_get_end(ssh)) != 0) {
2138 error("%s: parse packet: %s", __func__, ssh_err(r));
2139 goto out;
2140 }
2141 if ((sig = name2sig(signame)) == -1) {
2142 error("%s: unsupported signal \"%s\"", __func__, signame);
2143 goto out;
2144 }
2145 if (s->pid <= 0) {
2146 error("%s: no pid for session %d", __func__, s->self);
2147 goto out;
2148 }
2149 if (s->forced || s->is_subsystem) {
2150 error("%s: refusing to send signal %s to %s session", __func__,
2151 signame, s->forced ? "forced-command" : "subsystem");
2152 goto out;
2153 }
2154 if (!use_privsep || mm_is_monitor()) {
2155 error("%s: session signalling requires privilege separation",
2156 __func__);
2157 goto out;
2158 }
2159
2160 debug("%s: signal %s, killpg(%ld, %d)", __func__, signame,
2161 (long)s->pid, sig);
2162 temporarily_use_uid(s->pw);
2163 r = killpg(s->pid, sig);
2164 restore_uid();
2165 if (r != 0) {
2166 error("%s: killpg(%ld, %d): %s", __func__, (long)s->pid,
2167 sig, strerror(errno));
2168 goto out;
2169 }
2170
2171 /* success */
2172 success = 1;
2173 out:
2174 free(signame);
2175 return success;
2176}
2177
Darren Tucker46bc0752004-05-02 22:11:30 +10002178static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002179session_auth_agent_req(struct ssh *ssh, Session *s)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002180{
2181 static int called = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +00002182
Damien Miller48b03fc2002-01-22 23:11:40 +11002183 packet_check_eom();
djm@openbsd.org7c856852018-03-03 03:15:51 +00002184 if (!auth_opts->permit_agent_forwarding_flag ||
2185 !options.allow_agent_forwarding) {
2186 debug("%s: agent forwarding disabled", __func__);
Ben Lindstrom14920292000-11-21 21:24:55 +00002187 return 0;
2188 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002189 if (called) {
2190 return 0;
2191 } else {
2192 called = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002193 return auth_input_request_forwarding(ssh, s->pw);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002194 }
2195}
2196
Damien Millerc7ef63d2002-02-05 12:21:42 +11002197int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002198session_input_channel_req(struct ssh *ssh, Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002199{
Damien Millerefb4afe2000-04-12 18:45:05 +10002200 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002201 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002202
Damien Millerc7ef63d2002-02-05 12:21:42 +11002203 if ((s = session_by_channel(c->self)) == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002204 logit("%s: no session %d req %.100s", __func__, c->self, rtype);
Damien Millerc7ef63d2002-02-05 12:21:42 +11002205 return 0;
2206 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002207 debug("%s: session %d req %s", __func__, s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002208
2209 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002210 * a session is in LARVAL state until a shell, a command
2211 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002212 */
2213 if (c->type == SSH_CHANNEL_LARVAL) {
2214 if (strcmp(rtype, "shell") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002215 success = session_shell_req(ssh, s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002216 } else if (strcmp(rtype, "exec") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002217 success = session_exec_req(ssh, s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002218 } else if (strcmp(rtype, "pty-req") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002219 success = session_pty_req(ssh, s);
Damien Millerbd483e72000-04-30 10:00:53 +10002220 } else if (strcmp(rtype, "x11-req") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002221 success = session_x11_req(ssh, s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002222 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002223 success = session_auth_agent_req(ssh, s);
Damien Millerbd483e72000-04-30 10:00:53 +10002224 } else if (strcmp(rtype, "subsystem") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002225 success = session_subsystem_req(ssh, s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002226 } else if (strcmp(rtype, "env") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002227 success = session_env_req(ssh, s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002228 }
2229 }
2230 if (strcmp(rtype, "window-change") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002231 success = session_window_change_req(ssh, s);
Damien Millera6b1d162004-06-30 22:41:07 +10002232 } else if (strcmp(rtype, "break") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002233 success = session_break_req(ssh, s);
djm@openbsd.orgcd989252018-10-02 12:40:07 +00002234 } else if (strcmp(rtype, "signal") == 0) {
2235 success = session_signal_req(ssh, s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002236 }
Damien Millera6b1d162004-06-30 22:41:07 +10002237
Damien Millerc7ef63d2002-02-05 12:21:42 +11002238 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002239}
2240
2241void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002242session_set_fds(struct ssh *ssh, Session *s,
2243 int fdin, int fdout, int fderr, int ignore_fderr, int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002244{
Damien Millerefb4afe2000-04-12 18:45:05 +10002245 /*
2246 * now that have a child and a pipe to the child,
2247 * we can activate our channel and register the fd's
2248 */
2249 if (s->chanid == -1)
2250 fatal("no channel for session %d", s->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002251 channel_set_fds(ssh, s->chanid,
Damien Millerefb4afe2000-04-12 18:45:05 +10002252 fdout, fdin, fderr,
Damien Miller8853ca52010-06-26 10:00:14 +10002253 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002254 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002255}
2256
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002257/*
2258 * Function to perform pty cleanup. Also called if we get aborted abnormally
2259 * (e.g., due to a dropped connection).
2260 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002261void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002262session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002263{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002264 if (s == NULL) {
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002265 error("%s: no session", __func__);
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002266 return;
2267 }
2268 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002269 return;
2270
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002271 debug("%s: session %d release %s", __func__, s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002272
Damien Millerb38eff82000-04-01 11:09:21 +10002273 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002274 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002275 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002276
2277 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002278 if (getuid() == 0)
2279 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002280
2281 /*
2282 * Close the server side of the socket pairs. We must do this after
2283 * the pty cleanup, so that another process doesn't get this pty
2284 * while we're still cleaning up.
2285 */
Damien Miller7207f642008-05-19 15:34:50 +10002286 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2287 error("close(s->ptymaster/%d): %s",
2288 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002289
2290 /* unlink pty from session */
2291 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002292}
Damien Millerefb4afe2000-04-12 18:45:05 +10002293
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002294void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002295session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002296{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002297 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002298}
2299
Damien Miller5a80bba2002-09-04 16:39:02 +10002300static char *
2301sig2name(int sig)
2302{
2303#define SSH_SIG(x) if (sig == SIG ## x) return #x
2304 SSH_SIG(ABRT);
2305 SSH_SIG(ALRM);
2306 SSH_SIG(FPE);
2307 SSH_SIG(HUP);
2308 SSH_SIG(ILL);
2309 SSH_SIG(INT);
2310 SSH_SIG(KILL);
2311 SSH_SIG(PIPE);
2312 SSH_SIG(QUIT);
2313 SSH_SIG(SEGV);
2314 SSH_SIG(TERM);
2315 SSH_SIG(USR1);
2316 SSH_SIG(USR2);
2317#undef SSH_SIG
2318 return "SIG@openssh.com";
2319}
2320
Ben Lindstrombba81212001-06-25 05:01:22 +00002321static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002322session_close_x11(struct ssh *ssh, int id)
Damien Miller2b9b0452005-07-17 17:19:24 +10002323{
2324 Channel *c;
2325
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002326 if ((c = channel_by_id(ssh, id)) == NULL) {
2327 debug("%s: x11 channel %d missing", __func__, id);
Damien Miller2b9b0452005-07-17 17:19:24 +10002328 } else {
2329 /* Detach X11 listener */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002330 debug("%s: detach x11 channel %d", __func__, id);
2331 channel_cancel_cleanup(ssh, id);
Damien Miller2b9b0452005-07-17 17:19:24 +10002332 if (c->ostate != CHAN_OUTPUT_CLOSED)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002333 chan_mark_dead(ssh, c);
Damien Miller2b9b0452005-07-17 17:19:24 +10002334 }
2335}
2336
2337static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002338session_close_single_x11(struct ssh *ssh, int id, void *arg)
Damien Miller2b9b0452005-07-17 17:19:24 +10002339{
2340 Session *s;
2341 u_int i;
2342
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002343 debug3("%s: channel %d", __func__, id);
2344 channel_cancel_cleanup(ssh, id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002345 if ((s = session_by_x11_channel(id)) == NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002346 fatal("%s: no x11 channel %d", __func__, id);
Damien Miller2b9b0452005-07-17 17:19:24 +10002347 for (i = 0; s->x11_chanids[i] != -1; i++) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002348 debug("%s: session %d: closing channel %d",
2349 __func__, s->self, s->x11_chanids[i]);
Damien Miller2b9b0452005-07-17 17:19:24 +10002350 /*
2351 * The channel "id" is already closing, but make sure we
2352 * close all of its siblings.
2353 */
2354 if (s->x11_chanids[i] != id)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002355 session_close_x11(ssh, s->x11_chanids[i]);
Damien Miller2b9b0452005-07-17 17:19:24 +10002356 }
Darren Tuckera627d422013-06-02 07:31:17 +10002357 free(s->x11_chanids);
Damien Miller2b9b0452005-07-17 17:19:24 +10002358 s->x11_chanids = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002359 free(s->display);
2360 s->display = NULL;
2361 free(s->auth_proto);
2362 s->auth_proto = NULL;
2363 free(s->auth_data);
2364 s->auth_data = NULL;
2365 free(s->auth_display);
2366 s->auth_display = NULL;
Damien Miller2b9b0452005-07-17 17:19:24 +10002367}
2368
2369static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002370session_exit_message(struct ssh *ssh, Session *s, int status)
Damien Millerefb4afe2000-04-12 18:45:05 +10002371{
2372 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002373
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002374 if ((c = channel_lookup(ssh, s->chanid)) == NULL)
2375 fatal("%s: session %d: no channel %d",
2376 __func__, s->self, s->chanid);
2377 debug("%s: session %d channel %d pid %ld",
2378 __func__, s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002379
2380 if (WIFEXITED(status)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002381 channel_request_start(ssh, s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002382 packet_put_int(WEXITSTATUS(status));
2383 packet_send();
2384 } else if (WIFSIGNALED(status)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002385 channel_request_start(ssh, s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002386 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002387#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002388 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002389#else /* WCOREDUMP */
2390 packet_put_char(0);
2391#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002392 packet_put_cstring("");
2393 packet_put_cstring("");
2394 packet_send();
2395 } else {
2396 /* Some weird exit cause. Just exit. */
2397 packet_disconnect("wait returned status %04x.", status);
2398 }
2399
2400 /* disconnect channel */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002401 debug("%s: release channel %d", __func__, s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002402
2403 /*
2404 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002405 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002406 * by session_close_by_channel when the childs close their fds.
2407 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002408 channel_register_cleanup(ssh, c->self, session_close_by_channel, 1);
Damien Miller39eda6e2005-11-05 14:52:50 +11002409
Damien Miller166fca82000-04-20 07:42:21 +10002410 /*
2411 * emulate a write failure with 'chan_write_failed', nobody will be
2412 * interested in data we write.
2413 * Note that we must not call 'chan_read_failed', since there could
2414 * be some more data waiting in the pipe.
2415 */
Damien Millerbd483e72000-04-30 10:00:53 +10002416 if (c->ostate != CHAN_OUTPUT_CLOSED)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002417 chan_write_failed(ssh, c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002418}
2419
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002420void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002421session_close(struct ssh *ssh, Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002422{
Damien Millereccb9de2005-06-17 12:59:34 +10002423 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002424
djm@openbsd.org5a0fcb72016-02-16 03:37:48 +00002425 verbose("Close session: user %s from %.200s port %d id %d",
2426 s->pw->pw_name,
djm@openbsd.org95767262016-03-07 19:02:43 +00002427 ssh_remote_ipaddr(ssh),
2428 ssh_remote_port(ssh),
djm@openbsd.org5a0fcb72016-02-16 03:37:48 +00002429 s->self);
2430
Darren Tucker3e33cec2003-10-02 16:12:36 +10002431 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002432 session_pty_cleanup(s);
Darren Tuckera627d422013-06-02 07:31:17 +10002433 free(s->term);
2434 free(s->display);
2435 free(s->x11_chanids);
2436 free(s->auth_display);
2437 free(s->auth_data);
2438 free(s->auth_proto);
Damien Miller71df7522013-10-15 12:12:02 +11002439 free(s->subsys);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002440 if (s->env != NULL) {
2441 for (i = 0; i < s->num_env; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10002442 free(s->env[i].name);
2443 free(s->env[i].val);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002444 }
Darren Tuckera627d422013-06-02 07:31:17 +10002445 free(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002446 }
Damien Millere247cc42000-05-07 12:03:14 +10002447 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002448 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002449}
2450
2451void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002452session_close_by_pid(struct ssh *ssh, pid_t pid, int status)
Damien Millerefb4afe2000-04-12 18:45:05 +10002453{
2454 Session *s = session_by_pid(pid);
2455 if (s == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002456 debug("%s: no session for pid %ld", __func__, (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002457 return;
2458 }
2459 if (s->chanid != -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002460 session_exit_message(ssh, s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002461 if (s->ttyfd != -1)
2462 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002463 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002464}
2465
2466/*
2467 * this is called when a channel dies before
2468 * the session 'child' itself dies
2469 */
2470void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002471session_close_by_channel(struct ssh *ssh, int id, void *arg)
Damien Millerefb4afe2000-04-12 18:45:05 +10002472{
2473 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002474 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002475
Damien Millerefb4afe2000-04-12 18:45:05 +10002476 if (s == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002477 debug("%s: no session for id %d", __func__, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002478 return;
2479 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002480 debug("%s: channel %d child %ld", __func__, id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002481 if (s->pid != 0) {
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002482 debug("%s: channel %d: has child, ttyfd %d",
2483 __func__, id, s->ttyfd);
Damien Miller0585d512001-10-12 11:35:50 +10002484 /*
2485 * delay detach of session, but release pty, since
2486 * the fd's to the child are already closed
2487 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002488 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002489 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002490 return;
2491 }
2492 /* detach by removing callback */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002493 channel_cancel_cleanup(ssh, s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002494
2495 /* Close any X11 listeners associated with this session */
2496 if (s->x11_chanids != NULL) {
2497 for (i = 0; s->x11_chanids[i] != -1; i++) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002498 session_close_x11(ssh, s->x11_chanids[i]);
Damien Miller39eda6e2005-11-05 14:52:50 +11002499 s->x11_chanids[i] = -1;
2500 }
2501 }
2502
Damien Millerefb4afe2000-04-12 18:45:05 +10002503 s->chanid = -1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002504 session_close(ssh, s);
Damien Miller52b77be2001-10-10 15:14:37 +10002505}
2506
2507void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002508session_destroy_all(struct ssh *ssh, void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002509{
2510 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002511 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002512 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002513 if (s->used) {
2514 if (closefunc != NULL)
2515 closefunc(s);
2516 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002517 session_close(ssh, s);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002518 }
Damien Miller52b77be2001-10-10 15:14:37 +10002519 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002520}
2521
Ben Lindstrombba81212001-06-25 05:01:22 +00002522static char *
Damien Millere247cc42000-05-07 12:03:14 +10002523session_tty_list(void)
2524{
2525 static char buf[1024];
2526 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002527 char *cp;
2528
Damien Millere247cc42000-05-07 12:03:14 +10002529 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002530 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002531 Session *s = &sessions[i];
2532 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002533
Damien Millera8ed44b2003-01-10 09:53:12 +11002534 if (strncmp(s->tty, "/dev/", 5) != 0) {
2535 cp = strrchr(s->tty, '/');
2536 cp = (cp == NULL) ? s->tty : cp + 1;
2537 } else
2538 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002539
Damien Millere247cc42000-05-07 12:03:14 +10002540 if (buf[0] != '\0')
2541 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002542 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002543 }
2544 }
2545 if (buf[0] == '\0')
2546 strlcpy(buf, "notty", sizeof buf);
2547 return buf;
2548}
2549
2550void
2551session_proctitle(Session *s)
2552{
2553 if (s->pw == NULL)
2554 error("no user for session %d", s->self);
2555 else
2556 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2557}
2558
Ben Lindstrom768176b2001-06-09 01:29:12 +00002559int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002560session_setup_x11fwd(struct ssh *ssh, Session *s)
Ben Lindstrom768176b2001-06-09 01:29:12 +00002561{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002562 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002563 char display[512], auth_display[512];
Damien Millere5c0d522014-07-03 21:24:19 +10002564 char hostname[NI_MAXHOST];
Damien Miller2b9b0452005-07-17 17:19:24 +10002565 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002566
djm@openbsd.org7c856852018-03-03 03:15:51 +00002567 if (!auth_opts->permit_x11_forwarding_flag) {
2568 packet_send_debug("X11 forwarding disabled by key options.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002569 return 0;
2570 }
2571 if (!options.x11_forwarding) {
2572 debug("X11 forwarding disabled in server configuration file.");
2573 return 0;
2574 }
djm@openbsd.org161cf412014-12-22 07:55:51 +00002575 if (options.xauth_location == NULL ||
Ben Lindstrom768176b2001-06-09 01:29:12 +00002576 (stat(options.xauth_location, &st) == -1)) {
djm@openbsd.org7c856852018-03-03 03:15:51 +00002577 packet_send_debug("No xauth program; cannot forward X11.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002578 return 0;
2579 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002580 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002581 debug("X11 display already set.");
2582 return 0;
2583 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002584 if (x11_create_display_inet(ssh, options.x11_display_offset,
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002585 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002586 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002587 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002588 return 0;
2589 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002590 for (i = 0; s->x11_chanids[i] != -1; i++) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002591 channel_register_cleanup(ssh, s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002592 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002593 }
Kevin Steves366298c2001-12-19 17:58:01 +00002594
2595 /* Set up a suitable value for the DISPLAY variable. */
2596 if (gethostname(hostname, sizeof(hostname)) < 0)
2597 fatal("gethostname: %.100s", strerror(errno));
2598 /*
2599 * auth_display must be used as the displayname when the
2600 * authorization entry is added with xauth(1). This will be
2601 * different than the DISPLAY string for localhost displays.
2602 */
Damien Miller95c249f2002-02-05 12:11:34 +11002603 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002604 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002605 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002606 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002607 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002608 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002609 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002610 } else {
2611#ifdef IPADDR_IN_DISPLAY
2612 struct hostent *he;
2613 struct in_addr my_addr;
2614
2615 he = gethostbyname(hostname);
2616 if (he == NULL) {
2617 error("Can't get IP address for X11 DISPLAY.");
2618 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2619 return 0;
2620 }
2621 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002622 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002623 s->display_number, s->screen);
2624#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002625 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002626 s->display_number, s->screen);
2627#endif
2628 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002629 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002630 }
2631
Ben Lindstrom768176b2001-06-09 01:29:12 +00002632 return 1;
2633}
2634
Ben Lindstrombba81212001-06-25 05:01:22 +00002635static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002636do_authenticated2(struct ssh *ssh, Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002637{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002638 server_loop2(ssh, authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002639}
2640
2641void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002642do_cleanup(struct ssh *ssh, Authctxt *authctxt)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002643{
2644 static int called = 0;
2645
2646 debug("do_cleanup");
2647
2648 /* no cleanup if we're in the child for login shell */
2649 if (is_child)
2650 return;
2651
2652 /* avoid double cleanup */
2653 if (called)
2654 return;
2655 called = 1;
2656
Darren Tucker9142e1c2007-08-16 23:28:04 +10002657 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002658 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002659
2660#ifdef USE_PAM
2661 if (options.use_pam) {
2662 sshpam_cleanup();
2663 sshpam_thread_cleanup();
2664 }
2665#endif
2666
2667 if (!authctxt->authenticated)
2668 return;
2669
Darren Tucker3e33cec2003-10-02 16:12:36 +10002670#ifdef KRB5
2671 if (options.kerberos_ticket_cleanup &&
2672 authctxt->krb5_ctx)
2673 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002674#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002675
2676#ifdef GSSAPI
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002677 if (options.gss_cleanup_creds)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002678 ssh_gssapi_cleanup_creds();
2679#endif
2680
2681 /* remove agent socket */
2682 auth_sock_cleanup_proc(authctxt->pw);
2683
djm@openbsd.org8f574952017-06-24 06:34:38 +00002684 /* remove userauth info */
2685 if (auth_info_file != NULL) {
2686 temporarily_use_uid(authctxt->pw);
2687 unlink(auth_info_file);
2688 restore_uid();
2689 free(auth_info_file);
2690 auth_info_file = NULL;
2691 }
2692
Darren Tucker3e33cec2003-10-02 16:12:36 +10002693 /*
2694 * Cleanup ptys/utmp only if privsep is disabled,
2695 * or if running in monitor.
2696 */
2697 if (!use_privsep || mm_is_monitor())
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002698 session_destroy_all(ssh, session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002699}
djm@openbsd.org95767262016-03-07 19:02:43 +00002700
2701/* Return a name for the remote host that fits inside utmp_size */
2702
2703const char *
2704session_get_remote_name_or_ip(struct ssh *ssh, u_int utmp_size, int use_dns)
2705{
2706 const char *remote = "";
2707
2708 if (utmp_size > 0)
2709 remote = auth_get_canonical_hostname(ssh, use_dns);
2710 if (utmp_size == 0 || strlen(remote) > utmp_size)
2711 remote = ssh_remote_ipaddr(ssh);
2712 return remote;
2713}
2714