blob: b3edd648b7fca5ba08b6be4dfd75351768991d79 [file] [log] [blame]
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001/* $OpenBSD: monitor.c,v 1.155 2015/12/04 16:41:28 markus Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110029
30#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100031#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110033#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000034
Darren Tucker39972492006-07-12 22:22:46 +100035#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100036#include <fcntl.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110037#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110038#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110039#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100040#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110041#include <signal.h>
Damien Miller9af21972015-02-24 09:04:32 +110042#ifdef HAVE_STDINT_H
millert@openbsd.orgfd368342015-02-06 23:21:59 +000043#include <stdint.h>
Damien Miller9af21972015-02-24 09:04:32 +110044#endif
Damien Millere7a1e5c2006-08-05 11:34:19 +100045#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100046#include <string.h>
Damien Miller86687062014-07-02 15:28:02 +100047#include <stdarg.h>
48#include <stdio.h>
Damien Miller607aede2006-09-01 15:48:19 +100049#include <unistd.h>
Damien Miller8f0bf232011-06-20 14:42:23 +100050#ifdef HAVE_POLL_H
51#include <poll.h>
52#else
53# ifdef HAVE_SYS_POLL_H
54# include <sys/poll.h>
55# endif
56#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000057
58#ifdef SKEY
59#include <skey.h>
60#endif
61
Damien Miller1f0311c2014-05-15 14:24:09 +100062#ifdef WITH_OPENSSL
Damien Miller03e20032006-03-15 11:16:59 +110063#include <openssl/dh.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100064#endif
Damien Miller03e20032006-03-15 11:16:59 +110065
Damien Millerb84886b2008-05-19 15:05:07 +100066#include "openbsd-compat/sys-queue.h"
Damien Miller8f0bf232011-06-20 14:42:23 +100067#include "atomicio.h"
Damien Millerd7834352006-08-05 12:39:39 +100068#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000069#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100070#include "key.h"
71#include "buffer.h"
72#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000073#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100074#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000075#include "kex.h"
76#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000077#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
78#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000079#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000080#define TARGET_OS_MAC 1
81#else
82#include "zlib.h"
83#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000084#include "packet.h"
85#include "auth-options.h"
86#include "sshpty.h"
87#include "channels.h"
88#include "session.h"
89#include "sshlogin.h"
90#include "canohost.h"
91#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100092#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000093#include "servconf.h"
94#include "monitor.h"
95#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100096#ifdef GSSAPI
97#include "ssh-gss.h"
98#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000099#include "monitor_wrap.h"
100#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000101#include "compat.h"
102#include "ssh2.h"
Darren Tuckerb422afa2009-06-21 18:58:46 +1000103#include "roaming.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000104#include "authfd.h"
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000105#include "match.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000106#include "ssherr.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000107
Darren Tucker0efd1552003-08-26 11:49:55 +1000108#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +1000109static Gssctxt *gsscontext = NULL;
110#endif
111
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000112/* Imports */
113extern ServerOptions options;
114extern u_int utmp_len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115extern u_char session_id[];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000116extern Buffer auth_debug;
117extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000118extern Buffer loginmsg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000119
120/* State exported from the child */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000121static struct sshbuf *child_state;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000122
Damien Miller469954d2003-06-18 20:25:33 +1000123/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000124
125int mm_answer_moduli(int, Buffer *);
126int mm_answer_sign(int, Buffer *);
127int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000128int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000129int mm_answer_authserv(int, Buffer *);
130int mm_answer_authpassword(int, Buffer *);
131int mm_answer_bsdauthquery(int, Buffer *);
132int mm_answer_bsdauthrespond(int, Buffer *);
133int mm_answer_skeyquery(int, Buffer *);
134int mm_answer_skeyrespond(int, Buffer *);
135int mm_answer_keyallowed(int, Buffer *);
136int mm_answer_keyverify(int, Buffer *);
137int mm_answer_pty(int, Buffer *);
138int mm_answer_pty_cleanup(int, Buffer *);
139int mm_answer_term(int, Buffer *);
140int mm_answer_rsa_keyallowed(int, Buffer *);
141int mm_answer_rsa_challenge(int, Buffer *);
142int mm_answer_rsa_response(int, Buffer *);
143int mm_answer_sesskey(int, Buffer *);
144int mm_answer_sessid(int, Buffer *);
145
Damien Miller79418552002-04-23 20:28:48 +1000146#ifdef USE_PAM
147int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000148int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000149int mm_answer_pam_init_ctx(int, Buffer *);
150int mm_answer_pam_query(int, Buffer *);
151int mm_answer_pam_respond(int, Buffer *);
152int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000153#endif
154
Darren Tucker0efd1552003-08-26 11:49:55 +1000155#ifdef GSSAPI
156int mm_answer_gss_setup_ctx(int, Buffer *);
157int mm_answer_gss_accept_ctx(int, Buffer *);
158int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100159int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000160#endif
Damien Miller25162f22002-09-12 09:47:29 +1000161
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100162#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100163int mm_answer_audit_event(int, Buffer *);
164int mm_answer_audit_command(int, Buffer *);
165#endif
166
Damien Miller8f0bf232011-06-20 14:42:23 +1000167static int monitor_read_log(struct monitor *);
168
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000169static Authctxt *authctxt;
Damien Miller1f0311c2014-05-15 14:24:09 +1000170
171#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000172static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
Damien Miller1f0311c2014-05-15 14:24:09 +1000173#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000174
175/* local state for key verify */
176static u_char *key_blob = NULL;
177static u_int key_bloblen = 0;
178static int key_blobtype = MM_NOKEY;
Damien Millera10f5612002-09-12 09:49:15 +1000179static char *hostbased_cuser = NULL;
180static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000181static char *auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100182static char *auth_submethod = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000183static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000184static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000185static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000186
187struct mon_table {
188 enum monitor_reqtype type;
189 int flags;
190 int (*f)(int, Buffer *);
191};
192
193#define MON_ISAUTH 0x0004 /* Required for Authentication */
194#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
195#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100196#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000197
198#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
199
200#define MON_PERMIT 0x1000 /* Request is permitted */
201
202struct mon_table mon_dispatch_proto20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000203#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000205#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
207 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
208 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000209 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000210 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000211#ifdef USE_PAM
212 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000213 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000214 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
215 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
216 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
217 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000218#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100219#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100220 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100221#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000222#ifdef BSD_AUTH
223 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100224 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000225#endif
226#ifdef SKEY
227 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
228 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
229#endif
230 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
231 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000232#ifdef GSSAPI
233 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
234 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
235 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100236 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000237#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000238 {0, 0, NULL}
239};
240
241struct mon_table mon_dispatch_postauth20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000242#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000244#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000245 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
246 {MONITOR_REQ_PTY, 0, mm_answer_pty},
247 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
248 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100249#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100250 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
251 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
252#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000253 {0, 0, NULL}
254};
255
256struct mon_table mon_dispatch_proto15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000257#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000258 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
259 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
260 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
261 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller7a8f5b32006-03-31 23:14:23 +1100262 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_rsa_keyallowed},
263 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_keyallowed},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000264 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
265 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
266#ifdef BSD_AUTH
267 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100268 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000269#endif
270#ifdef SKEY
271 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
272 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
273#endif
Damien Millera33501b2002-05-08 12:24:42 +1000274#ifdef USE_PAM
275 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000276 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000277 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
278 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
279 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
280 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Damien Millera33501b2002-05-08 12:24:42 +1000281#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100282#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100283 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100284#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000285#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000286 {0, 0, NULL}
287};
288
289struct mon_table mon_dispatch_postauth15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000290#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000291 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
292 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
293 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100294#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100295 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker5965ae12006-09-17 12:00:13 +1000296 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT|MON_ONCE, mm_answer_audit_command},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100297#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000298#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000299 {0, 0, NULL}
300};
301
302struct mon_table *mon_dispatch;
303
304/* Specifies if a certain message is allowed at the moment */
305
306static void
307monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
308{
309 while (ent->f != NULL) {
310 if (ent->type == type) {
311 ent->flags &= ~MON_PERMIT;
312 ent->flags |= permit ? MON_PERMIT : 0;
313 return;
314 }
315 ent++;
316 }
317}
318
319static void
320monitor_permit_authentications(int permit)
321{
322 struct mon_table *ent = mon_dispatch;
323
324 while (ent->f != NULL) {
325 if (ent->flags & MON_AUTH) {
326 ent->flags &= ~MON_PERMIT;
327 ent->flags |= permit ? MON_PERMIT : 0;
328 }
329 ent++;
330 }
331}
332
Darren Tucker3e33cec2003-10-02 16:12:36 +1000333void
334monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000335{
336 struct mon_table *ent;
Damien Miller15b05cf2012-12-03 09:53:20 +1100337 int authenticated = 0, partial = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000338
339 debug3("preauth child monitor started");
340
Damien Miller8f0bf232011-06-20 14:42:23 +1000341 close(pmonitor->m_recvfd);
342 close(pmonitor->m_log_sendfd);
343 pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
344
Darren Tucker3e33cec2003-10-02 16:12:36 +1000345 authctxt = _authctxt;
346 memset(authctxt, 0, sizeof(*authctxt));
347
Darren Tuckerde0de392005-03-31 23:52:04 +1000348 authctxt->loginmsg = &loginmsg;
349
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000350 if (compat20) {
351 mon_dispatch = mon_dispatch_proto20;
352
353 /* Permit requests for moduli and signatures */
354 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
355 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
356 } else {
357 mon_dispatch = mon_dispatch_proto15;
358
359 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
360 }
361
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000362 /* The first few requests do not require asynchronous access */
363 while (!authenticated) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100364 partial = 0;
Damien Miller7a8f5b32006-03-31 23:14:23 +1100365 auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100366 auth_submethod = NULL;
Darren Tuckerfbba7352006-11-07 23:16:08 +1100367 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Damien Millera6e3f012012-11-04 23:21:40 +1100368
369 /* Special handling for multiple required authentications */
370 if (options.num_auth_methods != 0) {
371 if (!compat20)
372 fatal("AuthenticationMethods is not supported"
373 "with SSH protocol 1");
374 if (authenticated &&
375 !auth2_update_methods_lists(authctxt,
Damien Miller91a55f22013-04-23 15:18:10 +1000376 auth_method, auth_submethod)) {
Damien Millera6e3f012012-11-04 23:21:40 +1100377 debug3("%s: method %s: partial", __func__,
378 auth_method);
379 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100380 partial = 1;
Damien Millera6e3f012012-11-04 23:21:40 +1100381 }
382 }
383
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000384 if (authenticated) {
385 if (!(ent->flags & MON_AUTHDECIDE))
386 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000387 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000388 if (authctxt->pw->pw_uid == 0 &&
389 !auth_root_allowed(auth_method))
390 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000391#ifdef USE_PAM
392 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100393 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000394 Buffer m;
395
396 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100397 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000398 MONITOR_REQ_PAM_ACCOUNT, &m);
399 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
400 buffer_free(&m);
401 }
402#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000403 }
Damien Miller7a8f5b32006-03-31 23:14:23 +1100404 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100405 auth_log(authctxt, authenticated, partial,
Darren Tucker0acca372013-06-02 07:41:51 +1000406 auth_method, auth_submethod);
djm@openbsd.org94885382015-06-22 23:42:16 +0000407 if (!partial && !authenticated)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000408 authctxt->failures++;
409 }
410 }
411
412 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000413 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100414 if (strcmp(auth_method, "unknown") == 0)
415 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000416
417 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000418 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000419
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000420 mm_get_keystate(pmonitor);
Damien Miller8f0bf232011-06-20 14:42:23 +1000421
Damien Miller6a1937e2012-12-12 10:44:38 +1100422 /* Drain any buffered messages from the child */
423 while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
424 ;
425
Damien Miller8f0bf232011-06-20 14:42:23 +1000426 close(pmonitor->m_sendfd);
427 close(pmonitor->m_log_recvfd);
428 pmonitor->m_sendfd = pmonitor->m_log_recvfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000429}
430
Damien Millerbe64d432003-05-14 19:31:12 +1000431static void
432monitor_set_child_handler(pid_t pid)
433{
434 monitor_child_pid = pid;
435}
436
437static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000438monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000439{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000440 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000441}
442
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000443void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000444monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000445{
Damien Miller8f0bf232011-06-20 14:42:23 +1000446 close(pmonitor->m_recvfd);
447 pmonitor->m_recvfd = -1;
448
Damien Millerbe64d432003-05-14 19:31:12 +1000449 monitor_set_child_handler(pmonitor->m_pid);
450 signal(SIGHUP, &monitor_child_handler);
451 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000452 signal(SIGINT, &monitor_child_handler);
Damien Miller146218a2014-08-27 04:11:55 +1000453#ifdef SIGXFSZ
454 signal(SIGXFSZ, SIG_IGN);
455#endif
Damien Millerbe64d432003-05-14 19:31:12 +1000456
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000457 if (compat20) {
458 mon_dispatch = mon_dispatch_postauth20;
459
460 /* Permit requests for moduli and signatures */
461 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
462 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
463 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000464 } else {
465 mon_dispatch = mon_dispatch_postauth15;
466 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
467 }
468 if (!no_pty_flag) {
469 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
470 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
471 }
472
473 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000474 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000475}
476
477void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000478monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000479{
Damien Miller2d6b8332002-06-21 15:59:49 +1000480 if (options.compression) {
481 /* The member allocation is not visible, so sync it */
482 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
483 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000484}
485
markus@openbsd.org091c3022015-01-19 19:52:16 +0000486/* Allocation functions for zlib */
487static void *
488mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
489{
deraadt@openbsd.orge774e5e2015-08-21 23:29:31 +0000490 if (size == 0 || ncount == 0 || ncount > SIZE_MAX / size)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000491 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
492
deraadt@openbsd.orge774e5e2015-08-21 23:29:31 +0000493 return mm_malloc(mm, size * ncount);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000494}
495
496static void
497mm_zfree(struct mm_master *mm, void *address)
498{
499 mm_free(mm, address);
500}
501
Damien Miller8f0bf232011-06-20 14:42:23 +1000502static int
503monitor_read_log(struct monitor *pmonitor)
504{
505 Buffer logmsg;
506 u_int len, level;
507 char *msg;
508
509 buffer_init(&logmsg);
510
511 /* Read length */
512 buffer_append_space(&logmsg, 4);
513 if (atomicio(read, pmonitor->m_log_recvfd,
514 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg)) {
515 if (errno == EPIPE) {
Damien Millera2876db2012-02-11 08:16:06 +1100516 buffer_free(&logmsg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000517 debug("%s: child log fd closed", __func__);
518 close(pmonitor->m_log_recvfd);
519 pmonitor->m_log_recvfd = -1;
520 return -1;
521 }
522 fatal("%s: log fd read: %s", __func__, strerror(errno));
523 }
524 len = buffer_get_int(&logmsg);
525 if (len <= 4 || len > 8192)
526 fatal("%s: invalid log message length %u", __func__, len);
527
528 /* Read severity, message */
529 buffer_clear(&logmsg);
530 buffer_append_space(&logmsg, len);
531 if (atomicio(read, pmonitor->m_log_recvfd,
532 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg))
533 fatal("%s: log fd read: %s", __func__, strerror(errno));
534
535 /* Log it */
536 level = buffer_get_int(&logmsg);
537 msg = buffer_get_string(&logmsg, NULL);
538 if (log_level_name(level) == NULL)
539 fatal("%s: invalid log level %u (corrupted message?)",
540 __func__, level);
541 do_log2(level, "%s [preauth]", msg);
542
543 buffer_free(&logmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000544 free(msg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000545
546 return 0;
547}
548
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000549int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000550monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000551 struct mon_table **pent)
552{
553 Buffer m;
554 int ret;
555 u_char type;
Damien Miller8f0bf232011-06-20 14:42:23 +1000556 struct pollfd pfd[2];
557
558 for (;;) {
Damien Miller1d2c4562014-02-04 11:18:20 +1100559 memset(&pfd, 0, sizeof(pfd));
Damien Miller8f0bf232011-06-20 14:42:23 +1000560 pfd[0].fd = pmonitor->m_sendfd;
561 pfd[0].events = POLLIN;
562 pfd[1].fd = pmonitor->m_log_recvfd;
563 pfd[1].events = pfd[1].fd == -1 ? 0 : POLLIN;
Damien Miller7741ce82011-08-06 06:15:15 +1000564 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
565 if (errno == EINTR || errno == EAGAIN)
566 continue;
Damien Miller8f0bf232011-06-20 14:42:23 +1000567 fatal("%s: poll: %s", __func__, strerror(errno));
Damien Miller7741ce82011-08-06 06:15:15 +1000568 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000569 if (pfd[1].revents) {
570 /*
571 * Drain all log messages before processing next
572 * monitor request.
573 */
574 monitor_read_log(pmonitor);
575 continue;
576 }
577 if (pfd[0].revents)
578 break; /* Continues below */
579 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000580
581 buffer_init(&m);
582
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000583 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000584 type = buffer_get_char(&m);
585
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000586 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000587
588 while (ent->f != NULL) {
589 if (ent->type == type)
590 break;
591 ent++;
592 }
593
594 if (ent->f != NULL) {
595 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000596 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000597 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000598 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000599 buffer_free(&m);
600
601 /* The child may use this request only once, disable it */
602 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000603 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000604 type);
605 ent->flags &= ~MON_PERMIT;
606 }
607
608 if (pent != NULL)
609 *pent = ent;
610
611 return ret;
612 }
613
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000614 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000615
616 /* NOTREACHED */
617 return (-1);
618}
619
620/* allowed key state */
621static int
622monitor_allowed_key(u_char *blob, u_int bloblen)
623{
624 /* make sure key is allowed */
625 if (key_blob == NULL || key_bloblen != bloblen ||
Damien Millerea1651c2010-07-16 13:58:37 +1000626 timingsafe_bcmp(key_blob, blob, key_bloblen))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000627 return (0);
628 return (1);
629}
630
631static void
632monitor_reset_key_state(void)
633{
634 /* reset state */
Darren Tuckera627d422013-06-02 07:31:17 +1000635 free(key_blob);
636 free(hostbased_cuser);
637 free(hostbased_chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000638 key_blob = NULL;
639 key_bloblen = 0;
640 key_blobtype = MM_NOKEY;
641 hostbased_cuser = NULL;
642 hostbased_chost = NULL;
643}
644
Damien Miller1f0311c2014-05-15 14:24:09 +1000645#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000646int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000647mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000648{
649 DH *dh;
650 int min, want, max;
651
652 min = buffer_get_int(m);
653 want = buffer_get_int(m);
654 max = buffer_get_int(m);
655
656 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000657 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000658 /* We need to check here, too, in case the child got corrupted */
659 if (max < min || want < min || max < want)
660 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000661 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000662
663 buffer_clear(m);
664
665 dh = choose_dh(min, want, max);
666 if (dh == NULL) {
667 buffer_put_char(m, 0);
668 return (0);
669 } else {
670 /* Send first bignum */
671 buffer_put_char(m, 1);
672 buffer_put_bignum2(m, dh->p);
673 buffer_put_bignum2(m, dh->g);
674
675 DH_free(dh);
676 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000677 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000678 return (0);
679}
Damien Miller1f0311c2014-05-15 14:24:09 +1000680#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000681
682int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000683mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000684{
djm@openbsd.org523463a2015-02-16 22:13:32 +0000685 struct ssh *ssh = active_state; /* XXX */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000686 extern int auth_sock; /* XXX move to state struct? */
687 struct sshkey *key;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000688 struct sshbuf *sigbuf;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000689 u_char *p;
690 u_char *signature;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000691 char *alg;
692 size_t datlen, siglen, alglen;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000693 int r, keyid, is_proof = 0;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000694 const char proof_req[] = "hostkeys-prove-00@openssh.com";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000695
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000696 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000697
djm@openbsd.org141efe42015-01-14 20:05:27 +0000698 if ((r = sshbuf_get_u32(m, &keyid)) != 0 ||
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000699 (r = sshbuf_get_string(m, &p, &datlen)) != 0 ||
700 (r = sshbuf_get_cstring(m, &alg, &alglen)) != 0)
djm@openbsd.org141efe42015-01-14 20:05:27 +0000701 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000702
Damien Millera63128d2006-03-15 12:08:28 +1100703 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000704 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
705 * SHA384 (48 bytes) and SHA512 (64 bytes).
djm@openbsd.org523463a2015-02-16 22:13:32 +0000706 *
707 * Otherwise, verify the signature request is for a hostkey
708 * proof.
709 *
710 * XXX perform similar check for KEX signature requests too?
711 * it's not trivial, since what is signed is the hash, rather
712 * than the full kex structure...
Damien Millera63128d2006-03-15 12:08:28 +1100713 */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000714 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64) {
715 /*
716 * Construct expected hostkey proof and compare it to what
717 * the client sent us.
718 */
719 if (session_id2_len == 0) /* hostkeys is never first */
720 fatal("%s: bad data length: %zu", __func__, datlen);
721 if ((key = get_hostkey_public_by_index(keyid, ssh)) == NULL)
722 fatal("%s: no hostkey for index %d", __func__, keyid);
723 if ((sigbuf = sshbuf_new()) == NULL)
724 fatal("%s: sshbuf_new", __func__);
djm@openbsd.org44732de2015-02-20 22:17:21 +0000725 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
726 (r = sshbuf_put_string(sigbuf, session_id2,
jsg@openbsd.orgf3a3ea12015-09-02 07:51:12 +0000727 session_id2_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000728 (r = sshkey_puts(key, sigbuf)) != 0)
729 fatal("%s: couldn't prepare private key "
730 "proof buffer: %s", __func__, ssh_err(r));
731 if (datlen != sshbuf_len(sigbuf) ||
732 memcmp(p, sshbuf_ptr(sigbuf), sshbuf_len(sigbuf)) != 0)
733 fatal("%s: bad data length: %zu, hostkey proof len %zu",
734 __func__, datlen, sshbuf_len(sigbuf));
735 sshbuf_free(sigbuf);
736 is_proof = 1;
737 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000738
Ben Lindstromf67e0772002-06-06 20:58:19 +0000739 /* save session id, it will be passed on the first call */
740 if (session_id2_len == 0) {
741 session_id2_len = datlen;
742 session_id2 = xmalloc(session_id2_len);
743 memcpy(session_id2, p, session_id2_len);
744 }
745
Damien Miller85b45e02013-07-20 13:21:52 +1000746 if ((key = get_hostkey_by_index(keyid)) != NULL) {
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000747 if ((r = sshkey_sign(key, &signature, &siglen, p, datlen, alg,
djm@openbsd.org141efe42015-01-14 20:05:27 +0000748 datafellows)) != 0)
749 fatal("%s: sshkey_sign failed: %s",
750 __func__, ssh_err(r));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000751 } else if ((key = get_hostkey_public_by_index(keyid, ssh)) != NULL &&
djm@openbsd.org141efe42015-01-14 20:05:27 +0000752 auth_sock > 0) {
753 if ((r = ssh_agent_sign(auth_sock, key, &signature, &siglen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000754 p, datlen, alg, datafellows)) != 0) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000755 fatal("%s: ssh_agent_sign failed: %s",
756 __func__, ssh_err(r));
757 }
Damien Miller85b45e02013-07-20 13:21:52 +1000758 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000759 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000760
djm@openbsd.org523463a2015-02-16 22:13:32 +0000761 debug3("%s: %s signature %p(%zu)", __func__,
762 is_proof ? "KEX" : "hostkey proof", signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000763
djm@openbsd.org141efe42015-01-14 20:05:27 +0000764 sshbuf_reset(m);
765 if ((r = sshbuf_put_string(m, signature, siglen)) != 0)
766 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000767
Darren Tuckera627d422013-06-02 07:31:17 +1000768 free(p);
769 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000770
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000771 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000772
773 /* Turn on permissions for getpwnam */
774 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
775
776 return (0);
777}
778
779/* Retrieves the password entry and also checks if the user is permitted */
780
781int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000782mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000783{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000784 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000785 struct passwd *pwent;
786 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000787 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000788
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000789 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000790
791 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000792 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000793
Darren Tuckerb09b6772004-06-22 15:06:46 +1000794 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000795
Darren Tuckerb09b6772004-06-22 15:06:46 +1000796 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000797
Darren Tuckerb09b6772004-06-22 15:06:46 +1000798 authctxt->user = xstrdup(username);
799 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000800 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000801
802 buffer_clear(m);
803
804 if (pwent == NULL) {
805 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100806 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000807 goto out;
808 }
809
810 allowed = 1;
811 authctxt->pw = pwent;
812 authctxt->valid = 1;
813
814 buffer_put_char(m, 1);
815 buffer_put_string(m, pwent, sizeof(struct passwd));
816 buffer_put_cstring(m, pwent->pw_name);
817 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000818#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000819 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000820#endif
821#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000822 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000823#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000824 buffer_put_cstring(m, pwent->pw_dir);
825 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100826
827 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100828 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000829
830#define M_CP_STROPT(x) do { \
831 if (options.x != NULL) \
832 buffer_put_cstring(m, options.x); \
833 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000834#define M_CP_STRARRAYOPT(x, nx) do { \
835 for (i = 0; i < options.nx; i++) \
836 buffer_put_cstring(m, options.x[i]); \
837 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000838 /* See comment in servconf.h */
839 COPY_MATCH_STRING_OPTS();
840#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000841#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100842
843 /* Create valid auth method lists */
844 if (compat20 && auth2_setup_methods_lists(authctxt) != 0) {
845 /*
846 * The monitor will continue long enough to let the child
847 * run to it's packet_disconnect(), but it must not allow any
848 * authentication to succeed.
849 */
850 debug("%s: no valid authentication method lists", __func__);
851 }
852
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000853 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000854 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000855
856 /* For SSHv1 allow authentication now */
857 if (!compat20)
858 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000859 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000860 /* Allow service/style information on the auth context */
861 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000862 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
863 }
Damien Millera33501b2002-05-08 12:24:42 +1000864#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000865 if (options.use_pam)
866 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000867#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000868
869 return (0);
870}
871
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000872int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000873{
874 char *banner;
875
876 buffer_clear(m);
877 banner = auth2_read_banner();
878 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000879 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000880 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000881
882 return (0);
883}
884
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000886mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000887{
888 monitor_permit_authentications(1);
889
890 authctxt->service = buffer_get_string(m, NULL);
891 authctxt->style = buffer_get_string(m, NULL);
892 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000893 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000894
895 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000896 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000897 authctxt->style = NULL;
898 }
899
900 return (0);
901}
902
903int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000904mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000905{
906 static int call_count;
907 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000908 int authenticated;
909 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000910
911 passwd = buffer_get_string(m, &plen);
912 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000913 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000914 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100915 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000916 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000917
918 buffer_clear(m);
919 buffer_put_int(m, authenticated);
920
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000921 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000922 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000923
924 call_count++;
925 if (plen == 0 && call_count == 1)
926 auth_method = "none";
927 else
928 auth_method = "password";
929
930 /* Causes monitor loop to terminate if authenticated */
931 return (authenticated);
932}
933
934#ifdef BSD_AUTH
935int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000936mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000937{
938 char *name, *infotxt;
939 u_int numprompts;
940 u_int *echo_on;
941 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100942 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000943
Damien Millerb7df3af2003-02-24 11:55:46 +1100944 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
945 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000946
947 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100948 buffer_put_int(m, success);
949 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000950 buffer_put_cstring(m, prompts[0]);
951
Damien Millerb7df3af2003-02-24 11:55:46 +1100952 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000953 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000954
Damien Millerb7df3af2003-02-24 11:55:46 +1100955 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000956 free(name);
957 free(infotxt);
958 free(prompts);
959 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000960 }
961
962 return (0);
963}
964
965int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000966mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000967{
968 char *response;
969 int authok;
970
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +0000971 if (authctxt->as == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000972 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000973
974 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000975 authok = options.challenge_response_authentication &&
976 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000977 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000978 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000979 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000980
981 buffer_clear(m);
982 buffer_put_int(m, authok);
983
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000984 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000985 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000986
Damien Miller91a55f22013-04-23 15:18:10 +1000987 if (compat20) {
988 auth_method = "keyboard-interactive";
989 auth_submethod = "bsdauth";
990 } else
Damien Millera6e3f012012-11-04 23:21:40 +1100991 auth_method = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000992
993 return (authok != 0);
994}
995#endif
996
997#ifdef SKEY
998int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000999mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001000{
1001 struct skey skey;
1002 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +11001003 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001004
Darren Tucker06a8cfe2004-04-14 17:24:30 +10001005 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
1006 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001007
1008 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +11001009 buffer_put_int(m, success);
1010 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001011 buffer_put_cstring(m, challenge);
1012
Damien Millerb7df3af2003-02-24 11:55:46 +11001013 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001014 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001015
1016 return (0);
1017}
1018
1019int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001020mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001021{
1022 char *response;
1023 int authok;
1024
1025 response = buffer_get_string(m, NULL);
1026
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001027 authok = (options.challenge_response_authentication &&
1028 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001029 skey_haskey(authctxt->pw->pw_name) == 0 &&
1030 skey_passcheck(authctxt->pw->pw_name, response) != -1);
1031
Darren Tuckerf60845f2013-06-02 08:07:31 +10001032 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001033
1034 buffer_clear(m);
1035 buffer_put_int(m, authok);
1036
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001037 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001038 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001039
Damien Millerac947352015-11-20 12:35:41 +11001040 auth_method = "keyboard-interactive";
1041 auth_submethod = "skey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001042
1043 return (authok != 0);
1044}
1045#endif
1046
Damien Miller79418552002-04-23 20:28:48 +10001047#ifdef USE_PAM
1048int
Darren Tucker7eda5922004-06-22 13:22:50 +10001049mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +10001050{
Damien Miller4e448a32003-05-14 15:11:48 +10001051 if (!options.use_pam)
1052 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1053
Darren Tuckerdbf7a742004-03-08 23:04:06 +11001054 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +10001055
Damien Miller1f499fd2003-08-25 13:08:49 +10001056 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
1057
Damien Miller79418552002-04-23 20:28:48 +10001058 return (0);
1059}
Damien Miller4f9f42a2003-05-10 19:28:02 +10001060
Damien Miller1f499fd2003-08-25 13:08:49 +10001061int
Darren Tucker7eda5922004-06-22 13:22:50 +10001062mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001063{
1064 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001065
Damien Miller1f499fd2003-08-25 13:08:49 +10001066 if (!options.use_pam)
1067 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1068
1069 ret = do_pam_account();
1070
1071 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001072 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001073
Darren Tucker7eda5922004-06-22 13:22:50 +10001074 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001075
1076 return (ret);
1077}
1078
Damien Miller4f9f42a2003-05-10 19:28:02 +10001079static void *sshpam_ctxt, *sshpam_authok;
1080extern KbdintDevice sshpam_device;
1081
1082int
Darren Tucker7eda5922004-06-22 13:22:50 +10001083mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001084{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001085 debug3("%s", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001086 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1087 sshpam_authok = NULL;
1088 buffer_clear(m);
1089 if (sshpam_ctxt != NULL) {
1090 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
1091 buffer_put_int(m, 1);
1092 } else {
1093 buffer_put_int(m, 0);
1094 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001095 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001096 return (0);
1097}
1098
1099int
Darren Tucker7eda5922004-06-22 13:22:50 +10001100mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001101{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001102 char *name = NULL, *info = NULL, **prompts = NULL;
1103 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001104 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001105
1106 debug3("%s", __func__);
1107 sshpam_authok = NULL;
1108 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1109 if (ret == 0 && num == 0)
1110 sshpam_authok = sshpam_ctxt;
1111 if (num > 1 || name == NULL || info == NULL)
1112 ret = -1;
1113 buffer_clear(m);
1114 buffer_put_int(m, ret);
1115 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001116 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001117 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001118 free(info);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001119 buffer_put_int(m, num);
1120 for (i = 0; i < num; ++i) {
1121 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001122 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001123 buffer_put_int(m, echo_on[i]);
1124 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001125 free(prompts);
1126 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001127 auth_method = "keyboard-interactive";
1128 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001129 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001130 return (0);
1131}
1132
1133int
Darren Tucker7eda5922004-06-22 13:22:50 +10001134mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001135{
1136 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001137 u_int i, num;
1138 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001139
1140 debug3("%s", __func__);
1141 sshpam_authok = NULL;
1142 num = buffer_get_int(m);
1143 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001144 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001145 for (i = 0; i < num; ++i)
1146 resp[i] = buffer_get_string(m, NULL);
1147 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1148 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001149 free(resp[i]);
1150 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001151 } else {
1152 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1153 }
1154 buffer_clear(m);
1155 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001156 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001157 auth_method = "keyboard-interactive";
1158 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001159 if (ret == 0)
1160 sshpam_authok = sshpam_ctxt;
1161 return (0);
1162}
1163
1164int
Darren Tucker7eda5922004-06-22 13:22:50 +10001165mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001166{
Damien Miller5e75f512015-08-11 13:34:12 +10001167 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001168
1169 debug3("%s", __func__);
1170 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001171 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001172 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001173 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001174 auth_method = "keyboard-interactive";
1175 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001176 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001177}
Damien Miller79418552002-04-23 20:28:48 +10001178#endif
1179
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001180int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001181mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001182{
1183 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001184 char *cuser, *chost;
1185 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001186 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001187 enum mm_keytype type = 0;
1188 int allowed = 0;
1189
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001190 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001191
1192 type = buffer_get_int(m);
1193 cuser = buffer_get_string(m, NULL);
1194 chost = buffer_get_string(m, NULL);
1195 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001196 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001197
1198 key = key_from_blob(blob, bloblen);
1199
1200 if ((compat20 && type == MM_RSAHOSTKEY) ||
1201 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001202 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001203
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001204 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001205
Damien Miller3e3b5142003-11-17 21:13:40 +11001206 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001207 /* These should not make it past the privsep child */
1208 if (key_type_plain(key->type) == KEY_RSA &&
1209 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1210 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1211
Darren Tucker47eede72005-03-14 23:08:12 +11001212 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001213 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001214 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001215 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001216 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001217 options.pubkey_key_types, 0) == 1 &&
1218 user_key_allowed(authctxt->pw, key,
1219 pubkey_auth_attempt);
Damien Miller20bdcd72013-07-18 16:10:09 +10001220 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001221 auth_method = "publickey";
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001222 if (options.pubkey_authentication &&
1223 (!pubkey_auth_attempt || allowed != 1))
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001224 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001225 break;
1226 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001227 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001228 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001229 options.hostbased_key_types, 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001230 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001231 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001232 pubkey_auth_info(authctxt, key,
1233 "client user \"%.100s\", client host \"%.100s\"",
1234 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001235 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001236 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001237#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001238 case MM_RSAHOSTKEY:
1239 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001240 allowed = options.rhosts_rsa_authentication &&
1241 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001242 cuser, chost, key);
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001243 if (options.rhosts_rsa_authentication && allowed != 1)
1244 auth_clear_options();
Damien Miller7a8f5b32006-03-31 23:14:23 +11001245 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001246 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001247#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001248 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001249 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001250 break;
1251 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001252 }
Damien Miller00111382003-03-10 11:21:17 +11001253 if (key != NULL)
1254 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001255
1256 /* clear temporarily storage (used by verify) */
1257 monitor_reset_key_state();
1258
1259 if (allowed) {
1260 /* Save temporarily for comparison in verify */
1261 key_blob = blob;
1262 key_bloblen = bloblen;
1263 key_blobtype = type;
1264 hostbased_cuser = cuser;
1265 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001266 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001267 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001268 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001269 free(blob);
1270 free(cuser);
1271 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001272 }
1273
1274 debug3("%s: key %p is %s",
Darren Tucker2784f1f2008-07-04 13:51:45 +10001275 __func__, key, allowed ? "allowed" : "not allowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001276
1277 buffer_clear(m);
1278 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001279 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001280
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001281 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001282
1283 if (type == MM_RSAHOSTKEY)
1284 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1285
1286 return (0);
1287}
1288
1289static int
1290monitor_valid_userblob(u_char *data, u_int datalen)
1291{
1292 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001293 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001294 u_int len;
1295 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001296
1297 buffer_init(&b);
1298 buffer_append(&b, data, datalen);
1299
1300 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001301 p = buffer_ptr(&b);
1302 len = buffer_len(&b);
1303 if ((session_id2 == NULL) ||
1304 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001305 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001306 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001307 buffer_consume(&b, session_id2_len);
1308 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001309 p = buffer_get_string(&b, &len);
1310 if ((session_id2 == NULL) ||
1311 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001312 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001313 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001315 }
1316 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1317 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001318 p = buffer_get_cstring(&b, NULL);
1319 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1320 authctxt->style ? ":" : "",
1321 authctxt->style ? authctxt->style : "");
1322 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001323 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001324 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001325 fail++;
1326 }
Darren Tuckera627d422013-06-02 07:31:17 +10001327 free(userstyle);
1328 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001329 buffer_skip_string(&b);
1330 if (datafellows & SSH_BUG_PKAUTH) {
1331 if (!buffer_get_char(&b))
1332 fail++;
1333 } else {
Damien Miller4ce189d2013-04-23 15:17:52 +10001334 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001335 if (strcmp("publickey", p) != 0)
1336 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001337 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001338 if (!buffer_get_char(&b))
1339 fail++;
1340 buffer_skip_string(&b);
1341 }
1342 buffer_skip_string(&b);
1343 if (buffer_len(&b) != 0)
1344 fail++;
1345 buffer_free(&b);
1346 return (fail == 0);
1347}
1348
1349static int
Damien Millera10f5612002-09-12 09:49:15 +10001350monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1351 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001352{
1353 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001354 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001355 u_int len;
1356 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001357
1358 buffer_init(&b);
1359 buffer_append(&b, data, datalen);
1360
Ben Lindstromf67e0772002-06-06 20:58:19 +00001361 p = buffer_get_string(&b, &len);
1362 if ((session_id2 == NULL) ||
1363 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001364 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001365 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001366 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001367
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001368 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1369 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001370 p = buffer_get_cstring(&b, NULL);
1371 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1372 authctxt->style ? ":" : "",
1373 authctxt->style ? authctxt->style : "");
1374 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001375 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001376 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377 fail++;
1378 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001379 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001380 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001381 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001382 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001383 if (strcmp(p, "hostbased") != 0)
1384 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001385 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001386 buffer_skip_string(&b); /* pkalg */
1387 buffer_skip_string(&b); /* pkblob */
1388
1389 /* verify client host, strip trailing dot if necessary */
1390 p = buffer_get_string(&b, NULL);
1391 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1392 p[len - 1] = '\0';
1393 if (strcmp(p, chost) != 0)
1394 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001395 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001396
1397 /* verify client user */
1398 p = buffer_get_string(&b, NULL);
1399 if (strcmp(p, cuser) != 0)
1400 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001401 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001402
1403 if (buffer_len(&b) != 0)
1404 fail++;
1405 buffer_free(&b);
1406 return (fail == 0);
1407}
1408
1409int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001410mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001411{
1412 Key *key;
1413 u_char *signature, *data, *blob;
1414 u_int signaturelen, datalen, bloblen;
1415 int verified = 0;
1416 int valid_data = 0;
1417
1418 blob = buffer_get_string(m, &bloblen);
1419 signature = buffer_get_string(m, &signaturelen);
1420 data = buffer_get_string(m, &datalen);
1421
1422 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001423 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001424 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001425
1426 key = key_from_blob(blob, bloblen);
1427 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001428 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001429
1430 switch (key_blobtype) {
1431 case MM_USERKEY:
1432 valid_data = monitor_valid_userblob(data, datalen);
1433 break;
1434 case MM_HOSTKEY:
1435 valid_data = monitor_valid_hostbasedblob(data, datalen,
1436 hostbased_cuser, hostbased_chost);
1437 break;
1438 default:
1439 valid_data = 0;
1440 break;
1441 }
1442 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001443 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001444
1445 verified = key_verify(key, signature, signaturelen, data, datalen);
1446 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001447 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001448
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001449 /* If auth was successful then record key to ensure it isn't reused */
djm@openbsd.orgf54d8ac2015-09-04 04:44:08 +00001450 if (verified == 1 && key_blobtype == MM_USERKEY)
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001451 auth2_record_userkey(authctxt, key);
1452 else
1453 key_free(key);
1454
Darren Tuckera627d422013-06-02 07:31:17 +10001455 free(blob);
1456 free(signature);
1457 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001458
Ben Lindstrome1c09122002-06-23 00:38:24 +00001459 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1460
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001461 monitor_reset_key_state();
1462
1463 buffer_clear(m);
1464 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001465 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001466
Darren Tuckerfbba7352006-11-07 23:16:08 +11001467 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001468}
1469
1470static void
1471mm_record_login(Session *s, struct passwd *pw)
1472{
1473 socklen_t fromlen;
1474 struct sockaddr_storage from;
1475
djm@openbsd.org17d4d9d2015-04-17 04:32:31 +00001476 if (options.use_login)
1477 return;
1478
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001479 /*
1480 * Get IP address of client. If the connection is not a socket, let
1481 * the address be 0.0.0.0.
1482 */
1483 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001484 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001485 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001486 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001487 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001488 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001489 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001490 }
1491 }
1492 /* Record that there was a login on that tty from the remote host. */
1493 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
Damien Miller3a961dc2003-06-03 10:25:48 +10001494 get_remote_name_or_ip(utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001495 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001496}
1497
1498static void
1499mm_session_close(Session *s)
1500{
Damien Miller04bd8b02003-05-25 14:38:33 +10001501 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001502 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001503 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001504 session_pty_cleanup2(s);
1505 }
Damien Miller7207f642008-05-19 15:34:50 +10001506 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507}
1508
1509int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001510mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001511{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001512 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001513 Session *s;
1514 int res, fd0;
1515
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001516 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001517
1518 buffer_clear(m);
1519 s = session_new();
1520 if (s == NULL)
1521 goto error;
1522 s->authctxt = authctxt;
1523 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001524 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001525 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1526 if (res == 0)
1527 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001528 pty_setowner(authctxt->pw, s->tty);
1529
1530 buffer_put_int(m, 1);
1531 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001532
1533 /* We need to trick ttyslot */
1534 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001535 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001536
1537 mm_record_login(s, authctxt->pw);
1538
1539 /* Now we can close the file descriptor again */
1540 close(0);
1541
Darren Tucker09991742004-07-17 17:05:14 +10001542 /* send messages generated by record_login */
1543 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1544 buffer_clear(&loginmsg);
1545
1546 mm_request_send(sock, MONITOR_ANS_PTY, m);
1547
Damien Miller54fd7cf2007-09-17 12:04:08 +10001548 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1549 mm_send_fd(sock, s->ttyfd) == -1)
1550 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001551
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001552 /* make sure nothing uses fd 0 */
1553 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001554 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001555 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001556 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001557
1558 /* slave is not needed */
1559 close(s->ttyfd);
1560 s->ttyfd = s->ptyfd;
1561 /* no need to dup() because nobody closes ptyfd */
1562 s->ptymaster = s->ptyfd;
1563
Damien Miller9ab00b42006-08-05 12:40:11 +10001564 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001565
1566 return (0);
1567
1568 error:
1569 if (s != NULL)
1570 mm_session_close(s);
1571 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001572 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001573 return (0);
1574}
1575
1576int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001577mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001578{
1579 Session *s;
1580 char *tty;
1581
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001582 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001583
1584 tty = buffer_get_string(m, NULL);
1585 if ((s = session_by_tty(tty)) != NULL)
1586 mm_session_close(s);
1587 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001588 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001589 return (0);
1590}
1591
Damien Miller1f0311c2014-05-15 14:24:09 +10001592#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001593int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001594mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001595{
1596 BIGNUM *p;
1597 int rsafail;
1598
1599 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001600 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001601
1602 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001603 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001604
1605 buffer_get_bignum2(m, p);
1606
1607 rsafail = ssh1_session_key(p);
1608
1609 buffer_clear(m);
1610 buffer_put_int(m, rsafail);
1611 buffer_put_bignum2(m, p);
1612
1613 BN_clear_free(p);
1614
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001615 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001616
1617 /* Turn on permissions for sessid passing */
1618 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1619
1620 return (0);
1621}
1622
1623int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001624mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001625{
1626 int i;
1627
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001628 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001629
1630 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001631 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001632 for (i = 0; i < 16; i++)
1633 session_id[i] = buffer_get_char(m);
1634
1635 /* Turn on permissions for getpwnam */
1636 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1637
1638 return (0);
1639}
1640
1641int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001642mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001643{
1644 BIGNUM *client_n;
1645 Key *key = NULL;
1646 u_char *blob = NULL;
1647 u_int blen = 0;
1648 int allowed = 0;
1649
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001650 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001651
Damien Miller7a8f5b32006-03-31 23:14:23 +11001652 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001653 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001654 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001655 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001656 buffer_get_bignum2(m, client_n);
1657 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1658 BN_clear_free(client_n);
1659 }
1660 buffer_clear(m);
1661 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001662 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001663
1664 /* clear temporarily storage (used by generate challenge) */
1665 monitor_reset_key_state();
1666
1667 if (allowed && key != NULL) {
1668 key->type = KEY_RSA; /* cheat for key_to_blob */
1669 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001670 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001671 buffer_put_string(m, blob, blen);
1672
1673 /* Save temporarily for comparison in verify */
1674 key_blob = blob;
1675 key_bloblen = blen;
1676 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001677 }
Damien Miller00111382003-03-10 11:21:17 +11001678 if (key != NULL)
1679 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001680
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001681 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001682
1683 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1684 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1685 return (0);
1686}
1687
1688int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001689mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001690{
1691 Key *key = NULL;
1692 u_char *blob;
1693 u_int blen;
1694
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001695 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001696
1697 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001698 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001699 blob = buffer_get_string(m, &blen);
1700 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001701 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001702 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001703 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001704 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001705 fatal("%s: received bad key", __func__);
Damien Miller923e8bb2009-02-14 16:33:31 +11001706 if (key->type != KEY_RSA)
1707 fatal("%s: received bad key type %d", __func__, key->type);
1708 key->type = KEY_RSA1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709 if (ssh1_challenge)
1710 BN_clear_free(ssh1_challenge);
1711 ssh1_challenge = auth_rsa_generate_challenge(key);
1712
1713 buffer_clear(m);
1714 buffer_put_bignum2(m, ssh1_challenge);
1715
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001716 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001717 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001718
1719 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001720
Darren Tuckera627d422013-06-02 07:31:17 +10001721 free(blob);
Damien Miller00111382003-03-10 11:21:17 +11001722 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001723 return (0);
1724}
1725
1726int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001727mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001728{
1729 Key *key = NULL;
1730 u_char *blob, *response;
1731 u_int blen, len;
1732 int success;
1733
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001734 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001735
1736 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001737 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001738 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001739 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001740
1741 blob = buffer_get_string(m, &blen);
1742 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001743 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001744 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001745 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001746 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001747 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001748 response = buffer_get_string(m, &len);
1749 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001750 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001751 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1752
Darren Tuckera627d422013-06-02 07:31:17 +10001753 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001754 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +10001755 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001756
1757 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1758
1759 /* reset state */
1760 BN_clear_free(ssh1_challenge);
1761 ssh1_challenge = NULL;
1762 monitor_reset_key_state();
1763
1764 buffer_clear(m);
1765 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001766 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001767
1768 return (success);
1769}
Damien Miller1f0311c2014-05-15 14:24:09 +10001770#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001771
1772int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001773mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001774{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001775 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001776 int res, status;
1777
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001778 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001779
1780 /* The child is terminating */
1781 session_destroy_all(&mm_session_close);
1782
Darren Tucker52358d62008-03-11 22:58:25 +11001783#ifdef USE_PAM
1784 if (options.use_pam)
1785 sshpam_cleanup();
1786#endif
1787
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001788 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001789 if (errno != EINTR)
1790 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001791
1792 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1793
1794 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001795 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001796}
1797
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001798#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001799/* Report that an audit event occurred */
1800int
1801mm_answer_audit_event(int socket, Buffer *m)
1802{
1803 ssh_audit_event_t event;
1804
1805 debug3("%s entering", __func__);
1806
1807 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001808 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001809 case SSH_AUTH_FAIL_PUBKEY:
1810 case SSH_AUTH_FAIL_HOSTBASED:
1811 case SSH_AUTH_FAIL_GSSAPI:
1812 case SSH_LOGIN_EXCEED_MAXTRIES:
1813 case SSH_LOGIN_ROOT_DENIED:
1814 case SSH_CONNECTION_CLOSE:
1815 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001816 audit_event(event);
1817 break;
1818 default:
1819 fatal("Audit event type %d not permitted", event);
1820 }
1821
1822 return (0);
1823}
1824
1825int
1826mm_answer_audit_command(int socket, Buffer *m)
1827{
1828 u_int len;
1829 char *cmd;
1830
1831 debug3("%s entering", __func__);
1832 cmd = buffer_get_string(m, &len);
1833 /* sanity check command, if so how? */
1834 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001835 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001836 return (0);
1837}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001838#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001839
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001840void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001841monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001842{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001843 struct ssh *ssh = active_state; /* XXX */
1844 struct kex *kex;
1845 int r;
1846
1847 debug3("%s: packet_set_state", __func__);
1848 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1849 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1850 sshbuf_free(child_state);
1851 child_state = NULL;
1852
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001853 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001854 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001855#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001856 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1857 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
1858 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1859 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001860# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001861 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001862# endif
Damien Miller773dda22015-01-30 23:10:17 +11001863#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001864 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1865 kex->load_host_public_key=&get_hostkey_public_by_type;
1866 kex->load_host_private_key=&get_hostkey_private_by_type;
1867 kex->host_key_index=&get_hostkey_index;
1868 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001869 }
1870
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001871 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001872 if (options.compression) {
1873 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1874 (ssh_packet_comp_alloc_func *)mm_zalloc,
1875 (ssh_packet_comp_free_func *)mm_zfree);
1876 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001877}
1878
1879/* This function requries careful sanity checking */
1880
1881void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001882mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001883{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001884 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001885
markus@openbsd.org091c3022015-01-19 19:52:16 +00001886 if ((child_state = sshbuf_new()) == NULL)
1887 fatal("%s: sshbuf_new failed", __func__);
1888 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1889 child_state);
1890 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001891}
1892
1893
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001894/* XXX */
1895
1896#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001897 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001898 fatal("fcntl(%d, F_SETFD)", x); \
1899} while (0)
1900
1901static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001902monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001903{
Damien Miller8f0bf232011-06-20 14:42:23 +10001904 int pair[2];
1905
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001906 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001907 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001908 FD_CLOSEONEXEC(pair[0]);
1909 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001910 mon->m_recvfd = pair[0];
1911 mon->m_sendfd = pair[1];
1912
1913 if (do_logfds) {
1914 if (pipe(pair) == -1)
1915 fatal("%s: pipe: %s", __func__, strerror(errno));
1916 FD_CLOSEONEXEC(pair[0]);
1917 FD_CLOSEONEXEC(pair[1]);
1918 mon->m_log_recvfd = pair[0];
1919 mon->m_log_sendfd = pair[1];
1920 } else
1921 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001922}
1923
1924#define MM_MEMSIZE 65536
1925
1926struct monitor *
1927monitor_init(void)
1928{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001929 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001930 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001931
Damien Miller07d86be2006-03-26 14:19:21 +11001932 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001933
Damien Miller8f0bf232011-06-20 14:42:23 +10001934 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001935
1936 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001937 if (options.compression) {
1938 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1939 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001940
Damien Miller2d6b8332002-06-21 15:59:49 +10001941 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001942 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1943 (ssh_packet_comp_alloc_func *)mm_zalloc,
1944 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001945 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001946
1947 return mon;
1948}
1949
1950void
1951monitor_reinit(struct monitor *mon)
1952{
Damien Miller8f0bf232011-06-20 14:42:23 +10001953 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001954}
Darren Tucker0efd1552003-08-26 11:49:55 +10001955
1956#ifdef GSSAPI
1957int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001958mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001959{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001960 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001961 OM_uint32 major;
1962 u_int len;
1963
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001964 goid.elements = buffer_get_string(m, &len);
1965 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001966
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001967 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001968
Darren Tuckera627d422013-06-02 07:31:17 +10001969 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001970
1971 buffer_clear(m);
1972 buffer_put_int(m, major);
1973
Damien Miller6fd6def2005-11-05 15:07:05 +11001974 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001975
1976 /* Now we have a context, enable the step */
1977 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1978
1979 return (0);
1980}
1981
1982int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001983mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001984{
1985 gss_buffer_desc in;
1986 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001987 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001988 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001989 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001990
Darren Tucker600ad8d2003-08-26 12:10:48 +10001991 in.value = buffer_get_string(m, &len);
1992 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001993 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001994 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10001995
1996 buffer_clear(m);
1997 buffer_put_int(m, major);
1998 buffer_put_string(m, out.value, out.length);
1999 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002000 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002001
2002 gss_release_buffer(&minor, &out);
2003
Damien Miller6fd6def2005-11-05 15:07:05 +11002004 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10002005 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
2006 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11002007 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10002008 }
2009 return (0);
2010}
2011
2012int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002013mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11002014{
2015 gss_buffer_desc gssbuf, mic;
2016 OM_uint32 ret;
2017 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002018
Damien Miller0425d402003-11-17 22:18:21 +11002019 gssbuf.value = buffer_get_string(m, &len);
2020 gssbuf.length = len;
2021 mic.value = buffer_get_string(m, &len);
2022 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002023
Damien Miller0425d402003-11-17 22:18:21 +11002024 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11002025
Darren Tuckera627d422013-06-02 07:31:17 +10002026 free(gssbuf.value);
2027 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11002028
Damien Miller0425d402003-11-17 22:18:21 +11002029 buffer_clear(m);
2030 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11002031
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002032 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11002033
Damien Miller0425d402003-11-17 22:18:21 +11002034 if (!GSS_ERROR(ret))
2035 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11002036
Damien Miller0425d402003-11-17 22:18:21 +11002037 return (0);
2038}
2039
2040int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002041mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002042{
2043 int authenticated;
2044
2045 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
2046
2047 buffer_clear(m);
2048 buffer_put_int(m, authenticated);
2049
2050 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002051 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002052
Damien Miller6fd6def2005-11-05 15:07:05 +11002053 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10002054
2055 /* Monitor loop will terminate if authenticated */
2056 return (authenticated);
2057}
2058#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11002059