blob: 6ee29112836554ea9514fe87d6c6645649cf23b6 [file] [log] [blame]
markus@openbsd.org091c3022015-01-19 19:52:16 +00001/* $OpenBSD: monitor.c,v 1.139 2015/01/19 19:52:16 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 Miller8dbffe72006-08-05 11:02:17 +100031#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100032#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100033#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110034#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000035
Darren Tucker39972492006-07-12 22:22:46 +100036#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100037#include <fcntl.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 Millere7a1e5c2006-08-05 11:34:19 +100043#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100044#include <string.h>
Damien Miller86687062014-07-02 15:28:02 +100045#include <stdarg.h>
46#include <stdio.h>
Damien Miller607aede2006-09-01 15:48:19 +100047#include <unistd.h>
Damien Miller8f0bf232011-06-20 14:42:23 +100048#ifdef HAVE_POLL_H
49#include <poll.h>
50#else
51# ifdef HAVE_SYS_POLL_H
52# include <sys/poll.h>
53# endif
54#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000055
56#ifdef SKEY
57#include <skey.h>
58#endif
59
Damien Miller1f0311c2014-05-15 14:24:09 +100060#ifdef WITH_OPENSSL
Damien Miller03e20032006-03-15 11:16:59 +110061#include <openssl/dh.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100062#endif
Damien Miller03e20032006-03-15 11:16:59 +110063
Damien Millerb84886b2008-05-19 15:05:07 +100064#include "openbsd-compat/sys-queue.h"
Damien Miller8f0bf232011-06-20 14:42:23 +100065#include "atomicio.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000067#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100068#include "key.h"
69#include "buffer.h"
70#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100072#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000073#include "kex.h"
74#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000075#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
76#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000077#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000078#define TARGET_OS_MAC 1
79#else
80#include "zlib.h"
81#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000082#include "packet.h"
83#include "auth-options.h"
84#include "sshpty.h"
85#include "channels.h"
86#include "session.h"
87#include "sshlogin.h"
88#include "canohost.h"
89#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100090#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000091#include "servconf.h"
92#include "monitor.h"
93#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100094#ifdef GSSAPI
95#include "ssh-gss.h"
96#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000097#include "monitor_wrap.h"
98#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000099#include "compat.h"
100#include "ssh2.h"
Darren Tuckerb422afa2009-06-21 18:58:46 +1000101#include "roaming.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000102#include "authfd.h"
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000103#include "match.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000104#include "ssherr.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000105
Darren Tucker0efd1552003-08-26 11:49:55 +1000106#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +1000107static Gssctxt *gsscontext = NULL;
108#endif
109
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000110/* Imports */
111extern ServerOptions options;
112extern u_int utmp_len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000113extern u_char session_id[];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000114extern Buffer auth_debug;
115extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000116extern Buffer loginmsg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000117
118/* State exported from the child */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000119static struct sshbuf *child_state;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000120
Damien Miller469954d2003-06-18 20:25:33 +1000121/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000122
123int mm_answer_moduli(int, Buffer *);
124int mm_answer_sign(int, Buffer *);
125int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000126int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000127int mm_answer_authserv(int, Buffer *);
128int mm_answer_authpassword(int, Buffer *);
129int mm_answer_bsdauthquery(int, Buffer *);
130int mm_answer_bsdauthrespond(int, Buffer *);
131int mm_answer_skeyquery(int, Buffer *);
132int mm_answer_skeyrespond(int, Buffer *);
133int mm_answer_keyallowed(int, Buffer *);
134int mm_answer_keyverify(int, Buffer *);
135int mm_answer_pty(int, Buffer *);
136int mm_answer_pty_cleanup(int, Buffer *);
137int mm_answer_term(int, Buffer *);
138int mm_answer_rsa_keyallowed(int, Buffer *);
139int mm_answer_rsa_challenge(int, Buffer *);
140int mm_answer_rsa_response(int, Buffer *);
141int mm_answer_sesskey(int, Buffer *);
142int mm_answer_sessid(int, Buffer *);
143
Damien Miller79418552002-04-23 20:28:48 +1000144#ifdef USE_PAM
145int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000146int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000147int mm_answer_pam_init_ctx(int, Buffer *);
148int mm_answer_pam_query(int, Buffer *);
149int mm_answer_pam_respond(int, Buffer *);
150int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000151#endif
152
Darren Tucker0efd1552003-08-26 11:49:55 +1000153#ifdef GSSAPI
154int mm_answer_gss_setup_ctx(int, Buffer *);
155int mm_answer_gss_accept_ctx(int, Buffer *);
156int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100157int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000158#endif
Damien Miller25162f22002-09-12 09:47:29 +1000159
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100160#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100161int mm_answer_audit_event(int, Buffer *);
162int mm_answer_audit_command(int, Buffer *);
163#endif
164
Damien Miller8f0bf232011-06-20 14:42:23 +1000165static int monitor_read_log(struct monitor *);
166
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000167static Authctxt *authctxt;
Damien Miller1f0311c2014-05-15 14:24:09 +1000168
169#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000170static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
Damien Miller1f0311c2014-05-15 14:24:09 +1000171#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000172
173/* local state for key verify */
174static u_char *key_blob = NULL;
175static u_int key_bloblen = 0;
176static int key_blobtype = MM_NOKEY;
Damien Millera10f5612002-09-12 09:49:15 +1000177static char *hostbased_cuser = NULL;
178static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000179static char *auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100180static char *auth_submethod = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000181static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000182static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000183static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000184
185struct mon_table {
186 enum monitor_reqtype type;
187 int flags;
188 int (*f)(int, Buffer *);
189};
190
191#define MON_ISAUTH 0x0004 /* Required for Authentication */
192#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
193#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100194#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000195
196#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
197
198#define MON_PERMIT 0x1000 /* Request is permitted */
199
200struct mon_table mon_dispatch_proto20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000201#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000202 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000203#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
205 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
206 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000207 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000208 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000209#ifdef USE_PAM
210 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000211 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000212 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
213 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
214 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
215 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000216#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100217#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100218 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100219#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000220#ifdef BSD_AUTH
221 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100222 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000223#endif
224#ifdef SKEY
225 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
226 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
227#endif
228 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
229 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000230#ifdef GSSAPI
231 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
232 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
233 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100234 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000235#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000236 {0, 0, NULL}
237};
238
239struct mon_table mon_dispatch_postauth20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000240#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000241 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000242#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
244 {MONITOR_REQ_PTY, 0, mm_answer_pty},
245 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
246 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100247#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100248 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
249 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
250#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000251 {0, 0, NULL}
252};
253
254struct mon_table mon_dispatch_proto15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000255#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000256 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
257 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
258 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
259 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller7a8f5b32006-03-31 23:14:23 +1100260 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_rsa_keyallowed},
261 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_keyallowed},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000262 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
263 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
264#ifdef BSD_AUTH
265 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100266 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000267#endif
268#ifdef SKEY
269 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
270 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
271#endif
Damien Millera33501b2002-05-08 12:24:42 +1000272#ifdef USE_PAM
273 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000274 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000275 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
276 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
277 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
278 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Damien Millera33501b2002-05-08 12:24:42 +1000279#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100280#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100281 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100282#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000283#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000284 {0, 0, NULL}
285};
286
287struct mon_table mon_dispatch_postauth15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000288#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000289 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
290 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
291 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100292#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100293 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker5965ae12006-09-17 12:00:13 +1000294 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT|MON_ONCE, mm_answer_audit_command},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100295#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000296#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000297 {0, 0, NULL}
298};
299
300struct mon_table *mon_dispatch;
301
302/* Specifies if a certain message is allowed at the moment */
303
304static void
305monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
306{
307 while (ent->f != NULL) {
308 if (ent->type == type) {
309 ent->flags &= ~MON_PERMIT;
310 ent->flags |= permit ? MON_PERMIT : 0;
311 return;
312 }
313 ent++;
314 }
315}
316
317static void
318monitor_permit_authentications(int permit)
319{
320 struct mon_table *ent = mon_dispatch;
321
322 while (ent->f != NULL) {
323 if (ent->flags & MON_AUTH) {
324 ent->flags &= ~MON_PERMIT;
325 ent->flags |= permit ? MON_PERMIT : 0;
326 }
327 ent++;
328 }
329}
330
Darren Tucker3e33cec2003-10-02 16:12:36 +1000331void
332monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000333{
334 struct mon_table *ent;
Damien Miller15b05cf2012-12-03 09:53:20 +1100335 int authenticated = 0, partial = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000336
337 debug3("preauth child monitor started");
338
Damien Miller8f0bf232011-06-20 14:42:23 +1000339 close(pmonitor->m_recvfd);
340 close(pmonitor->m_log_sendfd);
341 pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
342
Darren Tucker3e33cec2003-10-02 16:12:36 +1000343 authctxt = _authctxt;
344 memset(authctxt, 0, sizeof(*authctxt));
345
Darren Tuckerde0de392005-03-31 23:52:04 +1000346 authctxt->loginmsg = &loginmsg;
347
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000348 if (compat20) {
349 mon_dispatch = mon_dispatch_proto20;
350
351 /* Permit requests for moduli and signatures */
352 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
353 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
354 } else {
355 mon_dispatch = mon_dispatch_proto15;
356
357 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
358 }
359
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000360 /* The first few requests do not require asynchronous access */
361 while (!authenticated) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100362 partial = 0;
Damien Miller7a8f5b32006-03-31 23:14:23 +1100363 auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100364 auth_submethod = NULL;
Darren Tuckerfbba7352006-11-07 23:16:08 +1100365 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Damien Millera6e3f012012-11-04 23:21:40 +1100366
367 /* Special handling for multiple required authentications */
368 if (options.num_auth_methods != 0) {
369 if (!compat20)
370 fatal("AuthenticationMethods is not supported"
371 "with SSH protocol 1");
372 if (authenticated &&
373 !auth2_update_methods_lists(authctxt,
Damien Miller91a55f22013-04-23 15:18:10 +1000374 auth_method, auth_submethod)) {
Damien Millera6e3f012012-11-04 23:21:40 +1100375 debug3("%s: method %s: partial", __func__,
376 auth_method);
377 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100378 partial = 1;
Damien Millera6e3f012012-11-04 23:21:40 +1100379 }
380 }
381
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000382 if (authenticated) {
383 if (!(ent->flags & MON_AUTHDECIDE))
384 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000385 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000386 if (authctxt->pw->pw_uid == 0 &&
387 !auth_root_allowed(auth_method))
388 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000389#ifdef USE_PAM
390 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100391 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000392 Buffer m;
393
394 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100395 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000396 MONITOR_REQ_PAM_ACCOUNT, &m);
397 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
398 buffer_free(&m);
399 }
400#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000401 }
Damien Miller7a8f5b32006-03-31 23:14:23 +1100402 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100403 auth_log(authctxt, authenticated, partial,
Darren Tucker0acca372013-06-02 07:41:51 +1000404 auth_method, auth_submethod);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000405 if (!authenticated)
406 authctxt->failures++;
407 }
408 }
409
410 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000411 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100412 if (strcmp(auth_method, "unknown") == 0)
413 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000414
415 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000416 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000417
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000418 mm_get_keystate(pmonitor);
Damien Miller8f0bf232011-06-20 14:42:23 +1000419
Damien Miller6a1937e2012-12-12 10:44:38 +1100420 /* Drain any buffered messages from the child */
421 while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
422 ;
423
Damien Miller8f0bf232011-06-20 14:42:23 +1000424 close(pmonitor->m_sendfd);
425 close(pmonitor->m_log_recvfd);
426 pmonitor->m_sendfd = pmonitor->m_log_recvfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000427}
428
Damien Millerbe64d432003-05-14 19:31:12 +1000429static void
430monitor_set_child_handler(pid_t pid)
431{
432 monitor_child_pid = pid;
433}
434
435static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000436monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000437{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000438 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000439}
440
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000441void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000442monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000443{
Damien Miller8f0bf232011-06-20 14:42:23 +1000444 close(pmonitor->m_recvfd);
445 pmonitor->m_recvfd = -1;
446
Damien Millerbe64d432003-05-14 19:31:12 +1000447 monitor_set_child_handler(pmonitor->m_pid);
448 signal(SIGHUP, &monitor_child_handler);
449 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000450 signal(SIGINT, &monitor_child_handler);
Damien Miller146218a2014-08-27 04:11:55 +1000451#ifdef SIGXFSZ
452 signal(SIGXFSZ, SIG_IGN);
453#endif
Damien Millerbe64d432003-05-14 19:31:12 +1000454
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000455 if (compat20) {
456 mon_dispatch = mon_dispatch_postauth20;
457
458 /* Permit requests for moduli and signatures */
459 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
460 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
461 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000462 } else {
463 mon_dispatch = mon_dispatch_postauth15;
464 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
465 }
466 if (!no_pty_flag) {
467 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
468 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
469 }
470
471 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000472 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000473}
474
475void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000476monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000477{
Damien Miller2d6b8332002-06-21 15:59:49 +1000478 if (options.compression) {
479 /* The member allocation is not visible, so sync it */
480 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
481 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000482}
483
markus@openbsd.org091c3022015-01-19 19:52:16 +0000484/* Allocation functions for zlib */
485static void *
486mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
487{
488 size_t len = (size_t) size * ncount;
489 void *address;
490
491 if (len == 0 || ncount > SIZE_T_MAX / size)
492 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
493
494 address = mm_malloc(mm, len);
495
496 return (address);
497}
498
499static void
500mm_zfree(struct mm_master *mm, void *address)
501{
502 mm_free(mm, address);
503}
504
Damien Miller8f0bf232011-06-20 14:42:23 +1000505static int
506monitor_read_log(struct monitor *pmonitor)
507{
508 Buffer logmsg;
509 u_int len, level;
510 char *msg;
511
512 buffer_init(&logmsg);
513
514 /* Read length */
515 buffer_append_space(&logmsg, 4);
516 if (atomicio(read, pmonitor->m_log_recvfd,
517 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg)) {
518 if (errno == EPIPE) {
Damien Millera2876db2012-02-11 08:16:06 +1100519 buffer_free(&logmsg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000520 debug("%s: child log fd closed", __func__);
521 close(pmonitor->m_log_recvfd);
522 pmonitor->m_log_recvfd = -1;
523 return -1;
524 }
525 fatal("%s: log fd read: %s", __func__, strerror(errno));
526 }
527 len = buffer_get_int(&logmsg);
528 if (len <= 4 || len > 8192)
529 fatal("%s: invalid log message length %u", __func__, len);
530
531 /* Read severity, message */
532 buffer_clear(&logmsg);
533 buffer_append_space(&logmsg, len);
534 if (atomicio(read, pmonitor->m_log_recvfd,
535 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg))
536 fatal("%s: log fd read: %s", __func__, strerror(errno));
537
538 /* Log it */
539 level = buffer_get_int(&logmsg);
540 msg = buffer_get_string(&logmsg, NULL);
541 if (log_level_name(level) == NULL)
542 fatal("%s: invalid log level %u (corrupted message?)",
543 __func__, level);
544 do_log2(level, "%s [preauth]", msg);
545
546 buffer_free(&logmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000547 free(msg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000548
549 return 0;
550}
551
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000552int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000553monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000554 struct mon_table **pent)
555{
556 Buffer m;
557 int ret;
558 u_char type;
Damien Miller8f0bf232011-06-20 14:42:23 +1000559 struct pollfd pfd[2];
560
561 for (;;) {
Damien Miller1d2c4562014-02-04 11:18:20 +1100562 memset(&pfd, 0, sizeof(pfd));
Damien Miller8f0bf232011-06-20 14:42:23 +1000563 pfd[0].fd = pmonitor->m_sendfd;
564 pfd[0].events = POLLIN;
565 pfd[1].fd = pmonitor->m_log_recvfd;
566 pfd[1].events = pfd[1].fd == -1 ? 0 : POLLIN;
Damien Miller7741ce82011-08-06 06:15:15 +1000567 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
568 if (errno == EINTR || errno == EAGAIN)
569 continue;
Damien Miller8f0bf232011-06-20 14:42:23 +1000570 fatal("%s: poll: %s", __func__, strerror(errno));
Damien Miller7741ce82011-08-06 06:15:15 +1000571 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000572 if (pfd[1].revents) {
573 /*
574 * Drain all log messages before processing next
575 * monitor request.
576 */
577 monitor_read_log(pmonitor);
578 continue;
579 }
580 if (pfd[0].revents)
581 break; /* Continues below */
582 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000583
584 buffer_init(&m);
585
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000586 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000587 type = buffer_get_char(&m);
588
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000589 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000590
591 while (ent->f != NULL) {
592 if (ent->type == type)
593 break;
594 ent++;
595 }
596
597 if (ent->f != NULL) {
598 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000599 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000600 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000601 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000602 buffer_free(&m);
603
604 /* The child may use this request only once, disable it */
605 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000606 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000607 type);
608 ent->flags &= ~MON_PERMIT;
609 }
610
611 if (pent != NULL)
612 *pent = ent;
613
614 return ret;
615 }
616
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000617 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000618
619 /* NOTREACHED */
620 return (-1);
621}
622
623/* allowed key state */
624static int
625monitor_allowed_key(u_char *blob, u_int bloblen)
626{
627 /* make sure key is allowed */
628 if (key_blob == NULL || key_bloblen != bloblen ||
Damien Millerea1651c2010-07-16 13:58:37 +1000629 timingsafe_bcmp(key_blob, blob, key_bloblen))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630 return (0);
631 return (1);
632}
633
634static void
635monitor_reset_key_state(void)
636{
637 /* reset state */
Darren Tuckera627d422013-06-02 07:31:17 +1000638 free(key_blob);
639 free(hostbased_cuser);
640 free(hostbased_chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000641 key_blob = NULL;
642 key_bloblen = 0;
643 key_blobtype = MM_NOKEY;
644 hostbased_cuser = NULL;
645 hostbased_chost = NULL;
646}
647
Damien Miller1f0311c2014-05-15 14:24:09 +1000648#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000649int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000650mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000651{
652 DH *dh;
653 int min, want, max;
654
655 min = buffer_get_int(m);
656 want = buffer_get_int(m);
657 max = buffer_get_int(m);
658
659 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000660 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000661 /* We need to check here, too, in case the child got corrupted */
662 if (max < min || want < min || max < want)
663 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000664 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000665
666 buffer_clear(m);
667
668 dh = choose_dh(min, want, max);
669 if (dh == NULL) {
670 buffer_put_char(m, 0);
671 return (0);
672 } else {
673 /* Send first bignum */
674 buffer_put_char(m, 1);
675 buffer_put_bignum2(m, dh->p);
676 buffer_put_bignum2(m, dh->g);
677
678 DH_free(dh);
679 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000680 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000681 return (0);
682}
Damien Miller1f0311c2014-05-15 14:24:09 +1000683#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000684
685int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000686mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000687{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000688 extern int auth_sock; /* XXX move to state struct? */
689 struct sshkey *key;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000690 u_char *p;
691 u_char *signature;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000692 size_t datlen, siglen;
693 int r, keyid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000694
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000695 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000696
djm@openbsd.org141efe42015-01-14 20:05:27 +0000697 if ((r = sshbuf_get_u32(m, &keyid)) != 0 ||
698 (r = sshbuf_get_string(m, &p, &datlen)) != 0)
699 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000700
Damien Millera63128d2006-03-15 12:08:28 +1100701 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000702 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
703 * SHA384 (48 bytes) and SHA512 (64 bytes).
Damien Millera63128d2006-03-15 12:08:28 +1100704 */
Damien Miller041ab7c2010-09-10 11:23:34 +1000705 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64)
djm@openbsd.org141efe42015-01-14 20:05:27 +0000706 fatal("%s: data length incorrect: %zu", __func__, datlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000707
Ben Lindstromf67e0772002-06-06 20:58:19 +0000708 /* save session id, it will be passed on the first call */
709 if (session_id2_len == 0) {
710 session_id2_len = datlen;
711 session_id2 = xmalloc(session_id2_len);
712 memcpy(session_id2, p, session_id2_len);
713 }
714
Damien Miller85b45e02013-07-20 13:21:52 +1000715 if ((key = get_hostkey_by_index(keyid)) != NULL) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000716 if ((r = sshkey_sign(key, &signature, &siglen, p, datlen,
717 datafellows)) != 0)
718 fatal("%s: sshkey_sign failed: %s",
719 __func__, ssh_err(r));
Damien Miller85b45e02013-07-20 13:21:52 +1000720 } else if ((key = get_hostkey_public_by_index(keyid)) != NULL &&
djm@openbsd.org141efe42015-01-14 20:05:27 +0000721 auth_sock > 0) {
722 if ((r = ssh_agent_sign(auth_sock, key, &signature, &siglen,
723 p, datlen, datafellows)) != 0) {
724 fatal("%s: ssh_agent_sign failed: %s",
725 __func__, ssh_err(r));
726 }
Damien Miller85b45e02013-07-20 13:21:52 +1000727 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000728 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000729
djm@openbsd.org141efe42015-01-14 20:05:27 +0000730 debug3("%s: signature %p(%zu)", __func__, signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000731
djm@openbsd.org141efe42015-01-14 20:05:27 +0000732 sshbuf_reset(m);
733 if ((r = sshbuf_put_string(m, signature, siglen)) != 0)
734 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000735
Darren Tuckera627d422013-06-02 07:31:17 +1000736 free(p);
737 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000738
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000739 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000740
741 /* Turn on permissions for getpwnam */
742 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
743
744 return (0);
745}
746
747/* Retrieves the password entry and also checks if the user is permitted */
748
749int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000750mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000751{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000752 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000753 struct passwd *pwent;
754 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000755 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000757 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000758
759 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000760 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000761
Darren Tuckerb09b6772004-06-22 15:06:46 +1000762 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000763
Darren Tuckerb09b6772004-06-22 15:06:46 +1000764 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000765
Darren Tuckerb09b6772004-06-22 15:06:46 +1000766 authctxt->user = xstrdup(username);
767 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000768 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000769
770 buffer_clear(m);
771
772 if (pwent == NULL) {
773 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100774 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000775 goto out;
776 }
777
778 allowed = 1;
779 authctxt->pw = pwent;
780 authctxt->valid = 1;
781
782 buffer_put_char(m, 1);
783 buffer_put_string(m, pwent, sizeof(struct passwd));
784 buffer_put_cstring(m, pwent->pw_name);
785 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000786#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000787 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000788#endif
789#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000790 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000791#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000792 buffer_put_cstring(m, pwent->pw_dir);
793 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100794
795 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100796 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000797
798#define M_CP_STROPT(x) do { \
799 if (options.x != NULL) \
800 buffer_put_cstring(m, options.x); \
801 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000802#define M_CP_STRARRAYOPT(x, nx) do { \
803 for (i = 0; i < options.nx; i++) \
804 buffer_put_cstring(m, options.x[i]); \
805 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000806 /* See comment in servconf.h */
807 COPY_MATCH_STRING_OPTS();
808#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000809#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100810
811 /* Create valid auth method lists */
812 if (compat20 && auth2_setup_methods_lists(authctxt) != 0) {
813 /*
814 * The monitor will continue long enough to let the child
815 * run to it's packet_disconnect(), but it must not allow any
816 * authentication to succeed.
817 */
818 debug("%s: no valid authentication method lists", __func__);
819 }
820
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000821 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000822 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000823
824 /* For SSHv1 allow authentication now */
825 if (!compat20)
826 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000827 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000828 /* Allow service/style information on the auth context */
829 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000830 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
831 }
Damien Millera33501b2002-05-08 12:24:42 +1000832#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000833 if (options.use_pam)
834 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000835#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000836
837 return (0);
838}
839
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000840int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000841{
842 char *banner;
843
844 buffer_clear(m);
845 banner = auth2_read_banner();
846 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000847 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000848 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000849
850 return (0);
851}
852
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000853int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000854mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000855{
856 monitor_permit_authentications(1);
857
858 authctxt->service = buffer_get_string(m, NULL);
859 authctxt->style = buffer_get_string(m, NULL);
860 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000861 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000862
863 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000864 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000865 authctxt->style = NULL;
866 }
867
868 return (0);
869}
870
871int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000872mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000873{
874 static int call_count;
875 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000876 int authenticated;
877 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000878
879 passwd = buffer_get_string(m, &plen);
880 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000881 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000882 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100883 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000884 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885
886 buffer_clear(m);
887 buffer_put_int(m, authenticated);
888
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000889 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000890 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000891
892 call_count++;
893 if (plen == 0 && call_count == 1)
894 auth_method = "none";
895 else
896 auth_method = "password";
897
898 /* Causes monitor loop to terminate if authenticated */
899 return (authenticated);
900}
901
902#ifdef BSD_AUTH
903int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000904mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000905{
906 char *name, *infotxt;
907 u_int numprompts;
908 u_int *echo_on;
909 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100910 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000911
Damien Millerb7df3af2003-02-24 11:55:46 +1100912 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
913 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000914
915 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100916 buffer_put_int(m, success);
917 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000918 buffer_put_cstring(m, prompts[0]);
919
Damien Millerb7df3af2003-02-24 11:55:46 +1100920 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000921 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000922
Damien Millerb7df3af2003-02-24 11:55:46 +1100923 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000924 free(name);
925 free(infotxt);
926 free(prompts);
927 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000928 }
929
930 return (0);
931}
932
933int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000934mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000935{
936 char *response;
937 int authok;
938
939 if (authctxt->as == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000940 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000941
942 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000943 authok = options.challenge_response_authentication &&
944 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000945 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000946 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000947 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000948
949 buffer_clear(m);
950 buffer_put_int(m, authok);
951
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000952 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000953 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000954
Damien Miller91a55f22013-04-23 15:18:10 +1000955 if (compat20) {
956 auth_method = "keyboard-interactive";
957 auth_submethod = "bsdauth";
958 } else
Damien Millera6e3f012012-11-04 23:21:40 +1100959 auth_method = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000960
961 return (authok != 0);
962}
963#endif
964
965#ifdef SKEY
966int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000967mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000968{
969 struct skey skey;
970 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100971 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000972
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000973 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
974 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000975
976 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100977 buffer_put_int(m, success);
978 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000979 buffer_put_cstring(m, challenge);
980
Damien Millerb7df3af2003-02-24 11:55:46 +1100981 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000982 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000983
984 return (0);
985}
986
987int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000988mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000989{
990 char *response;
991 int authok;
992
993 response = buffer_get_string(m, NULL);
994
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000995 authok = (options.challenge_response_authentication &&
996 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000997 skey_haskey(authctxt->pw->pw_name) == 0 &&
998 skey_passcheck(authctxt->pw->pw_name, response) != -1);
999
Darren Tuckerf60845f2013-06-02 08:07:31 +10001000 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001001
1002 buffer_clear(m);
1003 buffer_put_int(m, authok);
1004
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001005 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001006 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001007
1008 auth_method = "skey";
1009
1010 return (authok != 0);
1011}
1012#endif
1013
Damien Miller79418552002-04-23 20:28:48 +10001014#ifdef USE_PAM
1015int
Darren Tucker7eda5922004-06-22 13:22:50 +10001016mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +10001017{
Damien Miller4e448a32003-05-14 15:11:48 +10001018 if (!options.use_pam)
1019 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1020
Darren Tuckerdbf7a742004-03-08 23:04:06 +11001021 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +10001022
Damien Miller1f499fd2003-08-25 13:08:49 +10001023 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
1024
Damien Miller79418552002-04-23 20:28:48 +10001025 return (0);
1026}
Damien Miller4f9f42a2003-05-10 19:28:02 +10001027
Damien Miller1f499fd2003-08-25 13:08:49 +10001028int
Darren Tucker7eda5922004-06-22 13:22:50 +10001029mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001030{
1031 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001032
Damien Miller1f499fd2003-08-25 13:08:49 +10001033 if (!options.use_pam)
1034 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1035
1036 ret = do_pam_account();
1037
1038 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001039 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001040
Darren Tucker7eda5922004-06-22 13:22:50 +10001041 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001042
1043 return (ret);
1044}
1045
Damien Miller4f9f42a2003-05-10 19:28:02 +10001046static void *sshpam_ctxt, *sshpam_authok;
1047extern KbdintDevice sshpam_device;
1048
1049int
Darren Tucker7eda5922004-06-22 13:22:50 +10001050mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001051{
1052
1053 debug3("%s", __func__);
1054 authctxt->user = buffer_get_string(m, NULL);
1055 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1056 sshpam_authok = NULL;
1057 buffer_clear(m);
1058 if (sshpam_ctxt != NULL) {
1059 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
1060 buffer_put_int(m, 1);
1061 } else {
1062 buffer_put_int(m, 0);
1063 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001064 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001065 return (0);
1066}
1067
1068int
Darren Tucker7eda5922004-06-22 13:22:50 +10001069mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001070{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001071 char *name = NULL, *info = NULL, **prompts = NULL;
1072 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001073 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001074
1075 debug3("%s", __func__);
1076 sshpam_authok = NULL;
1077 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1078 if (ret == 0 && num == 0)
1079 sshpam_authok = sshpam_ctxt;
1080 if (num > 1 || name == NULL || info == NULL)
1081 ret = -1;
1082 buffer_clear(m);
1083 buffer_put_int(m, ret);
1084 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001085 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001086 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001087 free(info);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001088 buffer_put_int(m, num);
1089 for (i = 0; i < num; ++i) {
1090 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001091 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001092 buffer_put_int(m, echo_on[i]);
1093 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001094 free(prompts);
1095 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001096 auth_method = "keyboard-interactive";
1097 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001098 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001099 return (0);
1100}
1101
1102int
Darren Tucker7eda5922004-06-22 13:22:50 +10001103mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001104{
1105 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001106 u_int i, num;
1107 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001108
1109 debug3("%s", __func__);
1110 sshpam_authok = NULL;
1111 num = buffer_get_int(m);
1112 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001113 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001114 for (i = 0; i < num; ++i)
1115 resp[i] = buffer_get_string(m, NULL);
1116 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1117 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001118 free(resp[i]);
1119 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001120 } else {
1121 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1122 }
1123 buffer_clear(m);
1124 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001125 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001126 auth_method = "keyboard-interactive";
1127 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001128 if (ret == 0)
1129 sshpam_authok = sshpam_ctxt;
1130 return (0);
1131}
1132
1133int
Darren Tucker7eda5922004-06-22 13:22:50 +10001134mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001135{
1136
1137 debug3("%s", __func__);
1138 (sshpam_device.free_ctx)(sshpam_ctxt);
1139 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001140 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001141 auth_method = "keyboard-interactive";
1142 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001143 return (sshpam_authok == sshpam_ctxt);
1144}
Damien Miller79418552002-04-23 20:28:48 +10001145#endif
1146
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001147int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001148mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001149{
1150 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001151 char *cuser, *chost;
1152 u_char *blob;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001153 u_int bloblen;
1154 enum mm_keytype type = 0;
1155 int allowed = 0;
1156
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001157 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001158
1159 type = buffer_get_int(m);
1160 cuser = buffer_get_string(m, NULL);
1161 chost = buffer_get_string(m, NULL);
1162 blob = buffer_get_string(m, &bloblen);
1163
1164 key = key_from_blob(blob, bloblen);
1165
1166 if ((compat20 && type == MM_RSAHOSTKEY) ||
1167 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001168 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001169
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001170 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001171
Damien Miller3e3b5142003-11-17 21:13:40 +11001172 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001173 /* These should not make it past the privsep child */
1174 if (key_type_plain(key->type) == KEY_RSA &&
1175 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1176 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1177
Darren Tucker47eede72005-03-14 23:08:12 +11001178 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001179 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001180 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001181 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001182 match_pattern_list(sshkey_ssh_name(key),
1183 options.pubkey_key_types,
1184 strlen(options.pubkey_key_types), 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001185 user_key_allowed(authctxt->pw, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001186 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001187 auth_method = "publickey";
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001188 if (options.pubkey_authentication && allowed != 1)
1189 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001190 break;
1191 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001192 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001193 match_pattern_list(sshkey_ssh_name(key),
1194 options.hostbased_key_types,
1195 strlen(options.hostbased_key_types), 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001196 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001197 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001198 pubkey_auth_info(authctxt, key,
1199 "client user \"%.100s\", client host \"%.100s\"",
1200 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001201 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001202 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001203#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001204 case MM_RSAHOSTKEY:
1205 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001206 allowed = options.rhosts_rsa_authentication &&
1207 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001208 cuser, chost, key);
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001209 if (options.rhosts_rsa_authentication && allowed != 1)
1210 auth_clear_options();
Damien Miller7a8f5b32006-03-31 23:14:23 +11001211 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001212 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001213#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001214 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001215 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001216 break;
1217 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001218 }
Damien Miller00111382003-03-10 11:21:17 +11001219 if (key != NULL)
1220 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001221
1222 /* clear temporarily storage (used by verify) */
1223 monitor_reset_key_state();
1224
1225 if (allowed) {
1226 /* Save temporarily for comparison in verify */
1227 key_blob = blob;
1228 key_bloblen = bloblen;
1229 key_blobtype = type;
1230 hostbased_cuser = cuser;
1231 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001232 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001233 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001234 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001235 free(blob);
1236 free(cuser);
1237 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001238 }
1239
1240 debug3("%s: key %p is %s",
Darren Tucker2784f1f2008-07-04 13:51:45 +10001241 __func__, key, allowed ? "allowed" : "not allowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001242
1243 buffer_clear(m);
1244 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001245 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001246
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001247 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001248
1249 if (type == MM_RSAHOSTKEY)
1250 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1251
1252 return (0);
1253}
1254
1255static int
1256monitor_valid_userblob(u_char *data, u_int datalen)
1257{
1258 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001259 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001260 u_int len;
1261 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001262
1263 buffer_init(&b);
1264 buffer_append(&b, data, datalen);
1265
1266 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001267 p = buffer_ptr(&b);
1268 len = buffer_len(&b);
1269 if ((session_id2 == NULL) ||
1270 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001271 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001272 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001273 buffer_consume(&b, session_id2_len);
1274 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001275 p = buffer_get_string(&b, &len);
1276 if ((session_id2 == NULL) ||
1277 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001278 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001279 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001280 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001281 }
1282 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1283 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001284 p = buffer_get_cstring(&b, NULL);
1285 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1286 authctxt->style ? ":" : "",
1287 authctxt->style ? authctxt->style : "");
1288 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001289 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001290 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001291 fail++;
1292 }
Darren Tuckera627d422013-06-02 07:31:17 +10001293 free(userstyle);
1294 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001295 buffer_skip_string(&b);
1296 if (datafellows & SSH_BUG_PKAUTH) {
1297 if (!buffer_get_char(&b))
1298 fail++;
1299 } else {
Damien Miller4ce189d2013-04-23 15:17:52 +10001300 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001301 if (strcmp("publickey", p) != 0)
1302 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001303 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001304 if (!buffer_get_char(&b))
1305 fail++;
1306 buffer_skip_string(&b);
1307 }
1308 buffer_skip_string(&b);
1309 if (buffer_len(&b) != 0)
1310 fail++;
1311 buffer_free(&b);
1312 return (fail == 0);
1313}
1314
1315static int
Damien Millera10f5612002-09-12 09:49:15 +10001316monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1317 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001318{
1319 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001320 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001321 u_int len;
1322 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001323
1324 buffer_init(&b);
1325 buffer_append(&b, data, datalen);
1326
Ben Lindstromf67e0772002-06-06 20:58:19 +00001327 p = buffer_get_string(&b, &len);
1328 if ((session_id2 == NULL) ||
1329 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001330 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001331 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001332 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001333
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001334 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1335 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001336 p = buffer_get_cstring(&b, NULL);
1337 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1338 authctxt->style ? ":" : "",
1339 authctxt->style ? authctxt->style : "");
1340 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001341 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001342 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001343 fail++;
1344 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001345 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001346 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001347 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001348 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001349 if (strcmp(p, "hostbased") != 0)
1350 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001351 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001352 buffer_skip_string(&b); /* pkalg */
1353 buffer_skip_string(&b); /* pkblob */
1354
1355 /* verify client host, strip trailing dot if necessary */
1356 p = buffer_get_string(&b, NULL);
1357 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1358 p[len - 1] = '\0';
1359 if (strcmp(p, chost) != 0)
1360 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001361 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001362
1363 /* verify client user */
1364 p = buffer_get_string(&b, NULL);
1365 if (strcmp(p, cuser) != 0)
1366 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001367 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001368
1369 if (buffer_len(&b) != 0)
1370 fail++;
1371 buffer_free(&b);
1372 return (fail == 0);
1373}
1374
1375int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001376mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377{
1378 Key *key;
1379 u_char *signature, *data, *blob;
1380 u_int signaturelen, datalen, bloblen;
1381 int verified = 0;
1382 int valid_data = 0;
1383
1384 blob = buffer_get_string(m, &bloblen);
1385 signature = buffer_get_string(m, &signaturelen);
1386 data = buffer_get_string(m, &datalen);
1387
1388 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001389 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001390 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001391
1392 key = key_from_blob(blob, bloblen);
1393 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001394 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001395
1396 switch (key_blobtype) {
1397 case MM_USERKEY:
1398 valid_data = monitor_valid_userblob(data, datalen);
1399 break;
1400 case MM_HOSTKEY:
1401 valid_data = monitor_valid_hostbasedblob(data, datalen,
1402 hostbased_cuser, hostbased_chost);
1403 break;
1404 default:
1405 valid_data = 0;
1406 break;
1407 }
1408 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001409 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001410
1411 verified = key_verify(key, signature, signaturelen, data, datalen);
1412 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001413 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001414
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001415 /* If auth was successful then record key to ensure it isn't reused */
1416 if (verified == 1)
1417 auth2_record_userkey(authctxt, key);
1418 else
1419 key_free(key);
1420
Darren Tuckera627d422013-06-02 07:31:17 +10001421 free(blob);
1422 free(signature);
1423 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001424
Ben Lindstrome1c09122002-06-23 00:38:24 +00001425 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1426
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001427 monitor_reset_key_state();
1428
1429 buffer_clear(m);
1430 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001431 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001432
Darren Tuckerfbba7352006-11-07 23:16:08 +11001433 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001434}
1435
1436static void
1437mm_record_login(Session *s, struct passwd *pw)
1438{
1439 socklen_t fromlen;
1440 struct sockaddr_storage from;
1441
1442 /*
1443 * Get IP address of client. If the connection is not a socket, let
1444 * the address be 0.0.0.0.
1445 */
1446 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001447 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001448 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001449 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001450 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001451 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001452 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001453 }
1454 }
1455 /* Record that there was a login on that tty from the remote host. */
1456 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
Damien Miller3a961dc2003-06-03 10:25:48 +10001457 get_remote_name_or_ip(utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001458 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001459}
1460
1461static void
1462mm_session_close(Session *s)
1463{
Damien Miller04bd8b02003-05-25 14:38:33 +10001464 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001465 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001466 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001467 session_pty_cleanup2(s);
1468 }
Damien Miller7207f642008-05-19 15:34:50 +10001469 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001470}
1471
1472int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001473mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001475 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001476 Session *s;
1477 int res, fd0;
1478
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001479 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001480
1481 buffer_clear(m);
1482 s = session_new();
1483 if (s == NULL)
1484 goto error;
1485 s->authctxt = authctxt;
1486 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001487 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001488 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1489 if (res == 0)
1490 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001491 pty_setowner(authctxt->pw, s->tty);
1492
1493 buffer_put_int(m, 1);
1494 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001495
1496 /* We need to trick ttyslot */
1497 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001498 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001499
1500 mm_record_login(s, authctxt->pw);
1501
1502 /* Now we can close the file descriptor again */
1503 close(0);
1504
Darren Tucker09991742004-07-17 17:05:14 +10001505 /* send messages generated by record_login */
1506 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1507 buffer_clear(&loginmsg);
1508
1509 mm_request_send(sock, MONITOR_ANS_PTY, m);
1510
Damien Miller54fd7cf2007-09-17 12:04:08 +10001511 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1512 mm_send_fd(sock, s->ttyfd) == -1)
1513 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001514
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001515 /* make sure nothing uses fd 0 */
1516 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001517 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001518 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001519 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001520
1521 /* slave is not needed */
1522 close(s->ttyfd);
1523 s->ttyfd = s->ptyfd;
1524 /* no need to dup() because nobody closes ptyfd */
1525 s->ptymaster = s->ptyfd;
1526
Damien Miller9ab00b42006-08-05 12:40:11 +10001527 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001528
1529 return (0);
1530
1531 error:
1532 if (s != NULL)
1533 mm_session_close(s);
1534 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001535 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001536 return (0);
1537}
1538
1539int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001540mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001541{
1542 Session *s;
1543 char *tty;
1544
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001545 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001546
1547 tty = buffer_get_string(m, NULL);
1548 if ((s = session_by_tty(tty)) != NULL)
1549 mm_session_close(s);
1550 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001551 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001552 return (0);
1553}
1554
Damien Miller1f0311c2014-05-15 14:24:09 +10001555#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001556int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001557mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001558{
1559 BIGNUM *p;
1560 int rsafail;
1561
1562 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001563 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001564
1565 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001566 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001567
1568 buffer_get_bignum2(m, p);
1569
1570 rsafail = ssh1_session_key(p);
1571
1572 buffer_clear(m);
1573 buffer_put_int(m, rsafail);
1574 buffer_put_bignum2(m, p);
1575
1576 BN_clear_free(p);
1577
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001578 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001579
1580 /* Turn on permissions for sessid passing */
1581 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1582
1583 return (0);
1584}
1585
1586int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001587mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001588{
1589 int i;
1590
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001591 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001592
1593 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001594 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001595 for (i = 0; i < 16; i++)
1596 session_id[i] = buffer_get_char(m);
1597
1598 /* Turn on permissions for getpwnam */
1599 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1600
1601 return (0);
1602}
1603
1604int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001605mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001606{
1607 BIGNUM *client_n;
1608 Key *key = NULL;
1609 u_char *blob = NULL;
1610 u_int blen = 0;
1611 int allowed = 0;
1612
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001613 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001614
Damien Miller7a8f5b32006-03-31 23:14:23 +11001615 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001616 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001617 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001618 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001619 buffer_get_bignum2(m, client_n);
1620 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1621 BN_clear_free(client_n);
1622 }
1623 buffer_clear(m);
1624 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001625 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001626
1627 /* clear temporarily storage (used by generate challenge) */
1628 monitor_reset_key_state();
1629
1630 if (allowed && key != NULL) {
1631 key->type = KEY_RSA; /* cheat for key_to_blob */
1632 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001633 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001634 buffer_put_string(m, blob, blen);
1635
1636 /* Save temporarily for comparison in verify */
1637 key_blob = blob;
1638 key_bloblen = blen;
1639 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001640 }
Damien Miller00111382003-03-10 11:21:17 +11001641 if (key != NULL)
1642 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001643
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001644 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001645
1646 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1647 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1648 return (0);
1649}
1650
1651int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001652mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001653{
1654 Key *key = NULL;
1655 u_char *blob;
1656 u_int blen;
1657
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001658 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001659
1660 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001661 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001662 blob = buffer_get_string(m, &blen);
1663 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001664 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001665 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001666 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001667 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001668 fatal("%s: received bad key", __func__);
Damien Miller923e8bb2009-02-14 16:33:31 +11001669 if (key->type != KEY_RSA)
1670 fatal("%s: received bad key type %d", __func__, key->type);
1671 key->type = KEY_RSA1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001672 if (ssh1_challenge)
1673 BN_clear_free(ssh1_challenge);
1674 ssh1_challenge = auth_rsa_generate_challenge(key);
1675
1676 buffer_clear(m);
1677 buffer_put_bignum2(m, ssh1_challenge);
1678
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001679 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001680 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001681
1682 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001683
Darren Tuckera627d422013-06-02 07:31:17 +10001684 free(blob);
Damien Miller00111382003-03-10 11:21:17 +11001685 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686 return (0);
1687}
1688
1689int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001690mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001691{
1692 Key *key = NULL;
1693 u_char *blob, *response;
1694 u_int blen, len;
1695 int success;
1696
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001697 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001698
1699 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001700 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001701 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001702 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001703
1704 blob = buffer_get_string(m, &blen);
1705 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001706 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001707 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001708 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001710 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001711 response = buffer_get_string(m, &len);
1712 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001713 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1715
Darren Tuckera627d422013-06-02 07:31:17 +10001716 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001717 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +10001718 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001719
1720 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1721
1722 /* reset state */
1723 BN_clear_free(ssh1_challenge);
1724 ssh1_challenge = NULL;
1725 monitor_reset_key_state();
1726
1727 buffer_clear(m);
1728 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001729 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001730
1731 return (success);
1732}
Damien Miller1f0311c2014-05-15 14:24:09 +10001733#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001734
1735int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001736mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001737{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001738 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001739 int res, status;
1740
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001741 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001742
1743 /* The child is terminating */
1744 session_destroy_all(&mm_session_close);
1745
Darren Tucker52358d62008-03-11 22:58:25 +11001746#ifdef USE_PAM
1747 if (options.use_pam)
1748 sshpam_cleanup();
1749#endif
1750
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001751 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001752 if (errno != EINTR)
1753 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001754
1755 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1756
1757 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001758 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001759}
1760
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001761#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001762/* Report that an audit event occurred */
1763int
1764mm_answer_audit_event(int socket, Buffer *m)
1765{
1766 ssh_audit_event_t event;
1767
1768 debug3("%s entering", __func__);
1769
1770 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001771 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001772 case SSH_AUTH_FAIL_PUBKEY:
1773 case SSH_AUTH_FAIL_HOSTBASED:
1774 case SSH_AUTH_FAIL_GSSAPI:
1775 case SSH_LOGIN_EXCEED_MAXTRIES:
1776 case SSH_LOGIN_ROOT_DENIED:
1777 case SSH_CONNECTION_CLOSE:
1778 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001779 audit_event(event);
1780 break;
1781 default:
1782 fatal("Audit event type %d not permitted", event);
1783 }
1784
1785 return (0);
1786}
1787
1788int
1789mm_answer_audit_command(int socket, Buffer *m)
1790{
1791 u_int len;
1792 char *cmd;
1793
1794 debug3("%s entering", __func__);
1795 cmd = buffer_get_string(m, &len);
1796 /* sanity check command, if so how? */
1797 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001798 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001799 return (0);
1800}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001801#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001802
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001803void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001804monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001805{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001806 struct ssh *ssh = active_state; /* XXX */
1807 struct kex *kex;
1808 int r;
1809
1810 debug3("%s: packet_set_state", __func__);
1811 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1812 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1813 sshbuf_free(child_state);
1814 child_state = NULL;
1815
1816 if ((kex = ssh->kex) != 0) {
1817 /* XXX set callbacks */
1818 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1819 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
1820 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1821 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
1822 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
1823 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1824 kex->load_host_public_key=&get_hostkey_public_by_type;
1825 kex->load_host_private_key=&get_hostkey_private_by_type;
1826 kex->host_key_index=&get_hostkey_index;
1827 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001828 }
1829
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001830 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001831 if (options.compression) {
1832 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1833 (ssh_packet_comp_alloc_func *)mm_zalloc,
1834 (ssh_packet_comp_free_func *)mm_zfree);
1835 }
Damien Millerc31a0cd2014-05-15 14:37:39 +10001836
Darren Tucker5f96f3b2013-05-16 20:29:28 +10001837 if (options.rekey_limit || options.rekey_interval)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001838 ssh_packet_set_rekey_limits(ssh,
1839 (u_int32_t)options.rekey_limit,
Darren Tucker5f96f3b2013-05-16 20:29:28 +10001840 (time_t)options.rekey_interval);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001841}
1842
1843/* This function requries careful sanity checking */
1844
1845void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001846mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001847{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001848 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001849
markus@openbsd.org091c3022015-01-19 19:52:16 +00001850 if ((child_state = sshbuf_new()) == NULL)
1851 fatal("%s: sshbuf_new failed", __func__);
1852 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1853 child_state);
1854 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001855}
1856
1857
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001858/* XXX */
1859
1860#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001861 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001862 fatal("fcntl(%d, F_SETFD)", x); \
1863} while (0)
1864
1865static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001866monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001867{
Damien Miller8f0bf232011-06-20 14:42:23 +10001868 int pair[2];
1869
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001870 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001871 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001872 FD_CLOSEONEXEC(pair[0]);
1873 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001874 mon->m_recvfd = pair[0];
1875 mon->m_sendfd = pair[1];
1876
1877 if (do_logfds) {
1878 if (pipe(pair) == -1)
1879 fatal("%s: pipe: %s", __func__, strerror(errno));
1880 FD_CLOSEONEXEC(pair[0]);
1881 FD_CLOSEONEXEC(pair[1]);
1882 mon->m_log_recvfd = pair[0];
1883 mon->m_log_sendfd = pair[1];
1884 } else
1885 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001886}
1887
1888#define MM_MEMSIZE 65536
1889
1890struct monitor *
1891monitor_init(void)
1892{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001893 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001894 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001895
Damien Miller07d86be2006-03-26 14:19:21 +11001896 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001897
Damien Miller8f0bf232011-06-20 14:42:23 +10001898 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001899
1900 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001901 if (options.compression) {
1902 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1903 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001904
Damien Miller2d6b8332002-06-21 15:59:49 +10001905 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001906 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1907 (ssh_packet_comp_alloc_func *)mm_zalloc,
1908 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001909 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001910
1911 return mon;
1912}
1913
1914void
1915monitor_reinit(struct monitor *mon)
1916{
Damien Miller8f0bf232011-06-20 14:42:23 +10001917 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001918}
Darren Tucker0efd1552003-08-26 11:49:55 +10001919
1920#ifdef GSSAPI
1921int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001922mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001923{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001924 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001925 OM_uint32 major;
1926 u_int len;
1927
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001928 goid.elements = buffer_get_string(m, &len);
1929 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001930
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001931 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001932
Darren Tuckera627d422013-06-02 07:31:17 +10001933 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001934
1935 buffer_clear(m);
1936 buffer_put_int(m, major);
1937
Damien Miller6fd6def2005-11-05 15:07:05 +11001938 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001939
1940 /* Now we have a context, enable the step */
1941 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1942
1943 return (0);
1944}
1945
1946int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001947mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001948{
1949 gss_buffer_desc in;
1950 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001951 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001952 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001953 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001954
Darren Tucker600ad8d2003-08-26 12:10:48 +10001955 in.value = buffer_get_string(m, &len);
1956 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001957 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001958 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001959
1960 buffer_clear(m);
1961 buffer_put_int(m, major);
1962 buffer_put_string(m, out.value, out.length);
1963 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001964 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001965
1966 gss_release_buffer(&minor, &out);
1967
Damien Miller6fd6def2005-11-05 15:07:05 +11001968 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001969 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1970 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001971 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001972 }
1973 return (0);
1974}
1975
1976int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001977mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001978{
1979 gss_buffer_desc gssbuf, mic;
1980 OM_uint32 ret;
1981 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001982
Damien Miller0425d402003-11-17 22:18:21 +11001983 gssbuf.value = buffer_get_string(m, &len);
1984 gssbuf.length = len;
1985 mic.value = buffer_get_string(m, &len);
1986 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001987
Damien Miller0425d402003-11-17 22:18:21 +11001988 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001989
Darren Tuckera627d422013-06-02 07:31:17 +10001990 free(gssbuf.value);
1991 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001992
Damien Miller0425d402003-11-17 22:18:21 +11001993 buffer_clear(m);
1994 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001995
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001996 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001997
Damien Miller0425d402003-11-17 22:18:21 +11001998 if (!GSS_ERROR(ret))
1999 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11002000
Damien Miller0425d402003-11-17 22:18:21 +11002001 return (0);
2002}
2003
2004int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002005mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002006{
2007 int authenticated;
2008
2009 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
2010
2011 buffer_clear(m);
2012 buffer_put_int(m, authenticated);
2013
2014 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002015 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002016
Damien Miller6fd6def2005-11-05 15:07:05 +11002017 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10002018
2019 /* Monitor loop will terminate if authenticated */
2020 return (authenticated);
2021}
2022#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11002023