blob: 59b05a98f7a7c77e6d039c74af43a65e4b8e4a81 [file] [log] [blame]
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001/* $OpenBSD: monitor.c,v 1.162 2016/08/13 17:47:41 markus 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 Miller4f9f42a2003-05-10 19:28:02 +1000211 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
212 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
213 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
214 {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);
993
Damien Miller79418552002-04-23 20:28:48 +1000994 return (0);
995}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000996
Damien Miller1f499fd2003-08-25 13:08:49 +1000997int
Darren Tucker7eda5922004-06-22 13:22:50 +1000998mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +1000999{
1000 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001001
Damien Miller1f499fd2003-08-25 13:08:49 +10001002 if (!options.use_pam)
1003 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1004
1005 ret = do_pam_account();
1006
1007 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001008 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001009
Darren Tucker7eda5922004-06-22 13:22:50 +10001010 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001011
1012 return (ret);
1013}
1014
Damien Miller4f9f42a2003-05-10 19:28:02 +10001015static void *sshpam_ctxt, *sshpam_authok;
1016extern KbdintDevice sshpam_device;
1017
1018int
Darren Tucker7eda5922004-06-22 13:22:50 +10001019mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001020{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001021 debug3("%s", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001022 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1023 sshpam_authok = NULL;
1024 buffer_clear(m);
1025 if (sshpam_ctxt != NULL) {
1026 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
1027 buffer_put_int(m, 1);
1028 } else {
1029 buffer_put_int(m, 0);
1030 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001031 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001032 return (0);
1033}
1034
1035int
Darren Tucker7eda5922004-06-22 13:22:50 +10001036mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001037{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001038 char *name = NULL, *info = NULL, **prompts = NULL;
1039 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001040 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001041
1042 debug3("%s", __func__);
1043 sshpam_authok = NULL;
1044 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1045 if (ret == 0 && num == 0)
1046 sshpam_authok = sshpam_ctxt;
1047 if (num > 1 || name == NULL || info == NULL)
1048 ret = -1;
1049 buffer_clear(m);
1050 buffer_put_int(m, ret);
1051 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001052 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001053 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001054 free(info);
Darren Tucker01558b72016-07-18 09:33:25 +10001055 buffer_put_int(m, sshpam_get_maxtries_reached());
Damien Miller4f9f42a2003-05-10 19:28:02 +10001056 buffer_put_int(m, num);
1057 for (i = 0; i < num; ++i) {
1058 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001059 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001060 buffer_put_int(m, echo_on[i]);
1061 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001062 free(prompts);
1063 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001064 auth_method = "keyboard-interactive";
1065 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001066 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001067 return (0);
1068}
1069
1070int
Darren Tucker7eda5922004-06-22 13:22:50 +10001071mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001072{
1073 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001074 u_int i, num;
1075 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001076
1077 debug3("%s", __func__);
1078 sshpam_authok = NULL;
1079 num = buffer_get_int(m);
1080 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001081 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001082 for (i = 0; i < num; ++i)
1083 resp[i] = buffer_get_string(m, NULL);
1084 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1085 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001086 free(resp[i]);
1087 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001088 } else {
1089 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1090 }
1091 buffer_clear(m);
1092 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001093 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001094 auth_method = "keyboard-interactive";
1095 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001096 if (ret == 0)
1097 sshpam_authok = sshpam_ctxt;
1098 return (0);
1099}
1100
1101int
Darren Tucker7eda5922004-06-22 13:22:50 +10001102mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001103{
Damien Miller5e75f512015-08-11 13:34:12 +10001104 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001105
1106 debug3("%s", __func__);
1107 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001108 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001109 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001110 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001111 auth_method = "keyboard-interactive";
1112 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001113 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001114}
Damien Miller79418552002-04-23 20:28:48 +10001115#endif
1116
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001117int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001118mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001119{
1120 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001121 char *cuser, *chost;
1122 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001123 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001124 enum mm_keytype type = 0;
1125 int allowed = 0;
1126
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001127 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001128
1129 type = buffer_get_int(m);
1130 cuser = buffer_get_string(m, NULL);
1131 chost = buffer_get_string(m, NULL);
1132 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001133 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001134
1135 key = key_from_blob(blob, bloblen);
1136
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001137 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001138
Damien Miller3e3b5142003-11-17 21:13:40 +11001139 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001140 /* These should not make it past the privsep child */
1141 if (key_type_plain(key->type) == KEY_RSA &&
1142 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1143 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1144
Darren Tucker47eede72005-03-14 23:08:12 +11001145 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001146 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001147 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001148 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001149 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001150 options.pubkey_key_types, 0) == 1 &&
1151 user_key_allowed(authctxt->pw, key,
1152 pubkey_auth_attempt);
Damien Miller20bdcd72013-07-18 16:10:09 +10001153 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001154 auth_method = "publickey";
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001155 if (options.pubkey_authentication &&
1156 (!pubkey_auth_attempt || allowed != 1))
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001157 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001158 break;
1159 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001160 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001161 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001162 options.hostbased_key_types, 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001163 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001164 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001165 pubkey_auth_info(authctxt, key,
1166 "client user \"%.100s\", client host \"%.100s\"",
1167 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001168 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001169 break;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001170 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001171 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001172 break;
1173 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001174 }
djm@openbsd.orgc36d91b2016-07-22 03:39:13 +00001175
1176 debug3("%s: key %p is %s",
1177 __func__, key, allowed ? "allowed" : "not allowed");
1178
Damien Miller00111382003-03-10 11:21:17 +11001179 if (key != NULL)
1180 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001181
1182 /* clear temporarily storage (used by verify) */
1183 monitor_reset_key_state();
1184
1185 if (allowed) {
1186 /* Save temporarily for comparison in verify */
1187 key_blob = blob;
1188 key_bloblen = bloblen;
1189 key_blobtype = type;
1190 hostbased_cuser = cuser;
1191 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001192 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001193 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001194 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001195 free(blob);
1196 free(cuser);
1197 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001198 }
1199
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001200 buffer_clear(m);
1201 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001202 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001203
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001204 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001205
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001206 return (0);
1207}
1208
1209static int
1210monitor_valid_userblob(u_char *data, u_int datalen)
1211{
1212 Buffer b;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001213 u_char *p;
1214 char *userstyle, *cp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001215 u_int len;
1216 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001217
1218 buffer_init(&b);
1219 buffer_append(&b, data, datalen);
1220
1221 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001222 p = buffer_ptr(&b);
1223 len = buffer_len(&b);
1224 if ((session_id2 == NULL) ||
1225 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001226 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001227 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001228 buffer_consume(&b, session_id2_len);
1229 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001230 p = buffer_get_string(&b, &len);
1231 if ((session_id2 == NULL) ||
1232 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001233 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001234 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001235 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001236 }
1237 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1238 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001239 cp = buffer_get_cstring(&b, NULL);
Damien Miller4ce189d2013-04-23 15:17:52 +10001240 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1241 authctxt->style ? ":" : "",
1242 authctxt->style ? authctxt->style : "");
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001243 if (strcmp(userstyle, cp) != 0) {
1244 logit("wrong user name passed to monitor: "
1245 "expected %s != %.100s", userstyle, cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001246 fail++;
1247 }
Darren Tuckera627d422013-06-02 07:31:17 +10001248 free(userstyle);
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001249 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001250 buffer_skip_string(&b);
1251 if (datafellows & SSH_BUG_PKAUTH) {
1252 if (!buffer_get_char(&b))
1253 fail++;
1254 } else {
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001255 cp = buffer_get_cstring(&b, NULL);
1256 if (strcmp("publickey", cp) != 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001257 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001258 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001259 if (!buffer_get_char(&b))
1260 fail++;
1261 buffer_skip_string(&b);
1262 }
1263 buffer_skip_string(&b);
1264 if (buffer_len(&b) != 0)
1265 fail++;
1266 buffer_free(&b);
1267 return (fail == 0);
1268}
1269
1270static int
Damien Millera10f5612002-09-12 09:49:15 +10001271monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1272 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001273{
1274 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001275 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001276 u_int len;
1277 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001278
1279 buffer_init(&b);
1280 buffer_append(&b, data, datalen);
1281
Ben Lindstromf67e0772002-06-06 20:58:19 +00001282 p = buffer_get_string(&b, &len);
1283 if ((session_id2 == NULL) ||
1284 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001285 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001286 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001287 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001288
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001289 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1290 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001291 p = buffer_get_cstring(&b, NULL);
1292 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1293 authctxt->style ? ":" : "",
1294 authctxt->style ? authctxt->style : "");
1295 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001296 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001297 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001298 fail++;
1299 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001300 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001301 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001302 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001303 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001304 if (strcmp(p, "hostbased") != 0)
1305 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001306 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001307 buffer_skip_string(&b); /* pkalg */
1308 buffer_skip_string(&b); /* pkblob */
1309
1310 /* verify client host, strip trailing dot if necessary */
1311 p = buffer_get_string(&b, NULL);
1312 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1313 p[len - 1] = '\0';
1314 if (strcmp(p, chost) != 0)
1315 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001316 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001317
1318 /* verify client user */
1319 p = buffer_get_string(&b, NULL);
1320 if (strcmp(p, cuser) != 0)
1321 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001322 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001323
1324 if (buffer_len(&b) != 0)
1325 fail++;
1326 buffer_free(&b);
1327 return (fail == 0);
1328}
1329
1330int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001331mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001332{
1333 Key *key;
1334 u_char *signature, *data, *blob;
1335 u_int signaturelen, datalen, bloblen;
1336 int verified = 0;
1337 int valid_data = 0;
1338
1339 blob = buffer_get_string(m, &bloblen);
1340 signature = buffer_get_string(m, &signaturelen);
1341 data = buffer_get_string(m, &datalen);
1342
1343 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001344 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001345 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001346
1347 key = key_from_blob(blob, bloblen);
1348 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001349 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001350
1351 switch (key_blobtype) {
1352 case MM_USERKEY:
1353 valid_data = monitor_valid_userblob(data, datalen);
1354 break;
1355 case MM_HOSTKEY:
1356 valid_data = monitor_valid_hostbasedblob(data, datalen,
1357 hostbased_cuser, hostbased_chost);
1358 break;
1359 default:
1360 valid_data = 0;
1361 break;
1362 }
1363 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001364 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001365
1366 verified = key_verify(key, signature, signaturelen, data, datalen);
1367 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001368 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001369
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001370 /* If auth was successful then record key to ensure it isn't reused */
djm@openbsd.orgf54d8ac2015-09-04 04:44:08 +00001371 if (verified == 1 && key_blobtype == MM_USERKEY)
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001372 auth2_record_userkey(authctxt, key);
1373 else
1374 key_free(key);
1375
Darren Tuckera627d422013-06-02 07:31:17 +10001376 free(blob);
1377 free(signature);
1378 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001379
Ben Lindstrome1c09122002-06-23 00:38:24 +00001380 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1381
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001382 monitor_reset_key_state();
1383
1384 buffer_clear(m);
1385 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001386 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001387
Darren Tuckerfbba7352006-11-07 23:16:08 +11001388 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001389}
1390
1391static void
1392mm_record_login(Session *s, struct passwd *pw)
1393{
djm@openbsd.org95767262016-03-07 19:02:43 +00001394 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001395 socklen_t fromlen;
1396 struct sockaddr_storage from;
1397
djm@openbsd.org17d4d9d2015-04-17 04:32:31 +00001398 if (options.use_login)
1399 return;
1400
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001401 /*
1402 * Get IP address of client. If the connection is not a socket, let
1403 * the address be 0.0.0.0.
1404 */
1405 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001406 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001407 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001408 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001409 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001410 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001411 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001412 }
1413 }
1414 /* Record that there was a login on that tty from the remote host. */
1415 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +00001416 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001417 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001418}
1419
1420static void
1421mm_session_close(Session *s)
1422{
Damien Miller04bd8b02003-05-25 14:38:33 +10001423 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001424 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001425 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001426 session_pty_cleanup2(s);
1427 }
Damien Miller7207f642008-05-19 15:34:50 +10001428 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001429}
1430
1431int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001432mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001433{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001434 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001435 Session *s;
1436 int res, fd0;
1437
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001438 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001439
1440 buffer_clear(m);
1441 s = session_new();
1442 if (s == NULL)
1443 goto error;
1444 s->authctxt = authctxt;
1445 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001446 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001447 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1448 if (res == 0)
1449 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001450 pty_setowner(authctxt->pw, s->tty);
1451
1452 buffer_put_int(m, 1);
1453 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001454
1455 /* We need to trick ttyslot */
1456 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001457 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001458
1459 mm_record_login(s, authctxt->pw);
1460
1461 /* Now we can close the file descriptor again */
1462 close(0);
1463
Darren Tucker09991742004-07-17 17:05:14 +10001464 /* send messages generated by record_login */
1465 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1466 buffer_clear(&loginmsg);
1467
1468 mm_request_send(sock, MONITOR_ANS_PTY, m);
1469
Damien Miller54fd7cf2007-09-17 12:04:08 +10001470 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1471 mm_send_fd(sock, s->ttyfd) == -1)
1472 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001473
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474 /* make sure nothing uses fd 0 */
1475 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001476 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001477 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001478 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001479
1480 /* slave is not needed */
1481 close(s->ttyfd);
1482 s->ttyfd = s->ptyfd;
1483 /* no need to dup() because nobody closes ptyfd */
1484 s->ptymaster = s->ptyfd;
1485
Damien Miller9ab00b42006-08-05 12:40:11 +10001486 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001487
1488 return (0);
1489
1490 error:
1491 if (s != NULL)
1492 mm_session_close(s);
1493 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001494 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001495 return (0);
1496}
1497
1498int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001499mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001500{
1501 Session *s;
1502 char *tty;
1503
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001504 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001505
1506 tty = buffer_get_string(m, NULL);
1507 if ((s = session_by_tty(tty)) != NULL)
1508 mm_session_close(s);
1509 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001510 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001511 return (0);
1512}
1513
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001514int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001515mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001516{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001517 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001518 int res, status;
1519
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001520 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001521
1522 /* The child is terminating */
1523 session_destroy_all(&mm_session_close);
1524
Darren Tucker52358d62008-03-11 22:58:25 +11001525#ifdef USE_PAM
1526 if (options.use_pam)
1527 sshpam_cleanup();
1528#endif
1529
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001530 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001531 if (errno != EINTR)
1532 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001533
1534 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1535
1536 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001537 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001538}
1539
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001540#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001541/* Report that an audit event occurred */
1542int
1543mm_answer_audit_event(int socket, Buffer *m)
1544{
1545 ssh_audit_event_t event;
1546
1547 debug3("%s entering", __func__);
1548
1549 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001550 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001551 case SSH_AUTH_FAIL_PUBKEY:
1552 case SSH_AUTH_FAIL_HOSTBASED:
1553 case SSH_AUTH_FAIL_GSSAPI:
1554 case SSH_LOGIN_EXCEED_MAXTRIES:
1555 case SSH_LOGIN_ROOT_DENIED:
1556 case SSH_CONNECTION_CLOSE:
1557 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001558 audit_event(event);
1559 break;
1560 default:
1561 fatal("Audit event type %d not permitted", event);
1562 }
1563
1564 return (0);
1565}
1566
1567int
1568mm_answer_audit_command(int socket, Buffer *m)
1569{
1570 u_int len;
1571 char *cmd;
1572
1573 debug3("%s entering", __func__);
1574 cmd = buffer_get_string(m, &len);
1575 /* sanity check command, if so how? */
1576 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001577 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001578 return (0);
1579}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001580#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001581
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001582void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001583monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001584{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001585 struct ssh *ssh = active_state; /* XXX */
1586 struct kex *kex;
1587 int r;
1588
1589 debug3("%s: packet_set_state", __func__);
1590 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1591 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1592 sshbuf_free(child_state);
1593 child_state = NULL;
1594
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001595 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001596 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001597#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001598 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1599 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +00001600 kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
1601 kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
1602 kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001603 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1604 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001605# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001606 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001607# endif
Damien Miller773dda22015-01-30 23:10:17 +11001608#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001609 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1610 kex->load_host_public_key=&get_hostkey_public_by_type;
1611 kex->load_host_private_key=&get_hostkey_private_by_type;
1612 kex->host_key_index=&get_hostkey_index;
1613 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001614 }
1615
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001616 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001617 if (options.compression) {
1618 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1619 (ssh_packet_comp_alloc_func *)mm_zalloc,
1620 (ssh_packet_comp_free_func *)mm_zfree);
1621 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001622}
1623
1624/* This function requries careful sanity checking */
1625
1626void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001627mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001628{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001629 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001630
markus@openbsd.org091c3022015-01-19 19:52:16 +00001631 if ((child_state = sshbuf_new()) == NULL)
1632 fatal("%s: sshbuf_new failed", __func__);
1633 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1634 child_state);
1635 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001636}
1637
1638
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001639/* XXX */
1640
1641#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001642 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001643 fatal("fcntl(%d, F_SETFD)", x); \
1644} while (0)
1645
1646static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001647monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001648{
Damien Miller8f0bf232011-06-20 14:42:23 +10001649 int pair[2];
1650
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001651 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001652 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001653 FD_CLOSEONEXEC(pair[0]);
1654 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001655 mon->m_recvfd = pair[0];
1656 mon->m_sendfd = pair[1];
1657
1658 if (do_logfds) {
1659 if (pipe(pair) == -1)
1660 fatal("%s: pipe: %s", __func__, strerror(errno));
1661 FD_CLOSEONEXEC(pair[0]);
1662 FD_CLOSEONEXEC(pair[1]);
1663 mon->m_log_recvfd = pair[0];
1664 mon->m_log_sendfd = pair[1];
1665 } else
1666 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001667}
1668
1669#define MM_MEMSIZE 65536
1670
1671struct monitor *
1672monitor_init(void)
1673{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001674 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001675 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001676
Damien Miller07d86be2006-03-26 14:19:21 +11001677 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001678
Damien Miller8f0bf232011-06-20 14:42:23 +10001679 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001680
1681 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001682 if (options.compression) {
1683 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1684 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001685
Damien Miller2d6b8332002-06-21 15:59:49 +10001686 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001687 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1688 (ssh_packet_comp_alloc_func *)mm_zalloc,
1689 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001690 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001691
1692 return mon;
1693}
1694
1695void
1696monitor_reinit(struct monitor *mon)
1697{
Damien Miller8f0bf232011-06-20 14:42:23 +10001698 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001699}
Darren Tucker0efd1552003-08-26 11:49:55 +10001700
1701#ifdef GSSAPI
1702int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001703mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001704{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001705 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001706 OM_uint32 major;
1707 u_int len;
1708
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001709 goid.elements = buffer_get_string(m, &len);
1710 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001711
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001712 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001713
Darren Tuckera627d422013-06-02 07:31:17 +10001714 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001715
1716 buffer_clear(m);
1717 buffer_put_int(m, major);
1718
Damien Miller6fd6def2005-11-05 15:07:05 +11001719 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001720
1721 /* Now we have a context, enable the step */
1722 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1723
1724 return (0);
1725}
1726
1727int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001728mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001729{
1730 gss_buffer_desc in;
1731 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001732 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001733 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001734 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001735
Darren Tucker600ad8d2003-08-26 12:10:48 +10001736 in.value = buffer_get_string(m, &len);
1737 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001738 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001739 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001740
1741 buffer_clear(m);
1742 buffer_put_int(m, major);
1743 buffer_put_string(m, out.value, out.length);
1744 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001745 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001746
1747 gss_release_buffer(&minor, &out);
1748
Damien Miller6fd6def2005-11-05 15:07:05 +11001749 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001750 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1751 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001752 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001753 }
1754 return (0);
1755}
1756
1757int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001758mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001759{
1760 gss_buffer_desc gssbuf, mic;
1761 OM_uint32 ret;
1762 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001763
Damien Miller0425d402003-11-17 22:18:21 +11001764 gssbuf.value = buffer_get_string(m, &len);
1765 gssbuf.length = len;
1766 mic.value = buffer_get_string(m, &len);
1767 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001768
Damien Miller0425d402003-11-17 22:18:21 +11001769 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001770
Darren Tuckera627d422013-06-02 07:31:17 +10001771 free(gssbuf.value);
1772 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001773
Damien Miller0425d402003-11-17 22:18:21 +11001774 buffer_clear(m);
1775 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001776
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001777 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001778
Damien Miller0425d402003-11-17 22:18:21 +11001779 if (!GSS_ERROR(ret))
1780 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001781
Damien Miller0425d402003-11-17 22:18:21 +11001782 return (0);
1783}
1784
1785int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001786mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001787{
1788 int authenticated;
1789
1790 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1791
1792 buffer_clear(m);
1793 buffer_put_int(m, authenticated);
1794
1795 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001796 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001797
Damien Miller6fd6def2005-11-05 15:07:05 +11001798 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001799
1800 /* Monitor loop will terminate if authenticated */
1801 return (authenticated);
1802}
1803#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11001804