blob: bea8d8b27094420260eb7423c416e449d43d0737 [file] [log] [blame]
djm@openbsd.orgb33ad6d2016-09-05 13:57:31 +00001/* $OpenBSD: monitor.c,v 1.165 2016/09/05 13:57:31 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},
djm@openbsd.orgb33ad6d2016-09-05 13:57:31 +0000231 {MONITOR_REQ_GSSSTEP, 0, mm_answer_gss_accept_ctx},
232 {MONITOR_REQ_GSSUSEROK, MON_ONCE|MON_AUTHDECIDE, mm_answer_gss_userok},
233 {MONITOR_REQ_GSSCHECKMIC, MON_ONCE, 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
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000847 if (!options.password_authentication)
848 fatal("%s: password authentication not enabled", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000849 passwd = buffer_get_string(m, &plen);
850 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000851 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000852 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100853 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000854 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000855
856 buffer_clear(m);
857 buffer_put_int(m, authenticated);
Darren Tucker01558b72016-07-18 09:33:25 +1000858#ifdef USE_PAM
859 buffer_put_int(m, sshpam_get_maxtries_reached());
860#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000861
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000862 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000863 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000864
865 call_count++;
866 if (plen == 0 && call_count == 1)
867 auth_method = "none";
868 else
869 auth_method = "password";
870
871 /* Causes monitor loop to terminate if authenticated */
872 return (authenticated);
873}
874
875#ifdef BSD_AUTH
876int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000877mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000878{
879 char *name, *infotxt;
880 u_int numprompts;
881 u_int *echo_on;
882 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100883 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000884
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000885 if (!options.kbd_interactive_authentication)
886 fatal("%s: kbd-int authentication not enabled", __func__);
Damien Millerb7df3af2003-02-24 11:55:46 +1100887 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
888 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000889
890 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100891 buffer_put_int(m, success);
892 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000893 buffer_put_cstring(m, prompts[0]);
894
Damien Millerb7df3af2003-02-24 11:55:46 +1100895 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000896 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000897
Damien Millerb7df3af2003-02-24 11:55:46 +1100898 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000899 free(name);
900 free(infotxt);
901 free(prompts);
902 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000903 }
904
905 return (0);
906}
907
908int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000909mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000910{
911 char *response;
912 int authok;
913
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +0000914 if (!options.kbd_interactive_authentication)
915 fatal("%s: kbd-int authentication not enabled", __func__);
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +0000916 if (authctxt->as == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000917 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000918
919 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000920 authok = options.challenge_response_authentication &&
921 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000922 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000923 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000924 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000925
926 buffer_clear(m);
927 buffer_put_int(m, authok);
928
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000929 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000930 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000931
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000932 auth_method = "keyboard-interactive";
933 auth_submethod = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000934
935 return (authok != 0);
936}
937#endif
938
939#ifdef SKEY
940int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000941mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000942{
943 struct skey skey;
944 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100945 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000946
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000947 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
948 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000949
950 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100951 buffer_put_int(m, success);
952 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000953 buffer_put_cstring(m, challenge);
954
Damien Millerb7df3af2003-02-24 11:55:46 +1100955 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000956 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000957
958 return (0);
959}
960
961int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000962mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000963{
964 char *response;
965 int authok;
966
967 response = buffer_get_string(m, NULL);
968
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000969 authok = (options.challenge_response_authentication &&
970 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000971 skey_haskey(authctxt->pw->pw_name) == 0 &&
972 skey_passcheck(authctxt->pw->pw_name, response) != -1);
973
Darren Tuckerf60845f2013-06-02 08:07:31 +1000974 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000975
976 buffer_clear(m);
977 buffer_put_int(m, authok);
978
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000979 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000980 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000981
Damien Millerac947352015-11-20 12:35:41 +1100982 auth_method = "keyboard-interactive";
983 auth_submethod = "skey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000984
985 return (authok != 0);
986}
987#endif
988
Damien Miller79418552002-04-23 20:28:48 +1000989#ifdef USE_PAM
990int
Darren Tucker7eda5922004-06-22 13:22:50 +1000991mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +1000992{
Damien Miller4e448a32003-05-14 15:11:48 +1000993 if (!options.use_pam)
994 fatal("UsePAM not set, but ended up in %s anyway", __func__);
995
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100996 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +1000997
Damien Miller1f499fd2003-08-25 13:08:49 +1000998 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
Damien Miller775f8a22016-08-31 10:48:07 +1000999 if (options.kbd_interactive_authentication)
1000 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller1f499fd2003-08-25 13:08:49 +10001001
Damien Miller79418552002-04-23 20:28:48 +10001002 return (0);
1003}
Damien Miller4f9f42a2003-05-10 19:28:02 +10001004
Damien Miller1f499fd2003-08-25 13:08:49 +10001005int
Darren Tucker7eda5922004-06-22 13:22:50 +10001006mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001007{
1008 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001009
Damien Miller1f499fd2003-08-25 13:08:49 +10001010 if (!options.use_pam)
Damien Miller775f8a22016-08-31 10:48:07 +10001011 fatal("%s: PAM not enabled", __func__);
Damien Miller1f499fd2003-08-25 13:08:49 +10001012
1013 ret = do_pam_account();
1014
1015 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001016 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001017
Darren Tucker7eda5922004-06-22 13:22:50 +10001018 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001019
1020 return (ret);
1021}
1022
Damien Miller4f9f42a2003-05-10 19:28:02 +10001023static void *sshpam_ctxt, *sshpam_authok;
1024extern KbdintDevice sshpam_device;
1025
1026int
Darren Tucker7eda5922004-06-22 13:22:50 +10001027mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001028{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001029 debug3("%s", __func__);
Damien Miller775f8a22016-08-31 10:48:07 +10001030 if (!options.kbd_interactive_authentication)
1031 fatal("%s: kbd-int authentication not enabled", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001032 if (sshpam_ctxt != NULL)
1033 fatal("%s: already called", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001034 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1035 sshpam_authok = NULL;
1036 buffer_clear(m);
1037 if (sshpam_ctxt != NULL) {
1038 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
Damien Millerb38b95f2016-08-29 11:47:07 +10001039 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_QUERY, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001040 buffer_put_int(m, 1);
1041 } else {
1042 buffer_put_int(m, 0);
1043 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001044 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001045 return (0);
1046}
1047
1048int
Darren Tucker7eda5922004-06-22 13:22:50 +10001049mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001050{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001051 char *name = NULL, *info = NULL, **prompts = NULL;
1052 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001053 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001054
1055 debug3("%s", __func__);
1056 sshpam_authok = NULL;
Damien Millerb38b95f2016-08-29 11:47:07 +10001057 if (sshpam_ctxt == NULL)
1058 fatal("%s: no context", __func__);
Damien Miller775f8a22016-08-31 10:48:07 +10001059 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info,
1060 &num, &prompts, &echo_on);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001061 if (ret == 0 && num == 0)
1062 sshpam_authok = sshpam_ctxt;
1063 if (num > 1 || name == NULL || info == NULL)
Damien Millerb38b95f2016-08-29 11:47:07 +10001064 fatal("sshpam_device.query failed");
1065 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_RESPOND, 1);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001066 buffer_clear(m);
1067 buffer_put_int(m, ret);
1068 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001069 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001070 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001071 free(info);
Darren Tucker01558b72016-07-18 09:33:25 +10001072 buffer_put_int(m, sshpam_get_maxtries_reached());
Damien Miller4f9f42a2003-05-10 19:28:02 +10001073 buffer_put_int(m, num);
1074 for (i = 0; i < num; ++i) {
1075 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001076 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001077 buffer_put_int(m, echo_on[i]);
1078 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001079 free(prompts);
1080 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001081 auth_method = "keyboard-interactive";
1082 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001083 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001084 return (0);
1085}
1086
1087int
Darren Tucker7eda5922004-06-22 13:22:50 +10001088mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001089{
1090 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001091 u_int i, num;
1092 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001093
1094 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001095 if (sshpam_ctxt == NULL)
1096 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001097 sshpam_authok = NULL;
1098 num = buffer_get_int(m);
1099 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001100 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001101 for (i = 0; i < num; ++i)
1102 resp[i] = buffer_get_string(m, NULL);
1103 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1104 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001105 free(resp[i]);
1106 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001107 } else {
1108 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1109 }
1110 buffer_clear(m);
1111 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001112 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001113 auth_method = "keyboard-interactive";
1114 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001115 if (ret == 0)
1116 sshpam_authok = sshpam_ctxt;
1117 return (0);
1118}
1119
1120int
Darren Tucker7eda5922004-06-22 13:22:50 +10001121mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001122{
Damien Miller5e75f512015-08-11 13:34:12 +10001123 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001124
1125 debug3("%s", __func__);
Damien Millerb38b95f2016-08-29 11:47:07 +10001126 if (sshpam_ctxt == NULL)
1127 fatal("%s: no context", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001128 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001129 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001130 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001131 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Millerb38b95f2016-08-29 11:47:07 +10001132 /* Allow another attempt */
1133 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_INIT_CTX, 1);
Damien Miller15b05cf2012-12-03 09:53:20 +11001134 auth_method = "keyboard-interactive";
1135 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001136 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001137}
Damien Miller79418552002-04-23 20:28:48 +10001138#endif
1139
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001140int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001141mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001142{
1143 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001144 char *cuser, *chost;
1145 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001146 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001147 enum mm_keytype type = 0;
1148 int allowed = 0;
1149
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001150 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001151
1152 type = buffer_get_int(m);
1153 cuser = buffer_get_string(m, NULL);
1154 chost = buffer_get_string(m, NULL);
1155 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001156 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001157
1158 key = key_from_blob(blob, bloblen);
1159
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001160 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001161
Damien Miller3e3b5142003-11-17 21:13:40 +11001162 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001163 /* These should not make it past the privsep child */
1164 if (key_type_plain(key->type) == KEY_RSA &&
1165 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1166 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1167
Darren Tucker47eede72005-03-14 23:08:12 +11001168 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001169 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001170 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001171 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001172 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001173 options.pubkey_key_types, 0) == 1 &&
1174 user_key_allowed(authctxt->pw, key,
1175 pubkey_auth_attempt);
Damien Miller20bdcd72013-07-18 16:10:09 +10001176 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001177 auth_method = "publickey";
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001178 if (options.pubkey_authentication &&
1179 (!pubkey_auth_attempt || allowed != 1))
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001180 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001181 break;
1182 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001183 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001184 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001185 options.hostbased_key_types, 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001186 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001187 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001188 pubkey_auth_info(authctxt, key,
1189 "client user \"%.100s\", client host \"%.100s\"",
1190 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001191 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001192 break;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001193 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001194 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001195 break;
1196 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001197 }
djm@openbsd.orgc36d91b2016-07-22 03:39:13 +00001198
1199 debug3("%s: key %p is %s",
1200 __func__, key, allowed ? "allowed" : "not allowed");
1201
Damien Miller00111382003-03-10 11:21:17 +11001202 if (key != NULL)
1203 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001204
1205 /* clear temporarily storage (used by verify) */
1206 monitor_reset_key_state();
1207
1208 if (allowed) {
1209 /* Save temporarily for comparison in verify */
1210 key_blob = blob;
1211 key_bloblen = bloblen;
1212 key_blobtype = type;
1213 hostbased_cuser = cuser;
1214 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001215 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001216 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001217 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001218 free(blob);
1219 free(cuser);
1220 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001221 }
1222
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001223 buffer_clear(m);
1224 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001225 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001226
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001227 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001228
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001229 return (0);
1230}
1231
1232static int
1233monitor_valid_userblob(u_char *data, u_int datalen)
1234{
1235 Buffer b;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001236 u_char *p;
1237 char *userstyle, *cp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001238 u_int len;
1239 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001240
1241 buffer_init(&b);
1242 buffer_append(&b, data, datalen);
1243
1244 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001245 p = buffer_ptr(&b);
1246 len = buffer_len(&b);
1247 if ((session_id2 == NULL) ||
1248 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001249 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001250 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001251 buffer_consume(&b, session_id2_len);
1252 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001253 p = buffer_get_string(&b, &len);
1254 if ((session_id2 == NULL) ||
1255 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001256 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001257 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001258 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001259 }
1260 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1261 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001262 cp = buffer_get_cstring(&b, NULL);
Damien Miller4ce189d2013-04-23 15:17:52 +10001263 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1264 authctxt->style ? ":" : "",
1265 authctxt->style ? authctxt->style : "");
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001266 if (strcmp(userstyle, cp) != 0) {
1267 logit("wrong user name passed to monitor: "
1268 "expected %s != %.100s", userstyle, cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001269 fail++;
1270 }
Darren Tuckera627d422013-06-02 07:31:17 +10001271 free(userstyle);
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001272 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001273 buffer_skip_string(&b);
1274 if (datafellows & SSH_BUG_PKAUTH) {
1275 if (!buffer_get_char(&b))
1276 fail++;
1277 } else {
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001278 cp = buffer_get_cstring(&b, NULL);
1279 if (strcmp("publickey", cp) != 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001280 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001281 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001282 if (!buffer_get_char(&b))
1283 fail++;
1284 buffer_skip_string(&b);
1285 }
1286 buffer_skip_string(&b);
1287 if (buffer_len(&b) != 0)
1288 fail++;
1289 buffer_free(&b);
1290 return (fail == 0);
1291}
1292
1293static int
Damien Millera10f5612002-09-12 09:49:15 +10001294monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1295 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001296{
1297 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001298 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001299 u_int len;
1300 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001301
1302 buffer_init(&b);
1303 buffer_append(&b, data, datalen);
1304
Ben Lindstromf67e0772002-06-06 20:58:19 +00001305 p = buffer_get_string(&b, &len);
1306 if ((session_id2 == NULL) ||
1307 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001308 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001309 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001310 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001311
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001312 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1313 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001314 p = buffer_get_cstring(&b, NULL);
1315 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1316 authctxt->style ? ":" : "",
1317 authctxt->style ? authctxt->style : "");
1318 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001319 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001320 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001321 fail++;
1322 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001323 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001324 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001325 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001326 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001327 if (strcmp(p, "hostbased") != 0)
1328 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001329 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001330 buffer_skip_string(&b); /* pkalg */
1331 buffer_skip_string(&b); /* pkblob */
1332
1333 /* verify client host, strip trailing dot if necessary */
1334 p = buffer_get_string(&b, NULL);
1335 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1336 p[len - 1] = '\0';
1337 if (strcmp(p, chost) != 0)
1338 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340
1341 /* verify client user */
1342 p = buffer_get_string(&b, NULL);
1343 if (strcmp(p, cuser) != 0)
1344 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001345 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001346
1347 if (buffer_len(&b) != 0)
1348 fail++;
1349 buffer_free(&b);
1350 return (fail == 0);
1351}
1352
1353int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001354mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001355{
1356 Key *key;
1357 u_char *signature, *data, *blob;
1358 u_int signaturelen, datalen, bloblen;
1359 int verified = 0;
1360 int valid_data = 0;
1361
1362 blob = buffer_get_string(m, &bloblen);
1363 signature = buffer_get_string(m, &signaturelen);
1364 data = buffer_get_string(m, &datalen);
1365
1366 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001367 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001368 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001369
1370 key = key_from_blob(blob, bloblen);
1371 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001372 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001373
1374 switch (key_blobtype) {
1375 case MM_USERKEY:
1376 valid_data = monitor_valid_userblob(data, datalen);
1377 break;
1378 case MM_HOSTKEY:
1379 valid_data = monitor_valid_hostbasedblob(data, datalen,
1380 hostbased_cuser, hostbased_chost);
1381 break;
1382 default:
1383 valid_data = 0;
1384 break;
1385 }
1386 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001387 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001388
1389 verified = key_verify(key, signature, signaturelen, data, datalen);
1390 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001391 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001392
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001393 /* If auth was successful then record key to ensure it isn't reused */
djm@openbsd.orgf54d8ac2015-09-04 04:44:08 +00001394 if (verified == 1 && key_blobtype == MM_USERKEY)
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001395 auth2_record_userkey(authctxt, key);
1396 else
1397 key_free(key);
1398
Darren Tuckera627d422013-06-02 07:31:17 +10001399 free(blob);
1400 free(signature);
1401 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001402
Ben Lindstrome1c09122002-06-23 00:38:24 +00001403 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1404
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001405 monitor_reset_key_state();
1406
1407 buffer_clear(m);
1408 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001409 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001410
Darren Tuckerfbba7352006-11-07 23:16:08 +11001411 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001412}
1413
1414static void
1415mm_record_login(Session *s, struct passwd *pw)
1416{
djm@openbsd.org95767262016-03-07 19:02:43 +00001417 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001418 socklen_t fromlen;
1419 struct sockaddr_storage from;
1420
1421 /*
1422 * Get IP address of client. If the connection is not a socket, let
1423 * the address be 0.0.0.0.
1424 */
1425 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001426 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001427 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001428 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001429 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001430 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001431 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001432 }
1433 }
1434 /* Record that there was a login on that tty from the remote host. */
1435 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +00001436 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001437 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001438}
1439
1440static void
1441mm_session_close(Session *s)
1442{
Damien Miller04bd8b02003-05-25 14:38:33 +10001443 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001444 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001445 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001446 session_pty_cleanup2(s);
1447 }
Damien Miller7207f642008-05-19 15:34:50 +10001448 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001449}
1450
1451int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001452mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001453{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001454 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001455 Session *s;
1456 int res, fd0;
1457
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001458 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001459
1460 buffer_clear(m);
1461 s = session_new();
1462 if (s == NULL)
1463 goto error;
1464 s->authctxt = authctxt;
1465 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001466 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001467 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1468 if (res == 0)
1469 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001470 pty_setowner(authctxt->pw, s->tty);
1471
1472 buffer_put_int(m, 1);
1473 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474
1475 /* We need to trick ttyslot */
1476 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001477 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001478
1479 mm_record_login(s, authctxt->pw);
1480
1481 /* Now we can close the file descriptor again */
1482 close(0);
1483
Darren Tucker09991742004-07-17 17:05:14 +10001484 /* send messages generated by record_login */
1485 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1486 buffer_clear(&loginmsg);
1487
1488 mm_request_send(sock, MONITOR_ANS_PTY, m);
1489
Damien Miller54fd7cf2007-09-17 12:04:08 +10001490 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1491 mm_send_fd(sock, s->ttyfd) == -1)
1492 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001493
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001494 /* make sure nothing uses fd 0 */
1495 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001496 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001497 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001498 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001499
1500 /* slave is not needed */
1501 close(s->ttyfd);
1502 s->ttyfd = s->ptyfd;
1503 /* no need to dup() because nobody closes ptyfd */
1504 s->ptymaster = s->ptyfd;
1505
Damien Miller9ab00b42006-08-05 12:40:11 +10001506 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507
1508 return (0);
1509
1510 error:
1511 if (s != NULL)
1512 mm_session_close(s);
1513 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001514 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001515 return (0);
1516}
1517
1518int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001519mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001520{
1521 Session *s;
1522 char *tty;
1523
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001524 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001525
1526 tty = buffer_get_string(m, NULL);
1527 if ((s = session_by_tty(tty)) != NULL)
1528 mm_session_close(s);
1529 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001530 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001531 return (0);
1532}
1533
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001534int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001535mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001536{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001537 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001538 int res, status;
1539
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001540 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001541
1542 /* The child is terminating */
1543 session_destroy_all(&mm_session_close);
1544
Darren Tucker52358d62008-03-11 22:58:25 +11001545#ifdef USE_PAM
1546 if (options.use_pam)
1547 sshpam_cleanup();
1548#endif
1549
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001550 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001551 if (errno != EINTR)
1552 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001553
1554 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1555
1556 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001557 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001558}
1559
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001560#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001561/* Report that an audit event occurred */
1562int
1563mm_answer_audit_event(int socket, Buffer *m)
1564{
1565 ssh_audit_event_t event;
1566
1567 debug3("%s entering", __func__);
1568
1569 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001570 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001571 case SSH_AUTH_FAIL_PUBKEY:
1572 case SSH_AUTH_FAIL_HOSTBASED:
1573 case SSH_AUTH_FAIL_GSSAPI:
1574 case SSH_LOGIN_EXCEED_MAXTRIES:
1575 case SSH_LOGIN_ROOT_DENIED:
1576 case SSH_CONNECTION_CLOSE:
1577 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001578 audit_event(event);
1579 break;
1580 default:
1581 fatal("Audit event type %d not permitted", event);
1582 }
1583
1584 return (0);
1585}
1586
1587int
1588mm_answer_audit_command(int socket, Buffer *m)
1589{
1590 u_int len;
1591 char *cmd;
1592
1593 debug3("%s entering", __func__);
1594 cmd = buffer_get_string(m, &len);
1595 /* sanity check command, if so how? */
1596 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001597 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001598 return (0);
1599}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001600#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001601
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001602void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001603monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001604{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001605 struct ssh *ssh = active_state; /* XXX */
1606 struct kex *kex;
1607 int r;
1608
1609 debug3("%s: packet_set_state", __func__);
1610 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1611 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1612 sshbuf_free(child_state);
1613 child_state = NULL;
1614
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001615 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001616 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001617#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001618 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1619 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +00001620 kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
1621 kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
1622 kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001623 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1624 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001625# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001626 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001627# endif
Damien Miller773dda22015-01-30 23:10:17 +11001628#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001629 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1630 kex->load_host_public_key=&get_hostkey_public_by_type;
1631 kex->load_host_private_key=&get_hostkey_private_by_type;
1632 kex->host_key_index=&get_hostkey_index;
1633 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001634 }
1635
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001636 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001637 if (options.compression) {
1638 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1639 (ssh_packet_comp_alloc_func *)mm_zalloc,
1640 (ssh_packet_comp_free_func *)mm_zfree);
1641 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001642}
1643
1644/* This function requries careful sanity checking */
1645
1646void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001647mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001648{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001649 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001650
markus@openbsd.org091c3022015-01-19 19:52:16 +00001651 if ((child_state = sshbuf_new()) == NULL)
1652 fatal("%s: sshbuf_new failed", __func__);
1653 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1654 child_state);
1655 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001656}
1657
1658
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001659/* XXX */
1660
1661#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001662 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001663 fatal("fcntl(%d, F_SETFD)", x); \
1664} while (0)
1665
1666static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001667monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001668{
Damien Miller8f0bf232011-06-20 14:42:23 +10001669 int pair[2];
1670
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001671 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001672 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001673 FD_CLOSEONEXEC(pair[0]);
1674 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001675 mon->m_recvfd = pair[0];
1676 mon->m_sendfd = pair[1];
1677
1678 if (do_logfds) {
1679 if (pipe(pair) == -1)
1680 fatal("%s: pipe: %s", __func__, strerror(errno));
1681 FD_CLOSEONEXEC(pair[0]);
1682 FD_CLOSEONEXEC(pair[1]);
1683 mon->m_log_recvfd = pair[0];
1684 mon->m_log_sendfd = pair[1];
1685 } else
1686 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001687}
1688
1689#define MM_MEMSIZE 65536
1690
1691struct monitor *
1692monitor_init(void)
1693{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001694 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001695 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001696
Damien Miller07d86be2006-03-26 14:19:21 +11001697 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001698
Damien Miller8f0bf232011-06-20 14:42:23 +10001699 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001700
1701 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001702 if (options.compression) {
1703 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1704 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001705
Damien Miller2d6b8332002-06-21 15:59:49 +10001706 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001707 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1708 (ssh_packet_comp_alloc_func *)mm_zalloc,
1709 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001710 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001711
1712 return mon;
1713}
1714
1715void
1716monitor_reinit(struct monitor *mon)
1717{
Damien Miller8f0bf232011-06-20 14:42:23 +10001718 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001719}
Darren Tucker0efd1552003-08-26 11:49:55 +10001720
1721#ifdef GSSAPI
1722int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001723mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001724{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001725 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001726 OM_uint32 major;
1727 u_int len;
1728
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001729 if (!options.gss_authentication)
1730 fatal("%s: GSSAPI authentication not enabled", __func__);
1731
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001732 goid.elements = buffer_get_string(m, &len);
1733 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001734
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001735 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001736
Darren Tuckera627d422013-06-02 07:31:17 +10001737 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001738
1739 buffer_clear(m);
1740 buffer_put_int(m, major);
1741
Damien Miller6fd6def2005-11-05 15:07:05 +11001742 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001743
1744 /* Now we have a context, enable the step */
1745 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1746
1747 return (0);
1748}
1749
1750int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001751mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001752{
1753 gss_buffer_desc in;
1754 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001755 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001756 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001757 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001758
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001759 if (!options.gss_authentication)
1760 fatal("%s: GSSAPI authentication not enabled", __func__);
1761
Darren Tucker600ad8d2003-08-26 12:10:48 +10001762 in.value = buffer_get_string(m, &len);
1763 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001764 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001765 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001766
1767 buffer_clear(m);
1768 buffer_put_int(m, major);
1769 buffer_put_string(m, out.value, out.length);
1770 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001771 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001772
1773 gss_release_buffer(&minor, &out);
1774
Damien Miller6fd6def2005-11-05 15:07:05 +11001775 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001776 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1777 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001778 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001779 }
1780 return (0);
1781}
1782
1783int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001784mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001785{
1786 gss_buffer_desc gssbuf, mic;
1787 OM_uint32 ret;
1788 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001789
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001790 if (!options.gss_authentication)
1791 fatal("%s: GSSAPI authentication not enabled", __func__);
1792
Damien Miller0425d402003-11-17 22:18:21 +11001793 gssbuf.value = buffer_get_string(m, &len);
1794 gssbuf.length = len;
1795 mic.value = buffer_get_string(m, &len);
1796 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001797
Damien Miller0425d402003-11-17 22:18:21 +11001798 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001799
Darren Tuckera627d422013-06-02 07:31:17 +10001800 free(gssbuf.value);
1801 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001802
Damien Miller0425d402003-11-17 22:18:21 +11001803 buffer_clear(m);
1804 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001805
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001806 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001807
Damien Miller0425d402003-11-17 22:18:21 +11001808 if (!GSS_ERROR(ret))
1809 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001810
Damien Miller0425d402003-11-17 22:18:21 +11001811 return (0);
1812}
1813
1814int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001815mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001816{
1817 int authenticated;
1818
djm@openbsd.org7fd0ea82016-08-30 07:50:21 +00001819 if (!options.gss_authentication)
1820 fatal("%s: GSSAPI authentication not enabled", __func__);
1821
Darren Tucker0efd1552003-08-26 11:49:55 +10001822 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1823
1824 buffer_clear(m);
1825 buffer_put_int(m, authenticated);
1826
1827 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001828 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001829
Damien Miller6fd6def2005-11-05 15:07:05 +11001830 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001831
1832 /* Monitor loop will terminate if authenticated */
1833 return (authenticated);
1834}
1835#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11001836