blob: c68e1b0d912f7000b58056d9eaa9d7ce1e129ecc [file] [log] [blame]
djm@openbsd.org7c856852018-03-03 03:15:51 +00001/* $OpenBSD: monitor.c,v 1.180 2018/03/03 03:15:51 djm Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110029
30#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100031#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110033#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000034
Darren Tucker39972492006-07-12 22:22:46 +100035#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100036#include <fcntl.h>
djm@openbsd.org1a31d022016-05-02 08:49:03 +000037#include <limits.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110038#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110039#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110040#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100041#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110042#include <signal.h>
Damien Miller9af21972015-02-24 09:04:32 +110043#ifdef HAVE_STDINT_H
millert@openbsd.orgfd368342015-02-06 23:21:59 +000044#include <stdint.h>
Damien Miller9af21972015-02-24 09:04:32 +110045#endif
Damien Millere7a1e5c2006-08-05 11:34:19 +100046#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100047#include <string.h>
Damien Miller86687062014-07-02 15:28:02 +100048#include <stdarg.h>
49#include <stdio.h>
Damien Miller607aede2006-09-01 15:48:19 +100050#include <unistd.h>
Damien Miller8f0bf232011-06-20 14:42:23 +100051#ifdef HAVE_POLL_H
52#include <poll.h>
53#else
54# ifdef HAVE_SYS_POLL_H
55# include <sys/poll.h>
56# endif
57#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000058
59#ifdef SKEY
60#include <skey.h>
61#endif
62
Damien Miller1f0311c2014-05-15 14:24:09 +100063#ifdef WITH_OPENSSL
Damien Miller03e20032006-03-15 11:16:59 +110064#include <openssl/dh.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100065#endif
Damien Miller03e20032006-03-15 11:16:59 +110066
Damien Millerb84886b2008-05-19 15:05:07 +100067#include "openbsd-compat/sys-queue.h"
Damien Miller8f0bf232011-06-20 14:42:23 +100068#include "atomicio.h"
Damien Millerd7834352006-08-05 12:39:39 +100069#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "key.h"
72#include "buffer.h"
73#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000074#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100075#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000076#include "kex.h"
77#include "dh.h"
Darren Tucker01558b72016-07-18 09:33:25 +100078#include "auth-pam.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000079#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
80#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000081#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000082#define TARGET_OS_MAC 1
83#else
84#include "zlib.h"
85#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000086#include "packet.h"
87#include "auth-options.h"
88#include "sshpty.h"
89#include "channels.h"
90#include "session.h"
91#include "sshlogin.h"
92#include "canohost.h"
93#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100094#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000095#include "servconf.h"
96#include "monitor.h"
Damien Millerd7834352006-08-05 12:39:39 +100097#ifdef GSSAPI
98#include "ssh-gss.h"
99#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000100#include "monitor_wrap.h"
101#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000102#include "compat.h"
103#include "ssh2.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000104#include "authfd.h"
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000105#include "match.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000106#include "ssherr.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000107
Darren Tucker0efd1552003-08-26 11:49:55 +1000108#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +1000109static Gssctxt *gsscontext = NULL;
110#endif
111
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000112/* Imports */
113extern ServerOptions options;
114extern u_int utmp_len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115extern u_char session_id[];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000116extern Buffer auth_debug;
117extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000118extern Buffer loginmsg;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000119extern struct sshauthopt *auth_opts; /* XXX move to permanent ssh->authctxt? */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000120
121/* State exported from the child */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000122static struct sshbuf *child_state;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000123
Damien Miller469954d2003-06-18 20:25:33 +1000124/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000125
126int mm_answer_moduli(int, Buffer *);
127int mm_answer_sign(int, Buffer *);
128int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000129int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000130int mm_answer_authserv(int, Buffer *);
131int mm_answer_authpassword(int, Buffer *);
132int mm_answer_bsdauthquery(int, Buffer *);
133int mm_answer_bsdauthrespond(int, Buffer *);
134int mm_answer_skeyquery(int, Buffer *);
135int mm_answer_skeyrespond(int, Buffer *);
136int mm_answer_keyallowed(int, Buffer *);
137int mm_answer_keyverify(int, Buffer *);
138int mm_answer_pty(int, Buffer *);
139int mm_answer_pty_cleanup(int, Buffer *);
140int mm_answer_term(int, Buffer *);
141int mm_answer_rsa_keyallowed(int, Buffer *);
142int mm_answer_rsa_challenge(int, Buffer *);
143int mm_answer_rsa_response(int, Buffer *);
144int mm_answer_sesskey(int, Buffer *);
145int mm_answer_sessid(int, Buffer *);
146
Damien Miller79418552002-04-23 20:28:48 +1000147#ifdef USE_PAM
148int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000149int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000150int mm_answer_pam_init_ctx(int, Buffer *);
151int mm_answer_pam_query(int, Buffer *);
152int mm_answer_pam_respond(int, Buffer *);
153int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000154#endif
155
Darren Tucker0efd1552003-08-26 11:49:55 +1000156#ifdef GSSAPI
157int mm_answer_gss_setup_ctx(int, Buffer *);
158int mm_answer_gss_accept_ctx(int, Buffer *);
159int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100160int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000161#endif
Damien Miller25162f22002-09-12 09:47:29 +1000162
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100163#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100164int mm_answer_audit_event(int, Buffer *);
165int mm_answer_audit_command(int, Buffer *);
166#endif
167
Damien Miller8f0bf232011-06-20 14:42:23 +1000168static int monitor_read_log(struct monitor *);
169
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000170static Authctxt *authctxt;
Damien Miller1f0311c2014-05-15 14:24:09 +1000171
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000172/* local state for key verify */
173static u_char *key_blob = NULL;
174static u_int key_bloblen = 0;
175static int key_blobtype = MM_NOKEY;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000176static struct sshauthopt *key_opts = NULL;
Damien Millera10f5612002-09-12 09:49:15 +1000177static char *hostbased_cuser = NULL;
178static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000179static char *auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100180static char *auth_submethod = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000181static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000182static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000183static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000184
185struct mon_table {
186 enum monitor_reqtype type;
187 int flags;
188 int (*f)(int, Buffer *);
189};
190
191#define MON_ISAUTH 0x0004 /* Required for Authentication */
192#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
193#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100194#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000195
196#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
197
198#define MON_PERMIT 0x1000 /* Request is permitted */
199
200struct mon_table mon_dispatch_proto20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000201#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000202 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000203#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
205 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
206 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000207 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000208 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000209#ifdef USE_PAM
210 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000211 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Millerb38b95f2016-08-29 11:47:07 +1000212 {MONITOR_REQ_PAM_INIT_CTX, MON_ONCE, mm_answer_pam_init_ctx},
213 {MONITOR_REQ_PAM_QUERY, 0, mm_answer_pam_query},
214 {MONITOR_REQ_PAM_RESPOND, MON_ONCE, mm_answer_pam_respond},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000215 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000216#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100217#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100218 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100219#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000220#ifdef BSD_AUTH
221 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100222 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000223#endif
224#ifdef SKEY
225 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
226 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
227#endif
228 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
229 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000230#ifdef GSSAPI
231 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
djm@openbsd.orgb33ad6d2016-09-05 13:57:31 +0000232 {MONITOR_REQ_GSSSTEP, 0, mm_answer_gss_accept_ctx},
233 {MONITOR_REQ_GSSUSEROK, MON_ONCE|MON_AUTHDECIDE, mm_answer_gss_userok},
234 {MONITOR_REQ_GSSCHECKMIC, MON_ONCE, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000235#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000236 {0, 0, NULL}
237};
238
239struct mon_table mon_dispatch_postauth20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000240#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000241 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000242#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
244 {MONITOR_REQ_PTY, 0, mm_answer_pty},
245 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
246 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100247#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100248 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
249 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
250#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000251 {0, 0, NULL}
252};
253
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000254struct mon_table *mon_dispatch;
255
256/* Specifies if a certain message is allowed at the moment */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000257static void
258monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
259{
260 while (ent->f != NULL) {
261 if (ent->type == type) {
262 ent->flags &= ~MON_PERMIT;
263 ent->flags |= permit ? MON_PERMIT : 0;
264 return;
265 }
266 ent++;
267 }
268}
269
270static void
271monitor_permit_authentications(int permit)
272{
273 struct mon_table *ent = mon_dispatch;
274
275 while (ent->f != NULL) {
276 if (ent->flags & MON_AUTH) {
277 ent->flags &= ~MON_PERMIT;
278 ent->flags |= permit ? MON_PERMIT : 0;
279 }
280 ent++;
281 }
282}
283
Darren Tucker3e33cec2003-10-02 16:12:36 +1000284void
285monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000286{
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000287 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000288 struct mon_table *ent;
Damien Miller15b05cf2012-12-03 09:53:20 +1100289 int authenticated = 0, partial = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000290
291 debug3("preauth child monitor started");
292
tb@openbsd.org34843802018-02-05 05:37:46 +0000293 if (pmonitor->m_recvfd >= 0)
294 close(pmonitor->m_recvfd);
295 if (pmonitor->m_log_sendfd >= 0)
296 close(pmonitor->m_log_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000297 pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
298
Darren Tucker3e33cec2003-10-02 16:12:36 +1000299 authctxt = _authctxt;
300 memset(authctxt, 0, sizeof(*authctxt));
djm@openbsd.org7c856852018-03-03 03:15:51 +0000301 ssh->authctxt = authctxt;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000302
Darren Tuckerde0de392005-03-31 23:52:04 +1000303 authctxt->loginmsg = &loginmsg;
304
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000305 mon_dispatch = mon_dispatch_proto20;
306 /* Permit requests for moduli and signatures */
307 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
308 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000309
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000310 /* The first few requests do not require asynchronous access */
311 while (!authenticated) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100312 partial = 0;
Damien Miller7a8f5b32006-03-31 23:14:23 +1100313 auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100314 auth_submethod = NULL;
djm@openbsd.org8f574952017-06-24 06:34:38 +0000315 auth2_authctxt_reset_info(authctxt);
316
Darren Tuckerfbba7352006-11-07 23:16:08 +1100317 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Damien Millera6e3f012012-11-04 23:21:40 +1100318
319 /* Special handling for multiple required authentications */
320 if (options.num_auth_methods != 0) {
Damien Millera6e3f012012-11-04 23:21:40 +1100321 if (authenticated &&
322 !auth2_update_methods_lists(authctxt,
Damien Miller91a55f22013-04-23 15:18:10 +1000323 auth_method, auth_submethod)) {
Damien Millera6e3f012012-11-04 23:21:40 +1100324 debug3("%s: method %s: partial", __func__,
325 auth_method);
326 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100327 partial = 1;
Damien Millera6e3f012012-11-04 23:21:40 +1100328 }
329 }
330
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000331 if (authenticated) {
332 if (!(ent->flags & MON_AUTHDECIDE))
333 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000334 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000335 if (authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000336 !auth_root_allowed(ssh, auth_method))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000337 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000338#ifdef USE_PAM
339 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100340 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000341 Buffer m;
342
343 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100344 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000345 MONITOR_REQ_PAM_ACCOUNT, &m);
346 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
347 buffer_free(&m);
348 }
349#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000350 }
Damien Miller7a8f5b32006-03-31 23:14:23 +1100351 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100352 auth_log(authctxt, authenticated, partial,
Darren Tucker0acca372013-06-02 07:41:51 +1000353 auth_method, auth_submethod);
djm@openbsd.org94885382015-06-22 23:42:16 +0000354 if (!partial && !authenticated)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000355 authctxt->failures++;
djm@openbsd.org8f574952017-06-24 06:34:38 +0000356 if (authenticated || partial) {
357 auth2_update_session_info(authctxt,
358 auth_method, auth_submethod);
359 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000360 }
361 }
362
363 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000364 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100365 if (strcmp(auth_method, "unknown") == 0)
366 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000367
368 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000369 __func__, authctxt->user);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000370 ssh->authctxt = NULL;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000371 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000372
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000373 mm_get_keystate(pmonitor);
Damien Miller8f0bf232011-06-20 14:42:23 +1000374
Damien Miller6a1937e2012-12-12 10:44:38 +1100375 /* Drain any buffered messages from the child */
376 while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
377 ;
378
tb@openbsd.org34843802018-02-05 05:37:46 +0000379 if (pmonitor->m_recvfd >= 0)
380 close(pmonitor->m_recvfd);
381 if (pmonitor->m_log_sendfd >= 0)
382 close(pmonitor->m_log_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000383 pmonitor->m_sendfd = pmonitor->m_log_recvfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000384}
385
Damien Millerbe64d432003-05-14 19:31:12 +1000386static void
387monitor_set_child_handler(pid_t pid)
388{
389 monitor_child_pid = pid;
390}
391
392static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000393monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000394{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000395 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000396}
397
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000398void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000399monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000400{
Damien Miller8f0bf232011-06-20 14:42:23 +1000401 close(pmonitor->m_recvfd);
402 pmonitor->m_recvfd = -1;
403
Damien Millerbe64d432003-05-14 19:31:12 +1000404 monitor_set_child_handler(pmonitor->m_pid);
405 signal(SIGHUP, &monitor_child_handler);
406 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000407 signal(SIGINT, &monitor_child_handler);
Damien Miller146218a2014-08-27 04:11:55 +1000408#ifdef SIGXFSZ
409 signal(SIGXFSZ, SIG_IGN);
410#endif
Damien Millerbe64d432003-05-14 19:31:12 +1000411
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000412 mon_dispatch = mon_dispatch_postauth20;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000413
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000414 /* Permit requests for moduli and signatures */
415 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
416 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
417 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
418
djm@openbsd.org7c856852018-03-03 03:15:51 +0000419 if (auth_opts->permit_pty_flag) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000420 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
421 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
422 }
423
424 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000425 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000426}
427
Damien Miller8f0bf232011-06-20 14:42:23 +1000428static int
429monitor_read_log(struct monitor *pmonitor)
430{
431 Buffer logmsg;
432 u_int len, level;
433 char *msg;
434
435 buffer_init(&logmsg);
436
437 /* Read length */
438 buffer_append_space(&logmsg, 4);
439 if (atomicio(read, pmonitor->m_log_recvfd,
440 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg)) {
441 if (errno == EPIPE) {
Damien Millera2876db2012-02-11 08:16:06 +1100442 buffer_free(&logmsg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000443 debug("%s: child log fd closed", __func__);
444 close(pmonitor->m_log_recvfd);
445 pmonitor->m_log_recvfd = -1;
446 return -1;
447 }
448 fatal("%s: log fd read: %s", __func__, strerror(errno));
449 }
450 len = buffer_get_int(&logmsg);
451 if (len <= 4 || len > 8192)
452 fatal("%s: invalid log message length %u", __func__, len);
453
454 /* Read severity, message */
455 buffer_clear(&logmsg);
456 buffer_append_space(&logmsg, len);
457 if (atomicio(read, pmonitor->m_log_recvfd,
458 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg))
459 fatal("%s: log fd read: %s", __func__, strerror(errno));
460
461 /* Log it */
462 level = buffer_get_int(&logmsg);
463 msg = buffer_get_string(&logmsg, NULL);
464 if (log_level_name(level) == NULL)
465 fatal("%s: invalid log level %u (corrupted message?)",
466 __func__, level);
467 do_log2(level, "%s [preauth]", msg);
468
469 buffer_free(&logmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000470 free(msg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000471
472 return 0;
473}
474
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000475int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000476monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000477 struct mon_table **pent)
478{
479 Buffer m;
480 int ret;
481 u_char type;
Damien Miller8f0bf232011-06-20 14:42:23 +1000482 struct pollfd pfd[2];
483
484 for (;;) {
Damien Miller1d2c4562014-02-04 11:18:20 +1100485 memset(&pfd, 0, sizeof(pfd));
Damien Miller8f0bf232011-06-20 14:42:23 +1000486 pfd[0].fd = pmonitor->m_sendfd;
487 pfd[0].events = POLLIN;
488 pfd[1].fd = pmonitor->m_log_recvfd;
489 pfd[1].events = pfd[1].fd == -1 ? 0 : POLLIN;
Damien Miller7741ce82011-08-06 06:15:15 +1000490 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
491 if (errno == EINTR || errno == EAGAIN)
492 continue;
Damien Miller8f0bf232011-06-20 14:42:23 +1000493 fatal("%s: poll: %s", __func__, strerror(errno));
Damien Miller7741ce82011-08-06 06:15:15 +1000494 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000495 if (pfd[1].revents) {
496 /*
497 * Drain all log messages before processing next
498 * monitor request.
499 */
500 monitor_read_log(pmonitor);
501 continue;
502 }
503 if (pfd[0].revents)
504 break; /* Continues below */
505 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000506
507 buffer_init(&m);
508
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000509 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000510 type = buffer_get_char(&m);
511
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000512 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000513
514 while (ent->f != NULL) {
515 if (ent->type == type)
516 break;
517 ent++;
518 }
519
520 if (ent->f != NULL) {
521 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000522 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000523 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000524 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000525 buffer_free(&m);
526
527 /* The child may use this request only once, disable it */
528 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000529 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000530 type);
531 ent->flags &= ~MON_PERMIT;
532 }
533
534 if (pent != NULL)
535 *pent = ent;
536
537 return ret;
538 }
539
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000540 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000541
542 /* NOTREACHED */
543 return (-1);
544}
545
546/* allowed key state */
547static int
548monitor_allowed_key(u_char *blob, u_int bloblen)
549{
550 /* make sure key is allowed */
551 if (key_blob == NULL || key_bloblen != bloblen ||
Damien Millerea1651c2010-07-16 13:58:37 +1000552 timingsafe_bcmp(key_blob, blob, key_bloblen))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000553 return (0);
554 return (1);
555}
556
557static void
558monitor_reset_key_state(void)
559{
560 /* reset state */
Darren Tuckera627d422013-06-02 07:31:17 +1000561 free(key_blob);
562 free(hostbased_cuser);
563 free(hostbased_chost);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000564 sshauthopt_free(key_opts);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000565 key_blob = NULL;
566 key_bloblen = 0;
567 key_blobtype = MM_NOKEY;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000568 key_opts = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000569 hostbased_cuser = NULL;
570 hostbased_chost = NULL;
571}
572
Damien Miller1f0311c2014-05-15 14:24:09 +1000573#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000574int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000575mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000576{
577 DH *dh;
578 int min, want, max;
579
580 min = buffer_get_int(m);
581 want = buffer_get_int(m);
582 max = buffer_get_int(m);
583
584 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000585 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000586 /* We need to check here, too, in case the child got corrupted */
587 if (max < min || want < min || max < want)
588 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000589 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000590
591 buffer_clear(m);
592
593 dh = choose_dh(min, want, max);
594 if (dh == NULL) {
595 buffer_put_char(m, 0);
596 return (0);
597 } else {
598 /* Send first bignum */
599 buffer_put_char(m, 1);
600 buffer_put_bignum2(m, dh->p);
601 buffer_put_bignum2(m, dh->g);
602
603 DH_free(dh);
604 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000605 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000606 return (0);
607}
Damien Miller1f0311c2014-05-15 14:24:09 +1000608#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000609
610int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000611mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000612{
djm@openbsd.org523463a2015-02-16 22:13:32 +0000613 struct ssh *ssh = active_state; /* XXX */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000614 extern int auth_sock; /* XXX move to state struct? */
615 struct sshkey *key;
djm@openbsd.org24c9bde2016-02-15 23:32:37 +0000616 struct sshbuf *sigbuf = NULL;
617 u_char *p = NULL, *signature = NULL;
618 char *alg = NULL;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000619 size_t datlen, siglen, alglen;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000620 int r, is_proof = 0;
621 u_int keyid;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000622 const char proof_req[] = "hostkeys-prove-00@openssh.com";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000623
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000624 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000625
djm@openbsd.org141efe42015-01-14 20:05:27 +0000626 if ((r = sshbuf_get_u32(m, &keyid)) != 0 ||
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000627 (r = sshbuf_get_string(m, &p, &datlen)) != 0 ||
628 (r = sshbuf_get_cstring(m, &alg, &alglen)) != 0)
djm@openbsd.org141efe42015-01-14 20:05:27 +0000629 fatal("%s: buffer error: %s", __func__, ssh_err(r));
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000630 if (keyid > INT_MAX)
631 fatal("%s: invalid key ID", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000632
Damien Millera63128d2006-03-15 12:08:28 +1100633 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000634 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
635 * SHA384 (48 bytes) and SHA512 (64 bytes).
djm@openbsd.org523463a2015-02-16 22:13:32 +0000636 *
637 * Otherwise, verify the signature request is for a hostkey
638 * proof.
639 *
640 * XXX perform similar check for KEX signature requests too?
641 * it's not trivial, since what is signed is the hash, rather
642 * than the full kex structure...
Damien Millera63128d2006-03-15 12:08:28 +1100643 */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000644 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64) {
645 /*
646 * Construct expected hostkey proof and compare it to what
647 * the client sent us.
648 */
649 if (session_id2_len == 0) /* hostkeys is never first */
650 fatal("%s: bad data length: %zu", __func__, datlen);
651 if ((key = get_hostkey_public_by_index(keyid, ssh)) == NULL)
652 fatal("%s: no hostkey for index %d", __func__, keyid);
653 if ((sigbuf = sshbuf_new()) == NULL)
654 fatal("%s: sshbuf_new", __func__);
djm@openbsd.org44732de2015-02-20 22:17:21 +0000655 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
656 (r = sshbuf_put_string(sigbuf, session_id2,
jsg@openbsd.orgf3a3ea12015-09-02 07:51:12 +0000657 session_id2_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000658 (r = sshkey_puts(key, sigbuf)) != 0)
659 fatal("%s: couldn't prepare private key "
660 "proof buffer: %s", __func__, ssh_err(r));
661 if (datlen != sshbuf_len(sigbuf) ||
662 memcmp(p, sshbuf_ptr(sigbuf), sshbuf_len(sigbuf)) != 0)
663 fatal("%s: bad data length: %zu, hostkey proof len %zu",
664 __func__, datlen, sshbuf_len(sigbuf));
665 sshbuf_free(sigbuf);
666 is_proof = 1;
667 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000668
Ben Lindstromf67e0772002-06-06 20:58:19 +0000669 /* save session id, it will be passed on the first call */
670 if (session_id2_len == 0) {
671 session_id2_len = datlen;
672 session_id2 = xmalloc(session_id2_len);
673 memcpy(session_id2, p, session_id2_len);
674 }
675
Damien Miller85b45e02013-07-20 13:21:52 +1000676 if ((key = get_hostkey_by_index(keyid)) != NULL) {
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000677 if ((r = sshkey_sign(key, &signature, &siglen, p, datlen, alg,
djm@openbsd.org141efe42015-01-14 20:05:27 +0000678 datafellows)) != 0)
679 fatal("%s: sshkey_sign failed: %s",
680 __func__, ssh_err(r));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000681 } else if ((key = get_hostkey_public_by_index(keyid, ssh)) != NULL &&
djm@openbsd.org141efe42015-01-14 20:05:27 +0000682 auth_sock > 0) {
683 if ((r = ssh_agent_sign(auth_sock, key, &signature, &siglen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000684 p, datlen, alg, datafellows)) != 0) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000685 fatal("%s: ssh_agent_sign failed: %s",
686 __func__, ssh_err(r));
687 }
Damien Miller85b45e02013-07-20 13:21:52 +1000688 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000689 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000690
djm@openbsd.org523463a2015-02-16 22:13:32 +0000691 debug3("%s: %s signature %p(%zu)", __func__,
692 is_proof ? "KEX" : "hostkey proof", signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000693
djm@openbsd.org141efe42015-01-14 20:05:27 +0000694 sshbuf_reset(m);
695 if ((r = sshbuf_put_string(m, signature, siglen)) != 0)
696 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000697
djm@openbsd.org24c9bde2016-02-15 23:32:37 +0000698 free(alg);
Darren Tuckera627d422013-06-02 07:31:17 +1000699 free(p);
700 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000701
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000702 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000703
704 /* Turn on permissions for getpwnam */
705 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
706
707 return (0);
708}
709
710/* Retrieves the password entry and also checks if the user is permitted */
711
712int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000713mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000714{
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000715 struct ssh *ssh = active_state; /* XXX */
Darren Tuckerb09b6772004-06-22 15:06:46 +1000716 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000717 struct passwd *pwent;
718 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000719 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000720
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000721 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000722
723 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000724 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000725
Darren Tuckerb09b6772004-06-22 15:06:46 +1000726 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000727
Darren Tuckerb09b6772004-06-22 15:06:46 +1000728 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000729
Darren Tuckerb09b6772004-06-22 15:06:46 +1000730 authctxt->user = xstrdup(username);
731 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000732 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000733
734 buffer_clear(m);
735
736 if (pwent == NULL) {
737 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100738 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000739 goto out;
740 }
741
742 allowed = 1;
743 authctxt->pw = pwent;
744 authctxt->valid = 1;
745
746 buffer_put_char(m, 1);
747 buffer_put_string(m, pwent, sizeof(struct passwd));
748 buffer_put_cstring(m, pwent->pw_name);
749 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000750#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000751 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000752#endif
753#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000754 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000755#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756 buffer_put_cstring(m, pwent->pw_dir);
757 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100758
759 out:
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000760 ssh_packet_set_log_preamble(ssh, "%suser %s",
761 authctxt->valid ? "authenticating" : "invalid ", authctxt->user);
Darren Tucker1629c072007-02-19 22:25:37 +1100762 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000763
764#define M_CP_STROPT(x) do { \
765 if (options.x != NULL) \
766 buffer_put_cstring(m, options.x); \
767 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000768#define M_CP_STRARRAYOPT(x, nx) do { \
769 for (i = 0; i < options.nx; i++) \
770 buffer_put_cstring(m, options.x[i]); \
771 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000772 /* See comment in servconf.h */
773 COPY_MATCH_STRING_OPTS();
774#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000775#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100776
777 /* Create valid auth method lists */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000778 if (auth2_setup_methods_lists(authctxt) != 0) {
Damien Millera6e3f012012-11-04 23:21:40 +1100779 /*
780 * The monitor will continue long enough to let the child
781 * run to it's packet_disconnect(), but it must not allow any
782 * authentication to succeed.
783 */
784 debug("%s: no valid authentication method lists", __func__);
785 }
786
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000787 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000788 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000789
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000790 /* Allow service/style information on the auth context */
791 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
792 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
793
Damien Millera33501b2002-05-08 12:24:42 +1000794#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000795 if (options.use_pam)
796 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000797#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000798
799 return (0);
800}
801
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000802int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000803{
804 char *banner;
805
806 buffer_clear(m);
807 banner = auth2_read_banner();
808 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000809 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000810 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000811
812 return (0);
813}
814
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000815int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000816mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000817{
818 monitor_permit_authentications(1);
819
820 authctxt->service = buffer_get_string(m, NULL);
821 authctxt->style = buffer_get_string(m, NULL);
822 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000823 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000824
825 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000826 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000827 authctxt->style = NULL;
828 }
829
830 return (0);
831}
832
833int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000834mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000835{
djm@openbsd.org7c856852018-03-03 03:15:51 +0000836 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000837 static int call_count;
838 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000839 int authenticated;
840 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000841
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000842 if (!options.password_authentication)
843 fatal("%s: password authentication not enabled", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000844 passwd = buffer_get_string(m, &plen);
845 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000846 authenticated = options.password_authentication &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000847 auth_password(ssh, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100848 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000849 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000850
851 buffer_clear(m);
852 buffer_put_int(m, authenticated);
Darren Tucker01558b72016-07-18 09:33:25 +1000853#ifdef USE_PAM
854 buffer_put_int(m, sshpam_get_maxtries_reached());
855#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000856
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000857 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000858 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000859
860 call_count++;
861 if (plen == 0 && call_count == 1)
862 auth_method = "none";
863 else
864 auth_method = "password";
865
866 /* Causes monitor loop to terminate if authenticated */
867 return (authenticated);
868}
869
870#ifdef BSD_AUTH
871int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000872mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000873{
874 char *name, *infotxt;
875 u_int numprompts;
876 u_int *echo_on;
877 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100878 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000879
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000880 if (!options.kbd_interactive_authentication)
881 fatal("%s: kbd-int authentication not enabled", __func__);
Damien Millerb7df3af2003-02-24 11:55:46 +1100882 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
883 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000884
885 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100886 buffer_put_int(m, success);
887 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000888 buffer_put_cstring(m, prompts[0]);
889
Damien Millerb7df3af2003-02-24 11:55:46 +1100890 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000891 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000892
Damien Millerb7df3af2003-02-24 11:55:46 +1100893 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000894 free(name);
895 free(infotxt);
896 free(prompts);
897 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000898 }
899
900 return (0);
901}
902
903int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000904mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000905{
906 char *response;
907 int authok;
908
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000909 if (!options.kbd_interactive_authentication)
910 fatal("%s: kbd-int authentication not enabled", __func__);
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +0000911 if (authctxt->as == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000912 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000913
914 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000915 authok = options.challenge_response_authentication &&
916 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000917 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000918 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000919 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000920
921 buffer_clear(m);
922 buffer_put_int(m, authok);
923
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000924 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000925 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000926
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000927 auth_method = "keyboard-interactive";
928 auth_submethod = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000929
930 return (authok != 0);
931}
932#endif
933
934#ifdef SKEY
935int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000936mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000937{
938 struct skey skey;
939 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100940 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000941
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000942 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
943 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000944
945 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100946 buffer_put_int(m, success);
947 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000948 buffer_put_cstring(m, challenge);
949
Damien Millerb7df3af2003-02-24 11:55:46 +1100950 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000951 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000952
953 return (0);
954}
955
956int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000957mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000958{
959 char *response;
960 int authok;
961
962 response = buffer_get_string(m, NULL);
963
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000964 authok = (options.challenge_response_authentication &&
965 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000966 skey_haskey(authctxt->pw->pw_name) == 0 &&
967 skey_passcheck(authctxt->pw->pw_name, response) != -1);
968
Darren Tuckerf60845f2013-06-02 08:07:31 +1000969 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000970
971 buffer_clear(m);
972 buffer_put_int(m, authok);
973
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000974 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000975 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000976
Damien Millerac947352015-11-20 12:35:41 +1100977 auth_method = "keyboard-interactive";
978 auth_submethod = "skey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000979
980 return (authok != 0);
981}
982#endif
983
Damien Miller79418552002-04-23 20:28:48 +1000984#ifdef USE_PAM
985int
Darren Tucker7eda5922004-06-22 13:22:50 +1000986mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +1000987{
Damien Miller4e448a32003-05-14 15:11:48 +1000988 if (!options.use_pam)
989 fatal("UsePAM not set, but ended up in %s anyway", __func__);
990
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100991 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +1000992
Damien Miller1f499fd2003-08-25 13:08:49 +1000993 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
Damien Miller775f8a22016-08-31 10:48:07 +1000994 if (options.kbd_interactive_authentication)
995 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller1f499fd2003-08-25 13:08:49 +1000996
Damien Miller79418552002-04-23 20:28:48 +1000997 return (0);
998}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000999
Damien Miller1f499fd2003-08-25 13:08:49 +10001000int
Darren Tucker7eda5922004-06-22 13:22:50 +10001001mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001002{
1003 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001004
Damien Miller1f499fd2003-08-25 13:08:49 +10001005 if (!options.use_pam)
Damien Miller775f8a22016-08-31 10:48:07 +10001006 fatal("%s: PAM not enabled", __func__);
Damien Miller1f499fd2003-08-25 13:08:49 +10001007
1008 ret = do_pam_account();
1009
1010 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001011 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001012
Darren Tucker7eda5922004-06-22 13:22:50 +10001013 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001014
1015 return (ret);
1016}
1017
Damien Miller4f9f42a2003-05-10 19:28:02 +10001018static void *sshpam_ctxt, *sshpam_authok;
1019extern KbdintDevice sshpam_device;
1020
1021int
Darren Tucker7eda5922004-06-22 13:22:50 +10001022mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001023{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001024 debug3("%s", __func__);
Damien Miller775f8a22016-08-31 10:48:07 +10001025 if (!options.kbd_interactive_authentication)
1026 fatal("%s: kbd-int authentication not enabled", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001027 if (sshpam_ctxt != NULL)
1028 fatal("%s: already called", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001029 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1030 sshpam_authok = NULL;
1031 buffer_clear(m);
1032 if (sshpam_ctxt != NULL) {
1033 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
Damien Millerb38b95f2016-08-29 11:47:07 +10001034 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_QUERY, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001035 buffer_put_int(m, 1);
1036 } else {
1037 buffer_put_int(m, 0);
1038 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001039 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001040 return (0);
1041}
1042
1043int
Darren Tucker7eda5922004-06-22 13:22:50 +10001044mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001045{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001046 char *name = NULL, *info = NULL, **prompts = NULL;
1047 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001048 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001049
1050 debug3("%s", __func__);
1051 sshpam_authok = NULL;
Damien Millerb38b95f2016-08-29 11:47:07 +10001052 if (sshpam_ctxt == NULL)
1053 fatal("%s: no context", __func__);
Damien Miller775f8a22016-08-31 10:48:07 +10001054 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info,
1055 &num, &prompts, &echo_on);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001056 if (ret == 0 && num == 0)
1057 sshpam_authok = sshpam_ctxt;
1058 if (num > 1 || name == NULL || info == NULL)
Damien Millerb38b95f2016-08-29 11:47:07 +10001059 fatal("sshpam_device.query failed");
1060 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_RESPOND, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001061 buffer_clear(m);
1062 buffer_put_int(m, ret);
1063 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001064 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001065 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001066 free(info);
Darren Tucker01558b72016-07-18 09:33:25 +10001067 buffer_put_int(m, sshpam_get_maxtries_reached());
Damien Miller4f9f42a2003-05-10 19:28:02 +10001068 buffer_put_int(m, num);
1069 for (i = 0; i < num; ++i) {
1070 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001071 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001072 buffer_put_int(m, echo_on[i]);
1073 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001074 free(prompts);
1075 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001076 auth_method = "keyboard-interactive";
1077 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001078 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001079 return (0);
1080}
1081
1082int
Darren Tucker7eda5922004-06-22 13:22:50 +10001083mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001084{
1085 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001086 u_int i, num;
1087 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001088
1089 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001090 if (sshpam_ctxt == NULL)
1091 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001092 sshpam_authok = NULL;
1093 num = buffer_get_int(m);
1094 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001095 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001096 for (i = 0; i < num; ++i)
1097 resp[i] = buffer_get_string(m, NULL);
1098 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1099 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001100 free(resp[i]);
1101 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001102 } else {
1103 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1104 }
1105 buffer_clear(m);
1106 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001107 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001108 auth_method = "keyboard-interactive";
1109 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001110 if (ret == 0)
1111 sshpam_authok = sshpam_ctxt;
1112 return (0);
1113}
1114
1115int
Darren Tucker7eda5922004-06-22 13:22:50 +10001116mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001117{
Damien Miller5e75f512015-08-11 13:34:12 +10001118 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001119
1120 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001121 if (sshpam_ctxt == NULL)
1122 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001123 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001124 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001125 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001126 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Millerb38b95f2016-08-29 11:47:07 +10001127 /* Allow another attempt */
1128 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller15b05cf2012-12-03 09:53:20 +11001129 auth_method = "keyboard-interactive";
1130 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001131 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001132}
Damien Miller79418552002-04-23 20:28:48 +10001133#endif
1134
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001135int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001136mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001137{
djm@openbsd.org7c856852018-03-03 03:15:51 +00001138 struct ssh *ssh = active_state; /* XXX */
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001139 struct sshkey *key;
Damien Millera10f5612002-09-12 09:49:15 +10001140 char *cuser, *chost;
1141 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001142 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001143 enum mm_keytype type = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +00001144 int r, allowed = 0;
1145 struct sshauthopt *opts = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001146
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001147 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001148 type = buffer_get_int(m);
1149 cuser = buffer_get_string(m, NULL);
1150 chost = buffer_get_string(m, NULL);
1151 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001152 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001153
1154 key = key_from_blob(blob, bloblen);
1155
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001156 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001157
Damien Miller3e3b5142003-11-17 21:13:40 +11001158 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001159 /* These should not make it past the privsep child */
1160 if (key_type_plain(key->type) == KEY_RSA &&
1161 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1162 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1163
Darren Tucker47eede72005-03-14 23:08:12 +11001164 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001165 case MM_USERKEY:
Damien Miller7a8f5b32006-03-31 23:14:23 +11001166 auth_method = "publickey";
djm@openbsd.org7c856852018-03-03 03:15:51 +00001167 if (!options.pubkey_authentication)
1168 break;
1169 if (auth2_key_already_used(authctxt, key))
1170 break;
1171 if (match_pattern_list(sshkey_ssh_name(key),
1172 options.pubkey_key_types, 0) != 1)
1173 break;
1174 allowed = user_key_allowed(ssh, authctxt->pw, key,
1175 pubkey_auth_attempt, &opts);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001176 break;
1177 case MM_HOSTKEY:
djm@openbsd.org7c856852018-03-03 03:15:51 +00001178 auth_method = "hostbased";
1179 if (!options.hostbased_authentication)
1180 break;
1181 if (auth2_key_already_used(authctxt, key))
1182 break;
1183 if (match_pattern_list(sshkey_ssh_name(key),
1184 options.hostbased_key_types, 0) != 1)
1185 break;
1186 allowed = hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001187 cuser, chost, key);
djm@openbsd.org8f574952017-06-24 06:34:38 +00001188 auth2_record_info(authctxt,
Damien Miller20bdcd72013-07-18 16:10:09 +10001189 "client user \"%.100s\", client host \"%.100s\"",
1190 cuser, chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001191 break;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001192 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001193 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001194 break;
1195 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001196 }
djm@openbsd.orgc36d91b2016-07-22 03:39:13 +00001197
djm@openbsd.org7c856852018-03-03 03:15:51 +00001198 debug3("%s: %s authentication%s: %s key is %s", __func__,
1199 auth_method, pubkey_auth_attempt ? "" : " test",
1200 (key == NULL || !authctxt->valid) ? "invalid" : sshkey_type(key),
1201 allowed ? "allowed" : "not allowed");
djm@openbsd.orgc36d91b2016-07-22 03:39:13 +00001202
djm@openbsd.org8f574952017-06-24 06:34:38 +00001203 auth2_record_key(authctxt, 0, key);
1204 sshkey_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001205
1206 /* clear temporarily storage (used by verify) */
1207 monitor_reset_key_state();
1208
1209 if (allowed) {
1210 /* Save temporarily for comparison in verify */
1211 key_blob = blob;
1212 key_bloblen = bloblen;
1213 key_blobtype = type;
djm@openbsd.org7c856852018-03-03 03:15:51 +00001214 key_opts = opts;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001215 hostbased_cuser = cuser;
1216 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001217 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001218 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001219 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001220 free(blob);
1221 free(cuser);
1222 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001223 }
1224
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001225 buffer_clear(m);
1226 buffer_put_int(m, allowed);
djm@openbsd.org7c856852018-03-03 03:15:51 +00001227 if (opts != NULL && (r = sshauthopt_serialise(opts, m, 1)) != 0)
1228 fatal("%s: sshauthopt_serialise: %s", __func__, ssh_err(r));
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001229 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001230
djm@openbsd.org7c856852018-03-03 03:15:51 +00001231 if (!allowed)
1232 sshauthopt_free(opts);
1233
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001234 return (0);
1235}
1236
1237static int
1238monitor_valid_userblob(u_char *data, u_int datalen)
1239{
1240 Buffer b;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001241 u_char *p;
1242 char *userstyle, *cp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001243 u_int len;
1244 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001245
1246 buffer_init(&b);
1247 buffer_append(&b, data, datalen);
1248
1249 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001250 p = buffer_ptr(&b);
1251 len = buffer_len(&b);
1252 if ((session_id2 == NULL) ||
1253 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001254 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001255 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001256 buffer_consume(&b, session_id2_len);
1257 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001258 p = buffer_get_string(&b, &len);
1259 if ((session_id2 == NULL) ||
1260 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001261 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001262 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001263 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001264 }
1265 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1266 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001267 cp = buffer_get_cstring(&b, NULL);
Damien Miller4ce189d2013-04-23 15:17:52 +10001268 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1269 authctxt->style ? ":" : "",
1270 authctxt->style ? authctxt->style : "");
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001271 if (strcmp(userstyle, cp) != 0) {
1272 logit("wrong user name passed to monitor: "
1273 "expected %s != %.100s", userstyle, cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001274 fail++;
1275 }
Darren Tuckera627d422013-06-02 07:31:17 +10001276 free(userstyle);
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001277 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001278 buffer_skip_string(&b);
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001279 cp = buffer_get_cstring(&b, NULL);
1280 if (strcmp("publickey", cp) != 0)
1281 fail++;
1282 free(cp);
1283 if (!buffer_get_char(&b))
1284 fail++;
1285 buffer_skip_string(&b);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001286 buffer_skip_string(&b);
1287 if (buffer_len(&b) != 0)
1288 fail++;
1289 buffer_free(&b);
1290 return (fail == 0);
1291}
1292
1293static int
Damien Millera10f5612002-09-12 09:49:15 +10001294monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1295 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001296{
1297 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001298 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001299 u_int len;
1300 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001301
1302 buffer_init(&b);
1303 buffer_append(&b, data, datalen);
1304
Ben Lindstromf67e0772002-06-06 20:58:19 +00001305 p = buffer_get_string(&b, &len);
1306 if ((session_id2 == NULL) ||
1307 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001308 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001309 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001310 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001311
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001312 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1313 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001314 p = buffer_get_cstring(&b, NULL);
1315 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1316 authctxt->style ? ":" : "",
1317 authctxt->style ? authctxt->style : "");
1318 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001319 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001320 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001321 fail++;
1322 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001323 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001324 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001325 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001326 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001327 if (strcmp(p, "hostbased") != 0)
1328 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001329 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001330 buffer_skip_string(&b); /* pkalg */
1331 buffer_skip_string(&b); /* pkblob */
1332
1333 /* verify client host, strip trailing dot if necessary */
1334 p = buffer_get_string(&b, NULL);
1335 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1336 p[len - 1] = '\0';
1337 if (strcmp(p, chost) != 0)
1338 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340
1341 /* verify client user */
1342 p = buffer_get_string(&b, NULL);
1343 if (strcmp(p, cuser) != 0)
1344 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001345 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001346
1347 if (buffer_len(&b) != 0)
1348 fail++;
1349 buffer_free(&b);
1350 return (fail == 0);
1351}
1352
1353int
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001354mm_answer_keyverify(int sock, struct sshbuf *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001355{
djm@openbsd.org7c856852018-03-03 03:15:51 +00001356 struct ssh *ssh = active_state; /* XXX */
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001357 struct sshkey *key;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001358 u_char *signature, *data, *blob;
djm@openbsd.org04c7e282017-12-18 02:25:15 +00001359 char *sigalg;
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001360 size_t signaturelen, datalen, bloblen;
1361 int r, ret, valid_data = 0, encoded_ret;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001362
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001363 if ((r = sshbuf_get_string(m, &blob, &bloblen)) != 0 ||
1364 (r = sshbuf_get_string(m, &signature, &signaturelen)) != 0 ||
djm@openbsd.org04c7e282017-12-18 02:25:15 +00001365 (r = sshbuf_get_string(m, &data, &datalen)) != 0 ||
1366 (r = sshbuf_get_cstring(m, &sigalg, NULL)) != 0)
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001367 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001368
1369 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001370 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001371 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001372
djm@openbsd.orgd45d69f2017-12-21 00:00:28 +00001373 /* Empty signature algorithm means NULL. */
1374 if (*sigalg == '\0') {
1375 free(sigalg);
1376 sigalg = NULL;
1377 }
1378
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001379 /* XXX use sshkey_froms here; need to change key_blob, etc. */
1380 if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0)
1381 fatal("%s: bad public key blob: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001382
1383 switch (key_blobtype) {
1384 case MM_USERKEY:
1385 valid_data = monitor_valid_userblob(data, datalen);
djm@openbsd.org8f574952017-06-24 06:34:38 +00001386 auth_method = "publickey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001387 break;
1388 case MM_HOSTKEY:
1389 valid_data = monitor_valid_hostbasedblob(data, datalen,
1390 hostbased_cuser, hostbased_chost);
djm@openbsd.org8f574952017-06-24 06:34:38 +00001391 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001392 break;
1393 default:
1394 valid_data = 0;
1395 break;
1396 }
1397 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001398 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001399
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001400 ret = sshkey_verify(key, signature, signaturelen, data, datalen,
djm@openbsd.org04c7e282017-12-18 02:25:15 +00001401 sigalg, active_state->compat);
djm@openbsd.org8f574952017-06-24 06:34:38 +00001402 debug3("%s: %s %p signature %s", __func__, auth_method, key,
1403 (ret == 0) ? "verified" : "unverified");
1404 auth2_record_key(authctxt, ret == 0, key);
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001405
Darren Tuckera627d422013-06-02 07:31:17 +10001406 free(blob);
1407 free(signature);
1408 free(data);
djm@openbsd.orgd45d69f2017-12-21 00:00:28 +00001409 free(sigalg);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001410
djm@openbsd.org7c856852018-03-03 03:15:51 +00001411 if (key_blobtype == MM_USERKEY)
1412 auth_activate_options(ssh, key_opts);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001413 monitor_reset_key_state();
1414
djm@openbsd.org8f574952017-06-24 06:34:38 +00001415 sshkey_free(key);
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001416 sshbuf_reset(m);
1417
1418 /* encode ret != 0 as positive integer, since we're sending u32 */
1419 encoded_ret = (ret != 0);
1420 if ((r = sshbuf_put_u32(m, encoded_ret)) != 0)
1421 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001422 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001423
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001424 return ret == 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001425}
1426
1427static void
1428mm_record_login(Session *s, struct passwd *pw)
1429{
djm@openbsd.org95767262016-03-07 19:02:43 +00001430 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001431 socklen_t fromlen;
1432 struct sockaddr_storage from;
1433
1434 /*
1435 * Get IP address of client. If the connection is not a socket, let
1436 * the address be 0.0.0.0.
1437 */
1438 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001439 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001440 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001441 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001442 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001443 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001444 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001445 }
1446 }
1447 /* Record that there was a login on that tty from the remote host. */
1448 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +00001449 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001450 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001451}
1452
1453static void
1454mm_session_close(Session *s)
1455{
Damien Miller04bd8b02003-05-25 14:38:33 +10001456 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001457 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001458 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001459 session_pty_cleanup2(s);
1460 }
Damien Miller7207f642008-05-19 15:34:50 +10001461 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001462}
1463
1464int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001465mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001466{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001467 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001468 Session *s;
1469 int res, fd0;
1470
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001471 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001472
1473 buffer_clear(m);
1474 s = session_new();
1475 if (s == NULL)
1476 goto error;
1477 s->authctxt = authctxt;
1478 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001479 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001480 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1481 if (res == 0)
1482 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001483 pty_setowner(authctxt->pw, s->tty);
1484
1485 buffer_put_int(m, 1);
1486 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001487
1488 /* We need to trick ttyslot */
1489 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001490 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001491
1492 mm_record_login(s, authctxt->pw);
1493
1494 /* Now we can close the file descriptor again */
1495 close(0);
1496
Darren Tucker09991742004-07-17 17:05:14 +10001497 /* send messages generated by record_login */
1498 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1499 buffer_clear(&loginmsg);
1500
1501 mm_request_send(sock, MONITOR_ANS_PTY, m);
1502
Damien Miller54fd7cf2007-09-17 12:04:08 +10001503 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1504 mm_send_fd(sock, s->ttyfd) == -1)
1505 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001506
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507 /* make sure nothing uses fd 0 */
1508 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001509 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001510 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001511 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001512
1513 /* slave is not needed */
1514 close(s->ttyfd);
1515 s->ttyfd = s->ptyfd;
1516 /* no need to dup() because nobody closes ptyfd */
1517 s->ptymaster = s->ptyfd;
1518
Damien Miller9ab00b42006-08-05 12:40:11 +10001519 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001520
1521 return (0);
1522
1523 error:
1524 if (s != NULL)
1525 mm_session_close(s);
1526 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001527 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001528 return (0);
1529}
1530
1531int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001532mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001533{
1534 Session *s;
1535 char *tty;
1536
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001537 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001538
1539 tty = buffer_get_string(m, NULL);
1540 if ((s = session_by_tty(tty)) != NULL)
1541 mm_session_close(s);
1542 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001543 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001544 return (0);
1545}
1546
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001547int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001548mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001549{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001550 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001551 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001552 int res, status;
1553
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001554 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001555
1556 /* The child is terminating */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001557 session_destroy_all(ssh, &mm_session_close);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001558
Darren Tucker52358d62008-03-11 22:58:25 +11001559#ifdef USE_PAM
1560 if (options.use_pam)
1561 sshpam_cleanup();
1562#endif
1563
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001564 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001565 if (errno != EINTR)
1566 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001567
1568 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1569
1570 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001571 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001572}
1573
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001574#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001575/* Report that an audit event occurred */
1576int
1577mm_answer_audit_event(int socket, Buffer *m)
1578{
1579 ssh_audit_event_t event;
1580
1581 debug3("%s entering", __func__);
1582
1583 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001584 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001585 case SSH_AUTH_FAIL_PUBKEY:
1586 case SSH_AUTH_FAIL_HOSTBASED:
1587 case SSH_AUTH_FAIL_GSSAPI:
1588 case SSH_LOGIN_EXCEED_MAXTRIES:
1589 case SSH_LOGIN_ROOT_DENIED:
1590 case SSH_CONNECTION_CLOSE:
1591 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001592 audit_event(event);
1593 break;
1594 default:
1595 fatal("Audit event type %d not permitted", event);
1596 }
1597
1598 return (0);
1599}
1600
1601int
1602mm_answer_audit_command(int socket, Buffer *m)
1603{
1604 u_int len;
1605 char *cmd;
1606
1607 debug3("%s entering", __func__);
1608 cmd = buffer_get_string(m, &len);
1609 /* sanity check command, if so how? */
1610 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001611 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001612 return (0);
1613}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001614#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001615
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001616void
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001617monitor_clear_keystate(struct monitor *pmonitor)
1618{
1619 struct ssh *ssh = active_state; /* XXX */
1620
1621 ssh_clear_newkeys(ssh, MODE_IN);
1622 ssh_clear_newkeys(ssh, MODE_OUT);
1623 sshbuf_free(child_state);
1624 child_state = NULL;
1625}
1626
1627void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001628monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001629{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001630 struct ssh *ssh = active_state; /* XXX */
1631 struct kex *kex;
1632 int r;
1633
1634 debug3("%s: packet_set_state", __func__);
1635 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1636 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1637 sshbuf_free(child_state);
1638 child_state = NULL;
1639
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001640 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001641 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001642#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001643 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1644 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +00001645 kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
1646 kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
1647 kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001648 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1649 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001650# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001651 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001652# endif
Damien Miller773dda22015-01-30 23:10:17 +11001653#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001654 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1655 kex->load_host_public_key=&get_hostkey_public_by_type;
1656 kex->load_host_private_key=&get_hostkey_private_by_type;
1657 kex->host_key_index=&get_hostkey_index;
1658 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001659 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001660}
1661
1662/* This function requries careful sanity checking */
1663
1664void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001665mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001666{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001667 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001668
markus@openbsd.org091c3022015-01-19 19:52:16 +00001669 if ((child_state = sshbuf_new()) == NULL)
1670 fatal("%s: sshbuf_new failed", __func__);
1671 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1672 child_state);
1673 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001674}
1675
1676
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001677/* XXX */
1678
1679#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001680 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001681 fatal("fcntl(%d, F_SETFD)", x); \
1682} while (0)
1683
1684static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001685monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686{
Damien Miller8f0bf232011-06-20 14:42:23 +10001687 int pair[2];
markus@openbsd.org84008602017-05-31 10:04:29 +00001688#ifdef SO_ZEROIZE
1689 int on = 1;
1690#endif
Damien Miller8f0bf232011-06-20 14:42:23 +10001691
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001692 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001693 fatal("%s: socketpair: %s", __func__, strerror(errno));
markus@openbsd.org84008602017-05-31 10:04:29 +00001694#ifdef SO_ZEROIZE
1695 if (setsockopt(pair[0], SOL_SOCKET, SO_ZEROIZE, &on, sizeof(on)) < 0)
1696 error("setsockopt SO_ZEROIZE(0): %.100s", strerror(errno));
1697 if (setsockopt(pair[1], SOL_SOCKET, SO_ZEROIZE, &on, sizeof(on)) < 0)
1698 error("setsockopt SO_ZEROIZE(1): %.100s", strerror(errno));
1699#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001700 FD_CLOSEONEXEC(pair[0]);
1701 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001702 mon->m_recvfd = pair[0];
1703 mon->m_sendfd = pair[1];
1704
1705 if (do_logfds) {
1706 if (pipe(pair) == -1)
1707 fatal("%s: pipe: %s", __func__, strerror(errno));
1708 FD_CLOSEONEXEC(pair[0]);
1709 FD_CLOSEONEXEC(pair[1]);
1710 mon->m_log_recvfd = pair[0];
1711 mon->m_log_sendfd = pair[1];
1712 } else
1713 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714}
1715
1716#define MM_MEMSIZE 65536
1717
1718struct monitor *
1719monitor_init(void)
1720{
1721 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001722
Damien Miller07d86be2006-03-26 14:19:21 +11001723 mon = xcalloc(1, sizeof(*mon));
Damien Miller8f0bf232011-06-20 14:42:23 +10001724 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001725
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001726 return mon;
1727}
1728
1729void
1730monitor_reinit(struct monitor *mon)
1731{
Damien Miller8f0bf232011-06-20 14:42:23 +10001732 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001733}
Darren Tucker0efd1552003-08-26 11:49:55 +10001734
1735#ifdef GSSAPI
1736int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001737mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001738{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001739 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001740 OM_uint32 major;
1741 u_int len;
1742
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001743 if (!options.gss_authentication)
1744 fatal("%s: GSSAPI authentication not enabled", __func__);
1745
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001746 goid.elements = buffer_get_string(m, &len);
1747 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001748
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001749 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001750
Darren Tuckera627d422013-06-02 07:31:17 +10001751 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001752
1753 buffer_clear(m);
1754 buffer_put_int(m, major);
1755
Damien Miller6fd6def2005-11-05 15:07:05 +11001756 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001757
1758 /* Now we have a context, enable the step */
1759 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1760
1761 return (0);
1762}
1763
1764int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001765mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001766{
1767 gss_buffer_desc in;
1768 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001769 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001770 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001771 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001772
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001773 if (!options.gss_authentication)
1774 fatal("%s: GSSAPI authentication not enabled", __func__);
1775
Darren Tucker600ad8d2003-08-26 12:10:48 +10001776 in.value = buffer_get_string(m, &len);
1777 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001778 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001779 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001780
1781 buffer_clear(m);
1782 buffer_put_int(m, major);
1783 buffer_put_string(m, out.value, out.length);
1784 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001785 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001786
1787 gss_release_buffer(&minor, &out);
1788
Damien Miller6fd6def2005-11-05 15:07:05 +11001789 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001790 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1791 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001792 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001793 }
1794 return (0);
1795}
1796
1797int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001798mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001799{
1800 gss_buffer_desc gssbuf, mic;
1801 OM_uint32 ret;
1802 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001803
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001804 if (!options.gss_authentication)
1805 fatal("%s: GSSAPI authentication not enabled", __func__);
1806
Damien Miller0425d402003-11-17 22:18:21 +11001807 gssbuf.value = buffer_get_string(m, &len);
1808 gssbuf.length = len;
1809 mic.value = buffer_get_string(m, &len);
1810 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001811
Damien Miller0425d402003-11-17 22:18:21 +11001812 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001813
Darren Tuckera627d422013-06-02 07:31:17 +10001814 free(gssbuf.value);
1815 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001816
Damien Miller0425d402003-11-17 22:18:21 +11001817 buffer_clear(m);
1818 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001819
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001820 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001821
Damien Miller0425d402003-11-17 22:18:21 +11001822 if (!GSS_ERROR(ret))
1823 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001824
Damien Miller0425d402003-11-17 22:18:21 +11001825 return (0);
1826}
1827
1828int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001829mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001830{
1831 int authenticated;
djm@openbsd.org8f574952017-06-24 06:34:38 +00001832 const char *displayname;
Darren Tucker0efd1552003-08-26 11:49:55 +10001833
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001834 if (!options.gss_authentication)
1835 fatal("%s: GSSAPI authentication not enabled", __func__);
1836
Darren Tucker0efd1552003-08-26 11:49:55 +10001837 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1838
1839 buffer_clear(m);
1840 buffer_put_int(m, authenticated);
1841
1842 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001843 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001844
Damien Miller6fd6def2005-11-05 15:07:05 +11001845 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001846
djm@openbsd.org8f574952017-06-24 06:34:38 +00001847 if ((displayname = ssh_gssapi_displayname()) != NULL)
1848 auth2_record_info(authctxt, "%s", displayname);
1849
Darren Tucker0efd1552003-08-26 11:49:55 +10001850 /* Monitor loop will terminate if authenticated */
1851 return (authenticated);
1852}
1853#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11001854