blob: b255f273fc0786bbf2f29c15f27b9e1d148b9797 [file] [log] [blame]
djm@openbsd.org83b58182016-08-19 03:18:06 +00001/* $OpenBSD: monitor.c,v 1.163 2016/08/19 03:18:06 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"
97#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100098#ifdef GSSAPI
99#include "ssh-gss.h"
100#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000101#include "monitor_wrap.h"
102#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000103#include "compat.h"
104#include "ssh2.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000105#include "authfd.h"
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000106#include "match.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000107#include "ssherr.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000108
Darren Tucker0efd1552003-08-26 11:49:55 +1000109#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +1000110static Gssctxt *gsscontext = NULL;
111#endif
112
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000113/* Imports */
114extern ServerOptions options;
115extern u_int utmp_len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000116extern u_char session_id[];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000117extern Buffer auth_debug;
118extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000119extern Buffer loginmsg;
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;
Damien Millera10f5612002-09-12 09:49:15 +1000176static char *hostbased_cuser = NULL;
177static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000178static char *auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100179static char *auth_submethod = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000180static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000181static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000182static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000183
184struct mon_table {
185 enum monitor_reqtype type;
186 int flags;
187 int (*f)(int, Buffer *);
188};
189
190#define MON_ISAUTH 0x0004 /* Required for Authentication */
191#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
192#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100193#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000194
195#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
196
197#define MON_PERMIT 0x1000 /* Request is permitted */
198
199struct mon_table mon_dispatch_proto20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000200#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000201 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000202#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000203 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
204 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
205 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000206 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000207 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000208#ifdef USE_PAM
209 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000210 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Millerb38b95f2016-08-29 11:47:07 +1000211 {MONITOR_REQ_PAM_INIT_CTX, MON_ONCE, mm_answer_pam_init_ctx},
212 {MONITOR_REQ_PAM_QUERY, 0, mm_answer_pam_query},
213 {MONITOR_REQ_PAM_RESPOND, MON_ONCE, mm_answer_pam_respond},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000214 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000215#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100216#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100217 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100218#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000219#ifdef BSD_AUTH
220 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100221 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000222#endif
223#ifdef SKEY
224 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
225 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
226#endif
227 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
228 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000229#ifdef GSSAPI
230 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
231 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
232 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100233 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000234#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000235 {0, 0, NULL}
236};
237
238struct mon_table mon_dispatch_postauth20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000239#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000240 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000241#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000242 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
243 {MONITOR_REQ_PTY, 0, mm_answer_pty},
244 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
245 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100246#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100247 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
248 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
249#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000250 {0, 0, NULL}
251};
252
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000253struct mon_table *mon_dispatch;
254
255/* Specifies if a certain message is allowed at the moment */
256
257static 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{
287 struct mon_table *ent;
Damien Miller15b05cf2012-12-03 09:53:20 +1100288 int authenticated = 0, partial = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000289
290 debug3("preauth child monitor started");
291
Damien Miller8f0bf232011-06-20 14:42:23 +1000292 close(pmonitor->m_recvfd);
293 close(pmonitor->m_log_sendfd);
294 pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
295
Darren Tucker3e33cec2003-10-02 16:12:36 +1000296 authctxt = _authctxt;
297 memset(authctxt, 0, sizeof(*authctxt));
298
Darren Tuckerde0de392005-03-31 23:52:04 +1000299 authctxt->loginmsg = &loginmsg;
300
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000301 mon_dispatch = mon_dispatch_proto20;
302 /* Permit requests for moduli and signatures */
303 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
304 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000305
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000306 /* The first few requests do not require asynchronous access */
307 while (!authenticated) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100308 partial = 0;
Damien Miller7a8f5b32006-03-31 23:14:23 +1100309 auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100310 auth_submethod = NULL;
Darren Tuckerfbba7352006-11-07 23:16:08 +1100311 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Damien Millera6e3f012012-11-04 23:21:40 +1100312
313 /* Special handling for multiple required authentications */
314 if (options.num_auth_methods != 0) {
Damien Millera6e3f012012-11-04 23:21:40 +1100315 if (authenticated &&
316 !auth2_update_methods_lists(authctxt,
Damien Miller91a55f22013-04-23 15:18:10 +1000317 auth_method, auth_submethod)) {
Damien Millera6e3f012012-11-04 23:21:40 +1100318 debug3("%s: method %s: partial", __func__,
319 auth_method);
320 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100321 partial = 1;
Damien Millera6e3f012012-11-04 23:21:40 +1100322 }
323 }
324
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000325 if (authenticated) {
326 if (!(ent->flags & MON_AUTHDECIDE))
327 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000328 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000329 if (authctxt->pw->pw_uid == 0 &&
330 !auth_root_allowed(auth_method))
331 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000332#ifdef USE_PAM
333 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100334 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000335 Buffer m;
336
337 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100338 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000339 MONITOR_REQ_PAM_ACCOUNT, &m);
340 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
341 buffer_free(&m);
342 }
343#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000344 }
Damien Miller7a8f5b32006-03-31 23:14:23 +1100345 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100346 auth_log(authctxt, authenticated, partial,
Darren Tucker0acca372013-06-02 07:41:51 +1000347 auth_method, auth_submethod);
djm@openbsd.org94885382015-06-22 23:42:16 +0000348 if (!partial && !authenticated)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000349 authctxt->failures++;
350 }
351 }
352
353 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000354 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100355 if (strcmp(auth_method, "unknown") == 0)
356 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000357
358 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000359 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000360
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000361 mm_get_keystate(pmonitor);
Damien Miller8f0bf232011-06-20 14:42:23 +1000362
Damien Miller6a1937e2012-12-12 10:44:38 +1100363 /* Drain any buffered messages from the child */
364 while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
365 ;
366
Damien Miller8f0bf232011-06-20 14:42:23 +1000367 close(pmonitor->m_sendfd);
368 close(pmonitor->m_log_recvfd);
369 pmonitor->m_sendfd = pmonitor->m_log_recvfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000370}
371
Damien Millerbe64d432003-05-14 19:31:12 +1000372static void
373monitor_set_child_handler(pid_t pid)
374{
375 monitor_child_pid = pid;
376}
377
378static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000379monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000380{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000381 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000382}
383
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000384void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000385monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000386{
Damien Miller8f0bf232011-06-20 14:42:23 +1000387 close(pmonitor->m_recvfd);
388 pmonitor->m_recvfd = -1;
389
Damien Millerbe64d432003-05-14 19:31:12 +1000390 monitor_set_child_handler(pmonitor->m_pid);
391 signal(SIGHUP, &monitor_child_handler);
392 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000393 signal(SIGINT, &monitor_child_handler);
Damien Miller146218a2014-08-27 04:11:55 +1000394#ifdef SIGXFSZ
395 signal(SIGXFSZ, SIG_IGN);
396#endif
Damien Millerbe64d432003-05-14 19:31:12 +1000397
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000398 mon_dispatch = mon_dispatch_postauth20;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000399
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000400 /* Permit requests for moduli and signatures */
401 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
402 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
403 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
404
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000405 if (!no_pty_flag) {
406 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
407 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
408 }
409
410 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000411 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000412}
413
414void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000415monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000416{
Damien Miller2d6b8332002-06-21 15:59:49 +1000417 if (options.compression) {
418 /* The member allocation is not visible, so sync it */
419 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
420 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000421}
422
markus@openbsd.org091c3022015-01-19 19:52:16 +0000423/* Allocation functions for zlib */
424static void *
425mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
426{
deraadt@openbsd.orge774e5e2015-08-21 23:29:31 +0000427 if (size == 0 || ncount == 0 || ncount > SIZE_MAX / size)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000428 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
429
deraadt@openbsd.orge774e5e2015-08-21 23:29:31 +0000430 return mm_malloc(mm, size * ncount);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000431}
432
433static void
434mm_zfree(struct mm_master *mm, void *address)
435{
436 mm_free(mm, address);
437}
438
Damien Miller8f0bf232011-06-20 14:42:23 +1000439static int
440monitor_read_log(struct monitor *pmonitor)
441{
442 Buffer logmsg;
443 u_int len, level;
444 char *msg;
445
446 buffer_init(&logmsg);
447
448 /* Read length */
449 buffer_append_space(&logmsg, 4);
450 if (atomicio(read, pmonitor->m_log_recvfd,
451 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg)) {
452 if (errno == EPIPE) {
Damien Millera2876db2012-02-11 08:16:06 +1100453 buffer_free(&logmsg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000454 debug("%s: child log fd closed", __func__);
455 close(pmonitor->m_log_recvfd);
456 pmonitor->m_log_recvfd = -1;
457 return -1;
458 }
459 fatal("%s: log fd read: %s", __func__, strerror(errno));
460 }
461 len = buffer_get_int(&logmsg);
462 if (len <= 4 || len > 8192)
463 fatal("%s: invalid log message length %u", __func__, len);
464
465 /* Read severity, message */
466 buffer_clear(&logmsg);
467 buffer_append_space(&logmsg, len);
468 if (atomicio(read, pmonitor->m_log_recvfd,
469 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg))
470 fatal("%s: log fd read: %s", __func__, strerror(errno));
471
472 /* Log it */
473 level = buffer_get_int(&logmsg);
474 msg = buffer_get_string(&logmsg, NULL);
475 if (log_level_name(level) == NULL)
476 fatal("%s: invalid log level %u (corrupted message?)",
477 __func__, level);
478 do_log2(level, "%s [preauth]", msg);
479
480 buffer_free(&logmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000481 free(msg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000482
483 return 0;
484}
485
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000486int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000487monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000488 struct mon_table **pent)
489{
490 Buffer m;
491 int ret;
492 u_char type;
Damien Miller8f0bf232011-06-20 14:42:23 +1000493 struct pollfd pfd[2];
494
495 for (;;) {
Damien Miller1d2c4562014-02-04 11:18:20 +1100496 memset(&pfd, 0, sizeof(pfd));
Damien Miller8f0bf232011-06-20 14:42:23 +1000497 pfd[0].fd = pmonitor->m_sendfd;
498 pfd[0].events = POLLIN;
499 pfd[1].fd = pmonitor->m_log_recvfd;
500 pfd[1].events = pfd[1].fd == -1 ? 0 : POLLIN;
Damien Miller7741ce82011-08-06 06:15:15 +1000501 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
502 if (errno == EINTR || errno == EAGAIN)
503 continue;
Damien Miller8f0bf232011-06-20 14:42:23 +1000504 fatal("%s: poll: %s", __func__, strerror(errno));
Damien Miller7741ce82011-08-06 06:15:15 +1000505 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000506 if (pfd[1].revents) {
507 /*
508 * Drain all log messages before processing next
509 * monitor request.
510 */
511 monitor_read_log(pmonitor);
512 continue;
513 }
514 if (pfd[0].revents)
515 break; /* Continues below */
516 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000517
518 buffer_init(&m);
519
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000520 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000521 type = buffer_get_char(&m);
522
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000523 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000524
525 while (ent->f != NULL) {
526 if (ent->type == type)
527 break;
528 ent++;
529 }
530
531 if (ent->f != NULL) {
532 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000533 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000534 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000535 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000536 buffer_free(&m);
537
538 /* The child may use this request only once, disable it */
539 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000540 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000541 type);
542 ent->flags &= ~MON_PERMIT;
543 }
544
545 if (pent != NULL)
546 *pent = ent;
547
548 return ret;
549 }
550
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000551 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000552
553 /* NOTREACHED */
554 return (-1);
555}
556
557/* allowed key state */
558static int
559monitor_allowed_key(u_char *blob, u_int bloblen)
560{
561 /* make sure key is allowed */
562 if (key_blob == NULL || key_bloblen != bloblen ||
Damien Millerea1651c2010-07-16 13:58:37 +1000563 timingsafe_bcmp(key_blob, blob, key_bloblen))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000564 return (0);
565 return (1);
566}
567
568static void
569monitor_reset_key_state(void)
570{
571 /* reset state */
Darren Tuckera627d422013-06-02 07:31:17 +1000572 free(key_blob);
573 free(hostbased_cuser);
574 free(hostbased_chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000575 key_blob = NULL;
576 key_bloblen = 0;
577 key_blobtype = MM_NOKEY;
578 hostbased_cuser = NULL;
579 hostbased_chost = NULL;
580}
581
Damien Miller1f0311c2014-05-15 14:24:09 +1000582#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000583int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000584mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000585{
586 DH *dh;
587 int min, want, max;
588
589 min = buffer_get_int(m);
590 want = buffer_get_int(m);
591 max = buffer_get_int(m);
592
593 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000594 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000595 /* We need to check here, too, in case the child got corrupted */
596 if (max < min || want < min || max < want)
597 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000598 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000599
600 buffer_clear(m);
601
602 dh = choose_dh(min, want, max);
603 if (dh == NULL) {
604 buffer_put_char(m, 0);
605 return (0);
606 } else {
607 /* Send first bignum */
608 buffer_put_char(m, 1);
609 buffer_put_bignum2(m, dh->p);
610 buffer_put_bignum2(m, dh->g);
611
612 DH_free(dh);
613 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000614 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000615 return (0);
616}
Damien Miller1f0311c2014-05-15 14:24:09 +1000617#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000618
619int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000620mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000621{
djm@openbsd.org523463a2015-02-16 22:13:32 +0000622 struct ssh *ssh = active_state; /* XXX */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000623 extern int auth_sock; /* XXX move to state struct? */
624 struct sshkey *key;
djm@openbsd.org24c9bde2016-02-15 23:32:37 +0000625 struct sshbuf *sigbuf = NULL;
626 u_char *p = NULL, *signature = NULL;
627 char *alg = NULL;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000628 size_t datlen, siglen, alglen;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000629 int r, is_proof = 0;
630 u_int keyid;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000631 const char proof_req[] = "hostkeys-prove-00@openssh.com";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000632
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000633 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000634
djm@openbsd.org141efe42015-01-14 20:05:27 +0000635 if ((r = sshbuf_get_u32(m, &keyid)) != 0 ||
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000636 (r = sshbuf_get_string(m, &p, &datlen)) != 0 ||
637 (r = sshbuf_get_cstring(m, &alg, &alglen)) != 0)
djm@openbsd.org141efe42015-01-14 20:05:27 +0000638 fatal("%s: buffer error: %s", __func__, ssh_err(r));
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000639 if (keyid > INT_MAX)
640 fatal("%s: invalid key ID", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000641
Damien Millera63128d2006-03-15 12:08:28 +1100642 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000643 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
644 * SHA384 (48 bytes) and SHA512 (64 bytes).
djm@openbsd.org523463a2015-02-16 22:13:32 +0000645 *
646 * Otherwise, verify the signature request is for a hostkey
647 * proof.
648 *
649 * XXX perform similar check for KEX signature requests too?
650 * it's not trivial, since what is signed is the hash, rather
651 * than the full kex structure...
Damien Millera63128d2006-03-15 12:08:28 +1100652 */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000653 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64) {
654 /*
655 * Construct expected hostkey proof and compare it to what
656 * the client sent us.
657 */
658 if (session_id2_len == 0) /* hostkeys is never first */
659 fatal("%s: bad data length: %zu", __func__, datlen);
660 if ((key = get_hostkey_public_by_index(keyid, ssh)) == NULL)
661 fatal("%s: no hostkey for index %d", __func__, keyid);
662 if ((sigbuf = sshbuf_new()) == NULL)
663 fatal("%s: sshbuf_new", __func__);
djm@openbsd.org44732de2015-02-20 22:17:21 +0000664 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
665 (r = sshbuf_put_string(sigbuf, session_id2,
jsg@openbsd.orgf3a3ea12015-09-02 07:51:12 +0000666 session_id2_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000667 (r = sshkey_puts(key, sigbuf)) != 0)
668 fatal("%s: couldn't prepare private key "
669 "proof buffer: %s", __func__, ssh_err(r));
670 if (datlen != sshbuf_len(sigbuf) ||
671 memcmp(p, sshbuf_ptr(sigbuf), sshbuf_len(sigbuf)) != 0)
672 fatal("%s: bad data length: %zu, hostkey proof len %zu",
673 __func__, datlen, sshbuf_len(sigbuf));
674 sshbuf_free(sigbuf);
675 is_proof = 1;
676 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000677
Ben Lindstromf67e0772002-06-06 20:58:19 +0000678 /* save session id, it will be passed on the first call */
679 if (session_id2_len == 0) {
680 session_id2_len = datlen;
681 session_id2 = xmalloc(session_id2_len);
682 memcpy(session_id2, p, session_id2_len);
683 }
684
Damien Miller85b45e02013-07-20 13:21:52 +1000685 if ((key = get_hostkey_by_index(keyid)) != NULL) {
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000686 if ((r = sshkey_sign(key, &signature, &siglen, p, datlen, alg,
djm@openbsd.org141efe42015-01-14 20:05:27 +0000687 datafellows)) != 0)
688 fatal("%s: sshkey_sign failed: %s",
689 __func__, ssh_err(r));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000690 } else if ((key = get_hostkey_public_by_index(keyid, ssh)) != NULL &&
djm@openbsd.org141efe42015-01-14 20:05:27 +0000691 auth_sock > 0) {
692 if ((r = ssh_agent_sign(auth_sock, key, &signature, &siglen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000693 p, datlen, alg, datafellows)) != 0) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000694 fatal("%s: ssh_agent_sign failed: %s",
695 __func__, ssh_err(r));
696 }
Damien Miller85b45e02013-07-20 13:21:52 +1000697 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000698 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000699
djm@openbsd.org523463a2015-02-16 22:13:32 +0000700 debug3("%s: %s signature %p(%zu)", __func__,
701 is_proof ? "KEX" : "hostkey proof", signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000702
djm@openbsd.org141efe42015-01-14 20:05:27 +0000703 sshbuf_reset(m);
704 if ((r = sshbuf_put_string(m, signature, siglen)) != 0)
705 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000706
djm@openbsd.org24c9bde2016-02-15 23:32:37 +0000707 free(alg);
Darren Tuckera627d422013-06-02 07:31:17 +1000708 free(p);
709 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000710
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000711 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000712
713 /* Turn on permissions for getpwnam */
714 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
715
716 return (0);
717}
718
719/* Retrieves the password entry and also checks if the user is permitted */
720
721int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000722mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000723{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000724 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000725 struct passwd *pwent;
726 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000727 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000728
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000729 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000730
731 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000732 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000733
Darren Tuckerb09b6772004-06-22 15:06:46 +1000734 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000735
Darren Tuckerb09b6772004-06-22 15:06:46 +1000736 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000737
Darren Tuckerb09b6772004-06-22 15:06:46 +1000738 authctxt->user = xstrdup(username);
739 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000740 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000741
742 buffer_clear(m);
743
744 if (pwent == NULL) {
745 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100746 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000747 goto out;
748 }
749
750 allowed = 1;
751 authctxt->pw = pwent;
752 authctxt->valid = 1;
753
754 buffer_put_char(m, 1);
755 buffer_put_string(m, pwent, sizeof(struct passwd));
756 buffer_put_cstring(m, pwent->pw_name);
757 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000758#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000759 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000760#endif
761#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000762 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000763#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000764 buffer_put_cstring(m, pwent->pw_dir);
765 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100766
767 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100768 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000769
770#define M_CP_STROPT(x) do { \
771 if (options.x != NULL) \
772 buffer_put_cstring(m, options.x); \
773 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000774#define M_CP_STRARRAYOPT(x, nx) do { \
775 for (i = 0; i < options.nx; i++) \
776 buffer_put_cstring(m, options.x[i]); \
777 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000778 /* See comment in servconf.h */
779 COPY_MATCH_STRING_OPTS();
780#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000781#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100782
783 /* Create valid auth method lists */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000784 if (auth2_setup_methods_lists(authctxt) != 0) {
Damien Millera6e3f012012-11-04 23:21:40 +1100785 /*
786 * The monitor will continue long enough to let the child
787 * run to it's packet_disconnect(), but it must not allow any
788 * authentication to succeed.
789 */
790 debug("%s: no valid authentication method lists", __func__);
791 }
792
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000793 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000794 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000795
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000796 /* Allow service/style information on the auth context */
797 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
798 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
799
Damien Millera33501b2002-05-08 12:24:42 +1000800#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000801 if (options.use_pam)
802 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000803#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000804
805 return (0);
806}
807
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000808int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000809{
810 char *banner;
811
812 buffer_clear(m);
813 banner = auth2_read_banner();
814 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000815 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000816 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000817
818 return (0);
819}
820
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000821int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000822mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000823{
824 monitor_permit_authentications(1);
825
826 authctxt->service = buffer_get_string(m, NULL);
827 authctxt->style = buffer_get_string(m, NULL);
828 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000829 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000830
831 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000832 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000833 authctxt->style = NULL;
834 }
835
836 return (0);
837}
838
839int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000840mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000841{
842 static int call_count;
843 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000844 int authenticated;
845 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000846
847 passwd = buffer_get_string(m, &plen);
848 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000849 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000850 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100851 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000852 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000853
854 buffer_clear(m);
855 buffer_put_int(m, authenticated);
Darren Tucker01558b72016-07-18 09:33:25 +1000856#ifdef USE_PAM
857 buffer_put_int(m, sshpam_get_maxtries_reached());
858#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000859
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000860 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000861 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000862
863 call_count++;
864 if (plen == 0 && call_count == 1)
865 auth_method = "none";
866 else
867 auth_method = "password";
868
869 /* Causes monitor loop to terminate if authenticated */
870 return (authenticated);
871}
872
873#ifdef BSD_AUTH
874int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000875mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000876{
877 char *name, *infotxt;
878 u_int numprompts;
879 u_int *echo_on;
880 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100881 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000882
Damien Millerb7df3af2003-02-24 11:55:46 +1100883 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
884 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885
886 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100887 buffer_put_int(m, success);
888 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000889 buffer_put_cstring(m, prompts[0]);
890
Damien Millerb7df3af2003-02-24 11:55:46 +1100891 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000892 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000893
Damien Millerb7df3af2003-02-24 11:55:46 +1100894 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000895 free(name);
896 free(infotxt);
897 free(prompts);
898 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000899 }
900
901 return (0);
902}
903
904int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000905mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000906{
907 char *response;
908 int authok;
909
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +0000910 if (authctxt->as == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000911 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000912
913 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000914 authok = options.challenge_response_authentication &&
915 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000916 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000917 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000918 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000919
920 buffer_clear(m);
921 buffer_put_int(m, authok);
922
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000923 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000924 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000925
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000926 auth_method = "keyboard-interactive";
927 auth_submethod = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000928
929 return (authok != 0);
930}
931#endif
932
933#ifdef SKEY
934int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000935mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000936{
937 struct skey skey;
938 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100939 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000940
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000941 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
942 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000943
944 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100945 buffer_put_int(m, success);
946 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000947 buffer_put_cstring(m, challenge);
948
Damien Millerb7df3af2003-02-24 11:55:46 +1100949 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000950 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000951
952 return (0);
953}
954
955int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000956mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000957{
958 char *response;
959 int authok;
960
961 response = buffer_get_string(m, NULL);
962
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000963 authok = (options.challenge_response_authentication &&
964 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000965 skey_haskey(authctxt->pw->pw_name) == 0 &&
966 skey_passcheck(authctxt->pw->pw_name, response) != -1);
967
Darren Tuckerf60845f2013-06-02 08:07:31 +1000968 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000969
970 buffer_clear(m);
971 buffer_put_int(m, authok);
972
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000973 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000974 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000975
Damien Millerac947352015-11-20 12:35:41 +1100976 auth_method = "keyboard-interactive";
977 auth_submethod = "skey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000978
979 return (authok != 0);
980}
981#endif
982
Damien Miller79418552002-04-23 20:28:48 +1000983#ifdef USE_PAM
984int
Darren Tucker7eda5922004-06-22 13:22:50 +1000985mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +1000986{
Damien Miller4e448a32003-05-14 15:11:48 +1000987 if (!options.use_pam)
988 fatal("UsePAM not set, but ended up in %s anyway", __func__);
989
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100990 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +1000991
Damien Miller1f499fd2003-08-25 13:08:49 +1000992 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
Damien Millerb38b95f2016-08-29 11:47:07 +1000993 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller1f499fd2003-08-25 13:08:49 +1000994
Damien Miller79418552002-04-23 20:28:48 +1000995 return (0);
996}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000997
Damien Miller1f499fd2003-08-25 13:08:49 +1000998int
Darren Tucker7eda5922004-06-22 13:22:50 +1000999mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001000{
1001 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001002
Damien Miller1f499fd2003-08-25 13:08:49 +10001003 if (!options.use_pam)
1004 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1005
1006 ret = do_pam_account();
1007
1008 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001009 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001010
Darren Tucker7eda5922004-06-22 13:22:50 +10001011 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001012
1013 return (ret);
1014}
1015
Damien Miller4f9f42a2003-05-10 19:28:02 +10001016static void *sshpam_ctxt, *sshpam_authok;
1017extern KbdintDevice sshpam_device;
1018
1019int
Darren Tucker7eda5922004-06-22 13:22:50 +10001020mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001021{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001022 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001023 if (sshpam_ctxt != NULL)
1024 fatal("%s: already called", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001025 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1026 sshpam_authok = NULL;
1027 buffer_clear(m);
1028 if (sshpam_ctxt != NULL) {
1029 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
Damien Millerb38b95f2016-08-29 11:47:07 +10001030 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_QUERY, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001031 buffer_put_int(m, 1);
1032 } else {
1033 buffer_put_int(m, 0);
1034 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001035 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001036 return (0);
1037}
1038
1039int
Darren Tucker7eda5922004-06-22 13:22:50 +10001040mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001041{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001042 char *name = NULL, *info = NULL, **prompts = NULL;
1043 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001044 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001045
1046 debug3("%s", __func__);
1047 sshpam_authok = NULL;
Damien Millerb38b95f2016-08-29 11:47:07 +10001048 if (sshpam_ctxt == NULL)
1049 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001050 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1051 if (ret == 0 && num == 0)
1052 sshpam_authok = sshpam_ctxt;
1053 if (num > 1 || name == NULL || info == NULL)
Damien Millerb38b95f2016-08-29 11:47:07 +10001054 fatal("sshpam_device.query failed");
1055 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_RESPOND, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001056 buffer_clear(m);
1057 buffer_put_int(m, ret);
1058 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001059 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001060 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001061 free(info);
Darren Tucker01558b72016-07-18 09:33:25 +10001062 buffer_put_int(m, sshpam_get_maxtries_reached());
Damien Miller4f9f42a2003-05-10 19:28:02 +10001063 buffer_put_int(m, num);
1064 for (i = 0; i < num; ++i) {
1065 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001066 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001067 buffer_put_int(m, echo_on[i]);
1068 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001069 free(prompts);
1070 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001071 auth_method = "keyboard-interactive";
1072 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001073 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001074 return (0);
1075}
1076
1077int
Darren Tucker7eda5922004-06-22 13:22:50 +10001078mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001079{
1080 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001081 u_int i, num;
1082 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001083
1084 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001085 if (sshpam_ctxt == NULL)
1086 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001087 sshpam_authok = NULL;
1088 num = buffer_get_int(m);
1089 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001090 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001091 for (i = 0; i < num; ++i)
1092 resp[i] = buffer_get_string(m, NULL);
1093 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1094 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001095 free(resp[i]);
1096 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001097 } else {
1098 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1099 }
1100 buffer_clear(m);
1101 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001102 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001103 auth_method = "keyboard-interactive";
1104 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001105 if (ret == 0)
1106 sshpam_authok = sshpam_ctxt;
1107 return (0);
1108}
1109
1110int
Darren Tucker7eda5922004-06-22 13:22:50 +10001111mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001112{
Damien Miller5e75f512015-08-11 13:34:12 +10001113 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001114
1115 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001116 if (sshpam_ctxt == NULL)
1117 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001118 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001119 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001120 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001121 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Millerb38b95f2016-08-29 11:47:07 +10001122 /* Allow another attempt */
1123 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller15b05cf2012-12-03 09:53:20 +11001124 auth_method = "keyboard-interactive";
1125 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001126 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001127}
Damien Miller79418552002-04-23 20:28:48 +10001128#endif
1129
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001130int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001131mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001132{
1133 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001134 char *cuser, *chost;
1135 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001136 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001137 enum mm_keytype type = 0;
1138 int allowed = 0;
1139
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001140 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001141
1142 type = buffer_get_int(m);
1143 cuser = buffer_get_string(m, NULL);
1144 chost = buffer_get_string(m, NULL);
1145 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001146 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001147
1148 key = key_from_blob(blob, bloblen);
1149
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001150 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001151
Damien Miller3e3b5142003-11-17 21:13:40 +11001152 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001153 /* These should not make it past the privsep child */
1154 if (key_type_plain(key->type) == KEY_RSA &&
1155 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1156 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1157
Darren Tucker47eede72005-03-14 23:08:12 +11001158 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001159 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001160 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001161 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001162 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001163 options.pubkey_key_types, 0) == 1 &&
1164 user_key_allowed(authctxt->pw, key,
1165 pubkey_auth_attempt);
Damien Miller20bdcd72013-07-18 16:10:09 +10001166 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001167 auth_method = "publickey";
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001168 if (options.pubkey_authentication &&
1169 (!pubkey_auth_attempt || allowed != 1))
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001170 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001171 break;
1172 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001173 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001174 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001175 options.hostbased_key_types, 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001176 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001177 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001178 pubkey_auth_info(authctxt, key,
1179 "client user \"%.100s\", client host \"%.100s\"",
1180 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001181 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001182 break;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001183 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001184 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001185 break;
1186 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001187 }
djm@openbsd.orgc36d91b2016-07-22 03:39:13 +00001188
1189 debug3("%s: key %p is %s",
1190 __func__, key, allowed ? "allowed" : "not allowed");
1191
Damien Miller00111382003-03-10 11:21:17 +11001192 if (key != NULL)
1193 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001194
1195 /* clear temporarily storage (used by verify) */
1196 monitor_reset_key_state();
1197
1198 if (allowed) {
1199 /* Save temporarily for comparison in verify */
1200 key_blob = blob;
1201 key_bloblen = bloblen;
1202 key_blobtype = type;
1203 hostbased_cuser = cuser;
1204 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001205 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001206 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001207 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001208 free(blob);
1209 free(cuser);
1210 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001211 }
1212
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001213 buffer_clear(m);
1214 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001215 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001216
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001217 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001218
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001219 return (0);
1220}
1221
1222static int
1223monitor_valid_userblob(u_char *data, u_int datalen)
1224{
1225 Buffer b;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001226 u_char *p;
1227 char *userstyle, *cp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001228 u_int len;
1229 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001230
1231 buffer_init(&b);
1232 buffer_append(&b, data, datalen);
1233
1234 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001235 p = buffer_ptr(&b);
1236 len = buffer_len(&b);
1237 if ((session_id2 == NULL) ||
1238 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001239 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001240 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001241 buffer_consume(&b, session_id2_len);
1242 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001243 p = buffer_get_string(&b, &len);
1244 if ((session_id2 == NULL) ||
1245 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001246 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001247 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001248 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001249 }
1250 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1251 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001252 cp = buffer_get_cstring(&b, NULL);
Damien Miller4ce189d2013-04-23 15:17:52 +10001253 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1254 authctxt->style ? ":" : "",
1255 authctxt->style ? authctxt->style : "");
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001256 if (strcmp(userstyle, cp) != 0) {
1257 logit("wrong user name passed to monitor: "
1258 "expected %s != %.100s", userstyle, cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001259 fail++;
1260 }
Darren Tuckera627d422013-06-02 07:31:17 +10001261 free(userstyle);
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001262 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001263 buffer_skip_string(&b);
1264 if (datafellows & SSH_BUG_PKAUTH) {
1265 if (!buffer_get_char(&b))
1266 fail++;
1267 } else {
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001268 cp = buffer_get_cstring(&b, NULL);
1269 if (strcmp("publickey", cp) != 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001270 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001271 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001272 if (!buffer_get_char(&b))
1273 fail++;
1274 buffer_skip_string(&b);
1275 }
1276 buffer_skip_string(&b);
1277 if (buffer_len(&b) != 0)
1278 fail++;
1279 buffer_free(&b);
1280 return (fail == 0);
1281}
1282
1283static int
Damien Millera10f5612002-09-12 09:49:15 +10001284monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1285 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001286{
1287 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001288 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001289 u_int len;
1290 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001291
1292 buffer_init(&b);
1293 buffer_append(&b, data, datalen);
1294
Ben Lindstromf67e0772002-06-06 20:58:19 +00001295 p = buffer_get_string(&b, &len);
1296 if ((session_id2 == NULL) ||
1297 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001298 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001299 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001300 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001301
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001302 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1303 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001304 p = buffer_get_cstring(&b, NULL);
1305 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1306 authctxt->style ? ":" : "",
1307 authctxt->style ? authctxt->style : "");
1308 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001309 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001310 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001311 fail++;
1312 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001313 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001315 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001316 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001317 if (strcmp(p, "hostbased") != 0)
1318 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001319 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001320 buffer_skip_string(&b); /* pkalg */
1321 buffer_skip_string(&b); /* pkblob */
1322
1323 /* verify client host, strip trailing dot if necessary */
1324 p = buffer_get_string(&b, NULL);
1325 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1326 p[len - 1] = '\0';
1327 if (strcmp(p, chost) != 0)
1328 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001329 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001330
1331 /* verify client user */
1332 p = buffer_get_string(&b, NULL);
1333 if (strcmp(p, cuser) != 0)
1334 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001335 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001336
1337 if (buffer_len(&b) != 0)
1338 fail++;
1339 buffer_free(&b);
1340 return (fail == 0);
1341}
1342
1343int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001344mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001345{
1346 Key *key;
1347 u_char *signature, *data, *blob;
1348 u_int signaturelen, datalen, bloblen;
1349 int verified = 0;
1350 int valid_data = 0;
1351
1352 blob = buffer_get_string(m, &bloblen);
1353 signature = buffer_get_string(m, &signaturelen);
1354 data = buffer_get_string(m, &datalen);
1355
1356 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001357 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001358 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001359
1360 key = key_from_blob(blob, bloblen);
1361 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001362 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001363
1364 switch (key_blobtype) {
1365 case MM_USERKEY:
1366 valid_data = monitor_valid_userblob(data, datalen);
1367 break;
1368 case MM_HOSTKEY:
1369 valid_data = monitor_valid_hostbasedblob(data, datalen,
1370 hostbased_cuser, hostbased_chost);
1371 break;
1372 default:
1373 valid_data = 0;
1374 break;
1375 }
1376 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001377 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001378
1379 verified = key_verify(key, signature, signaturelen, data, datalen);
1380 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001381 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001382
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001383 /* If auth was successful then record key to ensure it isn't reused */
djm@openbsd.orgf54d8ac2015-09-04 04:44:08 +00001384 if (verified == 1 && key_blobtype == MM_USERKEY)
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001385 auth2_record_userkey(authctxt, key);
1386 else
1387 key_free(key);
1388
Darren Tuckera627d422013-06-02 07:31:17 +10001389 free(blob);
1390 free(signature);
1391 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001392
Ben Lindstrome1c09122002-06-23 00:38:24 +00001393 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1394
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001395 monitor_reset_key_state();
1396
1397 buffer_clear(m);
1398 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001399 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001400
Darren Tuckerfbba7352006-11-07 23:16:08 +11001401 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001402}
1403
1404static void
1405mm_record_login(Session *s, struct passwd *pw)
1406{
djm@openbsd.org95767262016-03-07 19:02:43 +00001407 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001408 socklen_t fromlen;
1409 struct sockaddr_storage from;
1410
1411 /*
1412 * Get IP address of client. If the connection is not a socket, let
1413 * the address be 0.0.0.0.
1414 */
1415 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001416 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001417 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001418 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001419 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001420 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001421 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001422 }
1423 }
1424 /* Record that there was a login on that tty from the remote host. */
1425 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +00001426 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001427 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001428}
1429
1430static void
1431mm_session_close(Session *s)
1432{
Damien Miller04bd8b02003-05-25 14:38:33 +10001433 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001434 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001435 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001436 session_pty_cleanup2(s);
1437 }
Damien Miller7207f642008-05-19 15:34:50 +10001438 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001439}
1440
1441int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001442mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001443{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001444 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001445 Session *s;
1446 int res, fd0;
1447
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001448 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001449
1450 buffer_clear(m);
1451 s = session_new();
1452 if (s == NULL)
1453 goto error;
1454 s->authctxt = authctxt;
1455 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001456 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001457 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1458 if (res == 0)
1459 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001460 pty_setowner(authctxt->pw, s->tty);
1461
1462 buffer_put_int(m, 1);
1463 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001464
1465 /* We need to trick ttyslot */
1466 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001467 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001468
1469 mm_record_login(s, authctxt->pw);
1470
1471 /* Now we can close the file descriptor again */
1472 close(0);
1473
Darren Tucker09991742004-07-17 17:05:14 +10001474 /* send messages generated by record_login */
1475 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1476 buffer_clear(&loginmsg);
1477
1478 mm_request_send(sock, MONITOR_ANS_PTY, m);
1479
Damien Miller54fd7cf2007-09-17 12:04:08 +10001480 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1481 mm_send_fd(sock, s->ttyfd) == -1)
1482 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001483
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001484 /* make sure nothing uses fd 0 */
1485 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001486 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001487 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001488 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001489
1490 /* slave is not needed */
1491 close(s->ttyfd);
1492 s->ttyfd = s->ptyfd;
1493 /* no need to dup() because nobody closes ptyfd */
1494 s->ptymaster = s->ptyfd;
1495
Damien Miller9ab00b42006-08-05 12:40:11 +10001496 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001497
1498 return (0);
1499
1500 error:
1501 if (s != NULL)
1502 mm_session_close(s);
1503 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001504 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001505 return (0);
1506}
1507
1508int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001509mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001510{
1511 Session *s;
1512 char *tty;
1513
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001514 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001515
1516 tty = buffer_get_string(m, NULL);
1517 if ((s = session_by_tty(tty)) != NULL)
1518 mm_session_close(s);
1519 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001520 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001521 return (0);
1522}
1523
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001524int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001525mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001526{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001527 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001528 int res, status;
1529
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001530 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001531
1532 /* The child is terminating */
1533 session_destroy_all(&mm_session_close);
1534
Darren Tucker52358d62008-03-11 22:58:25 +11001535#ifdef USE_PAM
1536 if (options.use_pam)
1537 sshpam_cleanup();
1538#endif
1539
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001540 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001541 if (errno != EINTR)
1542 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001543
1544 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1545
1546 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001547 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001548}
1549
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001550#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001551/* Report that an audit event occurred */
1552int
1553mm_answer_audit_event(int socket, Buffer *m)
1554{
1555 ssh_audit_event_t event;
1556
1557 debug3("%s entering", __func__);
1558
1559 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001560 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001561 case SSH_AUTH_FAIL_PUBKEY:
1562 case SSH_AUTH_FAIL_HOSTBASED:
1563 case SSH_AUTH_FAIL_GSSAPI:
1564 case SSH_LOGIN_EXCEED_MAXTRIES:
1565 case SSH_LOGIN_ROOT_DENIED:
1566 case SSH_CONNECTION_CLOSE:
1567 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001568 audit_event(event);
1569 break;
1570 default:
1571 fatal("Audit event type %d not permitted", event);
1572 }
1573
1574 return (0);
1575}
1576
1577int
1578mm_answer_audit_command(int socket, Buffer *m)
1579{
1580 u_int len;
1581 char *cmd;
1582
1583 debug3("%s entering", __func__);
1584 cmd = buffer_get_string(m, &len);
1585 /* sanity check command, if so how? */
1586 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001587 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001588 return (0);
1589}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001590#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001591
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001592void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001593monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001594{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001595 struct ssh *ssh = active_state; /* XXX */
1596 struct kex *kex;
1597 int r;
1598
1599 debug3("%s: packet_set_state", __func__);
1600 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1601 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1602 sshbuf_free(child_state);
1603 child_state = NULL;
1604
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001605 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001606 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001607#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001608 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1609 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +00001610 kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
1611 kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
1612 kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001613 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1614 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001615# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001616 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001617# endif
Damien Miller773dda22015-01-30 23:10:17 +11001618#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001619 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1620 kex->load_host_public_key=&get_hostkey_public_by_type;
1621 kex->load_host_private_key=&get_hostkey_private_by_type;
1622 kex->host_key_index=&get_hostkey_index;
1623 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001624 }
1625
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001626 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001627 if (options.compression) {
1628 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1629 (ssh_packet_comp_alloc_func *)mm_zalloc,
1630 (ssh_packet_comp_free_func *)mm_zfree);
1631 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001632}
1633
1634/* This function requries careful sanity checking */
1635
1636void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001637mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001638{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001639 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001640
markus@openbsd.org091c3022015-01-19 19:52:16 +00001641 if ((child_state = sshbuf_new()) == NULL)
1642 fatal("%s: sshbuf_new failed", __func__);
1643 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1644 child_state);
1645 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001646}
1647
1648
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001649/* XXX */
1650
1651#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001652 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001653 fatal("fcntl(%d, F_SETFD)", x); \
1654} while (0)
1655
1656static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001657monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001658{
Damien Miller8f0bf232011-06-20 14:42:23 +10001659 int pair[2];
1660
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001661 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001662 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001663 FD_CLOSEONEXEC(pair[0]);
1664 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001665 mon->m_recvfd = pair[0];
1666 mon->m_sendfd = pair[1];
1667
1668 if (do_logfds) {
1669 if (pipe(pair) == -1)
1670 fatal("%s: pipe: %s", __func__, strerror(errno));
1671 FD_CLOSEONEXEC(pair[0]);
1672 FD_CLOSEONEXEC(pair[1]);
1673 mon->m_log_recvfd = pair[0];
1674 mon->m_log_sendfd = pair[1];
1675 } else
1676 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001677}
1678
1679#define MM_MEMSIZE 65536
1680
1681struct monitor *
1682monitor_init(void)
1683{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001684 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001685 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686
Damien Miller07d86be2006-03-26 14:19:21 +11001687 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001688
Damien Miller8f0bf232011-06-20 14:42:23 +10001689 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001690
1691 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001692 if (options.compression) {
1693 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1694 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001695
Damien Miller2d6b8332002-06-21 15:59:49 +10001696 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001697 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1698 (ssh_packet_comp_alloc_func *)mm_zalloc,
1699 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001700 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001701
1702 return mon;
1703}
1704
1705void
1706monitor_reinit(struct monitor *mon)
1707{
Damien Miller8f0bf232011-06-20 14:42:23 +10001708 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709}
Darren Tucker0efd1552003-08-26 11:49:55 +10001710
1711#ifdef GSSAPI
1712int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001713mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001714{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001715 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001716 OM_uint32 major;
1717 u_int len;
1718
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001719 goid.elements = buffer_get_string(m, &len);
1720 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001721
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001722 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001723
Darren Tuckera627d422013-06-02 07:31:17 +10001724 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001725
1726 buffer_clear(m);
1727 buffer_put_int(m, major);
1728
Damien Miller6fd6def2005-11-05 15:07:05 +11001729 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001730
1731 /* Now we have a context, enable the step */
1732 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1733
1734 return (0);
1735}
1736
1737int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001738mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001739{
1740 gss_buffer_desc in;
1741 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001742 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001743 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001744 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001745
Darren Tucker600ad8d2003-08-26 12:10:48 +10001746 in.value = buffer_get_string(m, &len);
1747 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001748 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001749 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001750
1751 buffer_clear(m);
1752 buffer_put_int(m, major);
1753 buffer_put_string(m, out.value, out.length);
1754 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001755 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001756
1757 gss_release_buffer(&minor, &out);
1758
Damien Miller6fd6def2005-11-05 15:07:05 +11001759 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001760 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1761 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001762 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001763 }
1764 return (0);
1765}
1766
1767int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001768mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001769{
1770 gss_buffer_desc gssbuf, mic;
1771 OM_uint32 ret;
1772 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001773
Damien Miller0425d402003-11-17 22:18:21 +11001774 gssbuf.value = buffer_get_string(m, &len);
1775 gssbuf.length = len;
1776 mic.value = buffer_get_string(m, &len);
1777 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001778
Damien Miller0425d402003-11-17 22:18:21 +11001779 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001780
Darren Tuckera627d422013-06-02 07:31:17 +10001781 free(gssbuf.value);
1782 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001783
Damien Miller0425d402003-11-17 22:18:21 +11001784 buffer_clear(m);
1785 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001786
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001787 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001788
Damien Miller0425d402003-11-17 22:18:21 +11001789 if (!GSS_ERROR(ret))
1790 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001791
Damien Miller0425d402003-11-17 22:18:21 +11001792 return (0);
1793}
1794
1795int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001796mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001797{
1798 int authenticated;
1799
1800 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1801
1802 buffer_clear(m);
1803 buffer_put_int(m, authenticated);
1804
1805 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001806 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001807
Damien Miller6fd6def2005-11-05 15:07:05 +11001808 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001809
1810 /* Monitor loop will terminate if authenticated */
1811 return (authenticated);
1812}
1813#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11001814