blob: dce920c23c28334fbbde04ad55e3315a762d3808 [file] [log] [blame]
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001/* $OpenBSD: monitor.c,v 1.159 2016/05/02 08:49:03 djm Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110029
30#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100031#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110033#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000034
Darren Tucker39972492006-07-12 22:22:46 +100035#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100036#include <fcntl.h>
djm@openbsd.org1a31d022016-05-02 08:49:03 +000037#include <limits.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110038#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110039#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110040#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100041#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110042#include <signal.h>
Damien Miller9af21972015-02-24 09:04:32 +110043#ifdef HAVE_STDINT_H
millert@openbsd.orgfd368342015-02-06 23:21:59 +000044#include <stdint.h>
Damien Miller9af21972015-02-24 09:04:32 +110045#endif
Damien Millere7a1e5c2006-08-05 11:34:19 +100046#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100047#include <string.h>
Damien Miller86687062014-07-02 15:28:02 +100048#include <stdarg.h>
49#include <stdio.h>
Damien Miller607aede2006-09-01 15:48:19 +100050#include <unistd.h>
Damien Miller8f0bf232011-06-20 14:42:23 +100051#ifdef HAVE_POLL_H
52#include <poll.h>
53#else
54# ifdef HAVE_SYS_POLL_H
55# include <sys/poll.h>
56# endif
57#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000058
59#ifdef SKEY
60#include <skey.h>
61#endif
62
Damien Miller1f0311c2014-05-15 14:24:09 +100063#ifdef WITH_OPENSSL
Damien Miller03e20032006-03-15 11:16:59 +110064#include <openssl/dh.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100065#endif
Damien Miller03e20032006-03-15 11:16:59 +110066
Damien Millerb84886b2008-05-19 15:05:07 +100067#include "openbsd-compat/sys-queue.h"
Damien Miller8f0bf232011-06-20 14:42:23 +100068#include "atomicio.h"
Damien Millerd7834352006-08-05 12:39:39 +100069#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "key.h"
72#include "buffer.h"
73#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000074#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100075#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000076#include "kex.h"
77#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000078#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
79#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000080#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000081#define TARGET_OS_MAC 1
82#else
83#include "zlib.h"
84#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000085#include "packet.h"
86#include "auth-options.h"
87#include "sshpty.h"
88#include "channels.h"
89#include "session.h"
90#include "sshlogin.h"
91#include "canohost.h"
92#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100093#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000094#include "servconf.h"
95#include "monitor.h"
96#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100097#ifdef GSSAPI
98#include "ssh-gss.h"
99#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000100#include "monitor_wrap.h"
101#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000102#include "compat.h"
103#include "ssh2.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.org24c9bde2016-02-15 23:32:37 +0000688 struct sshbuf *sigbuf = NULL;
689 u_char *p = NULL, *signature = NULL;
690 char *alg = NULL;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000691 size_t datlen, siglen, alglen;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000692 int r, is_proof = 0;
693 u_int keyid;
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));
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000702 if (keyid > INT_MAX)
703 fatal("%s: invalid key ID", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000704
Damien Millera63128d2006-03-15 12:08:28 +1100705 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000706 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
707 * SHA384 (48 bytes) and SHA512 (64 bytes).
djm@openbsd.org523463a2015-02-16 22:13:32 +0000708 *
709 * Otherwise, verify the signature request is for a hostkey
710 * proof.
711 *
712 * XXX perform similar check for KEX signature requests too?
713 * it's not trivial, since what is signed is the hash, rather
714 * than the full kex structure...
Damien Millera63128d2006-03-15 12:08:28 +1100715 */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000716 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64) {
717 /*
718 * Construct expected hostkey proof and compare it to what
719 * the client sent us.
720 */
721 if (session_id2_len == 0) /* hostkeys is never first */
722 fatal("%s: bad data length: %zu", __func__, datlen);
723 if ((key = get_hostkey_public_by_index(keyid, ssh)) == NULL)
724 fatal("%s: no hostkey for index %d", __func__, keyid);
725 if ((sigbuf = sshbuf_new()) == NULL)
726 fatal("%s: sshbuf_new", __func__);
djm@openbsd.org44732de2015-02-20 22:17:21 +0000727 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
728 (r = sshbuf_put_string(sigbuf, session_id2,
jsg@openbsd.orgf3a3ea12015-09-02 07:51:12 +0000729 session_id2_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000730 (r = sshkey_puts(key, sigbuf)) != 0)
731 fatal("%s: couldn't prepare private key "
732 "proof buffer: %s", __func__, ssh_err(r));
733 if (datlen != sshbuf_len(sigbuf) ||
734 memcmp(p, sshbuf_ptr(sigbuf), sshbuf_len(sigbuf)) != 0)
735 fatal("%s: bad data length: %zu, hostkey proof len %zu",
736 __func__, datlen, sshbuf_len(sigbuf));
737 sshbuf_free(sigbuf);
738 is_proof = 1;
739 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000740
Ben Lindstromf67e0772002-06-06 20:58:19 +0000741 /* save session id, it will be passed on the first call */
742 if (session_id2_len == 0) {
743 session_id2_len = datlen;
744 session_id2 = xmalloc(session_id2_len);
745 memcpy(session_id2, p, session_id2_len);
746 }
747
Damien Miller85b45e02013-07-20 13:21:52 +1000748 if ((key = get_hostkey_by_index(keyid)) != NULL) {
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000749 if ((r = sshkey_sign(key, &signature, &siglen, p, datlen, alg,
djm@openbsd.org141efe42015-01-14 20:05:27 +0000750 datafellows)) != 0)
751 fatal("%s: sshkey_sign failed: %s",
752 __func__, ssh_err(r));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000753 } else if ((key = get_hostkey_public_by_index(keyid, ssh)) != NULL &&
djm@openbsd.org141efe42015-01-14 20:05:27 +0000754 auth_sock > 0) {
755 if ((r = ssh_agent_sign(auth_sock, key, &signature, &siglen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000756 p, datlen, alg, datafellows)) != 0) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000757 fatal("%s: ssh_agent_sign failed: %s",
758 __func__, ssh_err(r));
759 }
Damien Miller85b45e02013-07-20 13:21:52 +1000760 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000761 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000762
djm@openbsd.org523463a2015-02-16 22:13:32 +0000763 debug3("%s: %s signature %p(%zu)", __func__,
764 is_proof ? "KEX" : "hostkey proof", signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000765
djm@openbsd.org141efe42015-01-14 20:05:27 +0000766 sshbuf_reset(m);
767 if ((r = sshbuf_put_string(m, signature, siglen)) != 0)
768 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000769
djm@openbsd.org24c9bde2016-02-15 23:32:37 +0000770 free(alg);
Darren Tuckera627d422013-06-02 07:31:17 +1000771 free(p);
772 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000773
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000774 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000775
776 /* Turn on permissions for getpwnam */
777 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
778
779 return (0);
780}
781
782/* Retrieves the password entry and also checks if the user is permitted */
783
784int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000785mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000786{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000787 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000788 struct passwd *pwent;
789 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000790 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000791
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000792 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000793
794 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000795 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000796
Darren Tuckerb09b6772004-06-22 15:06:46 +1000797 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000798
Darren Tuckerb09b6772004-06-22 15:06:46 +1000799 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000800
Darren Tuckerb09b6772004-06-22 15:06:46 +1000801 authctxt->user = xstrdup(username);
802 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000803 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000804
805 buffer_clear(m);
806
807 if (pwent == NULL) {
808 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100809 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000810 goto out;
811 }
812
813 allowed = 1;
814 authctxt->pw = pwent;
815 authctxt->valid = 1;
816
817 buffer_put_char(m, 1);
818 buffer_put_string(m, pwent, sizeof(struct passwd));
819 buffer_put_cstring(m, pwent->pw_name);
820 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000821#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000822 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000823#endif
824#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000825 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000826#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000827 buffer_put_cstring(m, pwent->pw_dir);
828 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100829
830 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100831 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000832
833#define M_CP_STROPT(x) do { \
834 if (options.x != NULL) \
835 buffer_put_cstring(m, options.x); \
836 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000837#define M_CP_STRARRAYOPT(x, nx) do { \
838 for (i = 0; i < options.nx; i++) \
839 buffer_put_cstring(m, options.x[i]); \
840 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000841 /* See comment in servconf.h */
842 COPY_MATCH_STRING_OPTS();
843#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000844#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100845
846 /* Create valid auth method lists */
847 if (compat20 && auth2_setup_methods_lists(authctxt) != 0) {
848 /*
849 * The monitor will continue long enough to let the child
850 * run to it's packet_disconnect(), but it must not allow any
851 * authentication to succeed.
852 */
853 debug("%s: no valid authentication method lists", __func__);
854 }
855
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000856 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000857 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000858
859 /* For SSHv1 allow authentication now */
860 if (!compat20)
861 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000862 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000863 /* Allow service/style information on the auth context */
864 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000865 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
866 }
Damien Millera33501b2002-05-08 12:24:42 +1000867#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000868 if (options.use_pam)
869 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000870#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000871
872 return (0);
873}
874
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000875int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000876{
877 char *banner;
878
879 buffer_clear(m);
880 banner = auth2_read_banner();
881 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000882 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000883 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000884
885 return (0);
886}
887
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000888int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000889mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000890{
891 monitor_permit_authentications(1);
892
893 authctxt->service = buffer_get_string(m, NULL);
894 authctxt->style = buffer_get_string(m, NULL);
895 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000896 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000897
898 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000899 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000900 authctxt->style = NULL;
901 }
902
903 return (0);
904}
905
906int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000907mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000908{
909 static int call_count;
910 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000911 int authenticated;
912 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000913
914 passwd = buffer_get_string(m, &plen);
915 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000916 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000917 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100918 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000919 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000920
921 buffer_clear(m);
922 buffer_put_int(m, authenticated);
923
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000924 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000925 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000926
927 call_count++;
928 if (plen == 0 && call_count == 1)
929 auth_method = "none";
930 else
931 auth_method = "password";
932
933 /* Causes monitor loop to terminate if authenticated */
934 return (authenticated);
935}
936
937#ifdef BSD_AUTH
938int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000939mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000940{
941 char *name, *infotxt;
942 u_int numprompts;
943 u_int *echo_on;
944 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100945 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000946
Damien Millerb7df3af2003-02-24 11:55:46 +1100947 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
948 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000949
950 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100951 buffer_put_int(m, success);
952 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000953 buffer_put_cstring(m, prompts[0]);
954
Damien Millerb7df3af2003-02-24 11:55:46 +1100955 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000956 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000957
Damien Millerb7df3af2003-02-24 11:55:46 +1100958 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000959 free(name);
960 free(infotxt);
961 free(prompts);
962 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000963 }
964
965 return (0);
966}
967
968int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000969mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000970{
971 char *response;
972 int authok;
973
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +0000974 if (authctxt->as == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000975 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000976
977 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000978 authok = options.challenge_response_authentication &&
979 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000980 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000981 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000982 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000983
984 buffer_clear(m);
985 buffer_put_int(m, authok);
986
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000987 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000988 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000989
Damien Miller91a55f22013-04-23 15:18:10 +1000990 if (compat20) {
991 auth_method = "keyboard-interactive";
992 auth_submethod = "bsdauth";
993 } else
Damien Millera6e3f012012-11-04 23:21:40 +1100994 auth_method = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000995
996 return (authok != 0);
997}
998#endif
999
1000#ifdef SKEY
1001int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001002mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001003{
1004 struct skey skey;
1005 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +11001006 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001007
Darren Tucker06a8cfe2004-04-14 17:24:30 +10001008 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
1009 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001010
1011 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +11001012 buffer_put_int(m, success);
1013 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001014 buffer_put_cstring(m, challenge);
1015
Damien Millerb7df3af2003-02-24 11:55:46 +11001016 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001017 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001018
1019 return (0);
1020}
1021
1022int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001023mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001024{
1025 char *response;
1026 int authok;
1027
1028 response = buffer_get_string(m, NULL);
1029
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001030 authok = (options.challenge_response_authentication &&
1031 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001032 skey_haskey(authctxt->pw->pw_name) == 0 &&
1033 skey_passcheck(authctxt->pw->pw_name, response) != -1);
1034
Darren Tuckerf60845f2013-06-02 08:07:31 +10001035 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001036
1037 buffer_clear(m);
1038 buffer_put_int(m, authok);
1039
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001040 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001041 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001042
Damien Millerac947352015-11-20 12:35:41 +11001043 auth_method = "keyboard-interactive";
1044 auth_submethod = "skey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001045
1046 return (authok != 0);
1047}
1048#endif
1049
Damien Miller79418552002-04-23 20:28:48 +10001050#ifdef USE_PAM
1051int
Darren Tucker7eda5922004-06-22 13:22:50 +10001052mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +10001053{
Damien Miller4e448a32003-05-14 15:11:48 +10001054 if (!options.use_pam)
1055 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1056
Darren Tuckerdbf7a742004-03-08 23:04:06 +11001057 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +10001058
Damien Miller1f499fd2003-08-25 13:08:49 +10001059 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
1060
Damien Miller79418552002-04-23 20:28:48 +10001061 return (0);
1062}
Damien Miller4f9f42a2003-05-10 19:28:02 +10001063
Damien Miller1f499fd2003-08-25 13:08:49 +10001064int
Darren Tucker7eda5922004-06-22 13:22:50 +10001065mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001066{
1067 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001068
Damien Miller1f499fd2003-08-25 13:08:49 +10001069 if (!options.use_pam)
1070 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1071
1072 ret = do_pam_account();
1073
1074 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001075 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001076
Darren Tucker7eda5922004-06-22 13:22:50 +10001077 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001078
1079 return (ret);
1080}
1081
Damien Miller4f9f42a2003-05-10 19:28:02 +10001082static void *sshpam_ctxt, *sshpam_authok;
1083extern KbdintDevice sshpam_device;
1084
1085int
Darren Tucker7eda5922004-06-22 13:22:50 +10001086mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001087{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001088 debug3("%s", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001089 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1090 sshpam_authok = NULL;
1091 buffer_clear(m);
1092 if (sshpam_ctxt != NULL) {
1093 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
1094 buffer_put_int(m, 1);
1095 } else {
1096 buffer_put_int(m, 0);
1097 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001098 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001099 return (0);
1100}
1101
1102int
Darren Tucker7eda5922004-06-22 13:22:50 +10001103mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001104{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001105 char *name = NULL, *info = NULL, **prompts = NULL;
1106 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001107 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001108
1109 debug3("%s", __func__);
1110 sshpam_authok = NULL;
1111 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1112 if (ret == 0 && num == 0)
1113 sshpam_authok = sshpam_ctxt;
1114 if (num > 1 || name == NULL || info == NULL)
1115 ret = -1;
1116 buffer_clear(m);
1117 buffer_put_int(m, ret);
1118 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001119 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001120 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001121 free(info);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001122 buffer_put_int(m, num);
1123 for (i = 0; i < num; ++i) {
1124 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001125 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001126 buffer_put_int(m, echo_on[i]);
1127 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001128 free(prompts);
1129 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001130 auth_method = "keyboard-interactive";
1131 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001132 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001133 return (0);
1134}
1135
1136int
Darren Tucker7eda5922004-06-22 13:22:50 +10001137mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001138{
1139 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001140 u_int i, num;
1141 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001142
1143 debug3("%s", __func__);
1144 sshpam_authok = NULL;
1145 num = buffer_get_int(m);
1146 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001147 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001148 for (i = 0; i < num; ++i)
1149 resp[i] = buffer_get_string(m, NULL);
1150 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1151 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001152 free(resp[i]);
1153 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001154 } else {
1155 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1156 }
1157 buffer_clear(m);
1158 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001159 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001160 auth_method = "keyboard-interactive";
1161 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001162 if (ret == 0)
1163 sshpam_authok = sshpam_ctxt;
1164 return (0);
1165}
1166
1167int
Darren Tucker7eda5922004-06-22 13:22:50 +10001168mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001169{
Damien Miller5e75f512015-08-11 13:34:12 +10001170 int r = sshpam_authok != NULL && sshpam_authok == sshpam_ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001171
1172 debug3("%s", __func__);
1173 (sshpam_device.free_ctx)(sshpam_ctxt);
Damien Miller5e75f512015-08-11 13:34:12 +10001174 sshpam_ctxt = sshpam_authok = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001175 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001176 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001177 auth_method = "keyboard-interactive";
1178 auth_submethod = "pam";
Damien Miller5e75f512015-08-11 13:34:12 +10001179 return r;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001180}
Damien Miller79418552002-04-23 20:28:48 +10001181#endif
1182
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001183int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001184mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001185{
1186 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001187 char *cuser, *chost;
1188 u_char *blob;
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001189 u_int bloblen, pubkey_auth_attempt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001190 enum mm_keytype type = 0;
1191 int allowed = 0;
1192
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001193 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001194
1195 type = buffer_get_int(m);
1196 cuser = buffer_get_string(m, NULL);
1197 chost = buffer_get_string(m, NULL);
1198 blob = buffer_get_string(m, &bloblen);
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001199 pubkey_auth_attempt = buffer_get_int(m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001200
1201 key = key_from_blob(blob, bloblen);
1202
1203 if ((compat20 && type == MM_RSAHOSTKEY) ||
1204 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001205 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001206
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001207 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001208
Damien Miller3e3b5142003-11-17 21:13:40 +11001209 if (key != NULL && authctxt->valid) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001210 /* These should not make it past the privsep child */
1211 if (key_type_plain(key->type) == KEY_RSA &&
1212 (datafellows & SSH_BUG_RSASIGMD5) != 0)
1213 fatal("%s: passed a SSH_BUG_RSASIGMD5 key", __func__);
1214
Darren Tucker47eede72005-03-14 23:08:12 +11001215 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001216 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001217 allowed = options.pubkey_authentication &&
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001218 !auth2_userkey_already_used(authctxt, key) &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001219 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001220 options.pubkey_key_types, 0) == 1 &&
1221 user_key_allowed(authctxt->pw, key,
1222 pubkey_auth_attempt);
Damien Miller20bdcd72013-07-18 16:10:09 +10001223 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001224 auth_method = "publickey";
djm@openbsd.org179be0f2015-05-01 03:23:51 +00001225 if (options.pubkey_authentication &&
1226 (!pubkey_auth_attempt || allowed != 1))
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001227 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001228 break;
1229 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001230 allowed = options.hostbased_authentication &&
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001231 match_pattern_list(sshkey_ssh_name(key),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001232 options.hostbased_key_types, 0) == 1 &&
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001233 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001234 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001235 pubkey_auth_info(authctxt, key,
1236 "client user \"%.100s\", client host \"%.100s\"",
1237 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001238 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001239 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001240#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001241 case MM_RSAHOSTKEY:
1242 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001243 allowed = options.rhosts_rsa_authentication &&
1244 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001245 cuser, chost, key);
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001246 if (options.rhosts_rsa_authentication && allowed != 1)
1247 auth_clear_options();
Damien Miller7a8f5b32006-03-31 23:14:23 +11001248 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001249 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001250#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001251 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001252 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001253 break;
1254 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001255 }
Damien Miller00111382003-03-10 11:21:17 +11001256 if (key != NULL)
1257 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001258
1259 /* clear temporarily storage (used by verify) */
1260 monitor_reset_key_state();
1261
1262 if (allowed) {
1263 /* Save temporarily for comparison in verify */
1264 key_blob = blob;
1265 key_bloblen = bloblen;
1266 key_blobtype = type;
1267 hostbased_cuser = cuser;
1268 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001269 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001270 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001271 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001272 free(blob);
1273 free(cuser);
1274 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001275 }
1276
1277 debug3("%s: key %p is %s",
Darren Tucker2784f1f2008-07-04 13:51:45 +10001278 __func__, key, allowed ? "allowed" : "not allowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001279
1280 buffer_clear(m);
1281 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001282 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001283
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001284 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001285
1286 if (type == MM_RSAHOSTKEY)
1287 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1288
1289 return (0);
1290}
1291
1292static int
1293monitor_valid_userblob(u_char *data, u_int datalen)
1294{
1295 Buffer b;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001296 u_char *p;
1297 char *userstyle, *cp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001298 u_int len;
1299 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001300
1301 buffer_init(&b);
1302 buffer_append(&b, data, datalen);
1303
1304 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001305 p = buffer_ptr(&b);
1306 len = buffer_len(&b);
1307 if ((session_id2 == NULL) ||
1308 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001309 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001310 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001311 buffer_consume(&b, session_id2_len);
1312 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001313 p = buffer_get_string(&b, &len);
1314 if ((session_id2 == NULL) ||
1315 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001316 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001317 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001318 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001319 }
1320 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1321 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001322 cp = buffer_get_cstring(&b, NULL);
Damien Miller4ce189d2013-04-23 15:17:52 +10001323 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1324 authctxt->style ? ":" : "",
1325 authctxt->style ? authctxt->style : "");
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001326 if (strcmp(userstyle, cp) != 0) {
1327 logit("wrong user name passed to monitor: "
1328 "expected %s != %.100s", userstyle, cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001329 fail++;
1330 }
Darren Tuckera627d422013-06-02 07:31:17 +10001331 free(userstyle);
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001332 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001333 buffer_skip_string(&b);
1334 if (datafellows & SSH_BUG_PKAUTH) {
1335 if (!buffer_get_char(&b))
1336 fail++;
1337 } else {
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001338 cp = buffer_get_cstring(&b, NULL);
1339 if (strcmp("publickey", cp) != 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340 fail++;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001341 free(cp);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001342 if (!buffer_get_char(&b))
1343 fail++;
1344 buffer_skip_string(&b);
1345 }
1346 buffer_skip_string(&b);
1347 if (buffer_len(&b) != 0)
1348 fail++;
1349 buffer_free(&b);
1350 return (fail == 0);
1351}
1352
1353static int
Damien Millera10f5612002-09-12 09:49:15 +10001354monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1355 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001356{
1357 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001358 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001359 u_int len;
1360 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001361
1362 buffer_init(&b);
1363 buffer_append(&b, data, datalen);
1364
Ben Lindstromf67e0772002-06-06 20:58:19 +00001365 p = buffer_get_string(&b, &len);
1366 if ((session_id2 == NULL) ||
1367 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001368 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001369 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001370 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001371
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001372 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1373 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001374 p = buffer_get_cstring(&b, NULL);
1375 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1376 authctxt->style ? ":" : "",
1377 authctxt->style ? authctxt->style : "");
1378 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001379 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001380 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001381 fail++;
1382 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001383 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001384 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001385 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001386 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001387 if (strcmp(p, "hostbased") != 0)
1388 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001389 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001390 buffer_skip_string(&b); /* pkalg */
1391 buffer_skip_string(&b); /* pkblob */
1392
1393 /* verify client host, strip trailing dot if necessary */
1394 p = buffer_get_string(&b, NULL);
1395 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1396 p[len - 1] = '\0';
1397 if (strcmp(p, chost) != 0)
1398 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001399 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001400
1401 /* verify client user */
1402 p = buffer_get_string(&b, NULL);
1403 if (strcmp(p, cuser) != 0)
1404 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001405 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001406
1407 if (buffer_len(&b) != 0)
1408 fail++;
1409 buffer_free(&b);
1410 return (fail == 0);
1411}
1412
1413int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001414mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001415{
1416 Key *key;
1417 u_char *signature, *data, *blob;
1418 u_int signaturelen, datalen, bloblen;
1419 int verified = 0;
1420 int valid_data = 0;
1421
1422 blob = buffer_get_string(m, &bloblen);
1423 signature = buffer_get_string(m, &signaturelen);
1424 data = buffer_get_string(m, &datalen);
1425
1426 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001427 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001428 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001429
1430 key = key_from_blob(blob, bloblen);
1431 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001432 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001433
1434 switch (key_blobtype) {
1435 case MM_USERKEY:
1436 valid_data = monitor_valid_userblob(data, datalen);
1437 break;
1438 case MM_HOSTKEY:
1439 valid_data = monitor_valid_hostbasedblob(data, datalen,
1440 hostbased_cuser, hostbased_chost);
1441 break;
1442 default:
1443 valid_data = 0;
1444 break;
1445 }
1446 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001447 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001448
1449 verified = key_verify(key, signature, signaturelen, data, datalen);
1450 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001451 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001452
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001453 /* If auth was successful then record key to ensure it isn't reused */
djm@openbsd.orgf54d8ac2015-09-04 04:44:08 +00001454 if (verified == 1 && key_blobtype == MM_USERKEY)
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +00001455 auth2_record_userkey(authctxt, key);
1456 else
1457 key_free(key);
1458
Darren Tuckera627d422013-06-02 07:31:17 +10001459 free(blob);
1460 free(signature);
1461 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001462
Ben Lindstrome1c09122002-06-23 00:38:24 +00001463 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1464
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001465 monitor_reset_key_state();
1466
1467 buffer_clear(m);
1468 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001469 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001470
Darren Tuckerfbba7352006-11-07 23:16:08 +11001471 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001472}
1473
1474static void
1475mm_record_login(Session *s, struct passwd *pw)
1476{
djm@openbsd.org95767262016-03-07 19:02:43 +00001477 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001478 socklen_t fromlen;
1479 struct sockaddr_storage from;
1480
djm@openbsd.org17d4d9d2015-04-17 04:32:31 +00001481 if (options.use_login)
1482 return;
1483
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001484 /*
1485 * Get IP address of client. If the connection is not a socket, let
1486 * the address be 0.0.0.0.
1487 */
1488 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001489 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001490 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001491 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001492 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001493 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001494 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001495 }
1496 }
1497 /* Record that there was a login on that tty from the remote host. */
1498 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
djm@openbsd.org95767262016-03-07 19:02:43 +00001499 session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001500 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001501}
1502
1503static void
1504mm_session_close(Session *s)
1505{
Damien Miller04bd8b02003-05-25 14:38:33 +10001506 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001508 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001509 session_pty_cleanup2(s);
1510 }
Damien Miller7207f642008-05-19 15:34:50 +10001511 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001512}
1513
1514int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001515mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001516{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001517 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001518 Session *s;
1519 int res, fd0;
1520
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001521 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001522
1523 buffer_clear(m);
1524 s = session_new();
1525 if (s == NULL)
1526 goto error;
1527 s->authctxt = authctxt;
1528 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001529 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001530 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1531 if (res == 0)
1532 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001533 pty_setowner(authctxt->pw, s->tty);
1534
1535 buffer_put_int(m, 1);
1536 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001537
1538 /* We need to trick ttyslot */
1539 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001540 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001541
1542 mm_record_login(s, authctxt->pw);
1543
1544 /* Now we can close the file descriptor again */
1545 close(0);
1546
Darren Tucker09991742004-07-17 17:05:14 +10001547 /* send messages generated by record_login */
1548 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1549 buffer_clear(&loginmsg);
1550
1551 mm_request_send(sock, MONITOR_ANS_PTY, m);
1552
Damien Miller54fd7cf2007-09-17 12:04:08 +10001553 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1554 mm_send_fd(sock, s->ttyfd) == -1)
1555 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001556
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001557 /* make sure nothing uses fd 0 */
1558 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001559 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001560 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001561 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001562
1563 /* slave is not needed */
1564 close(s->ttyfd);
1565 s->ttyfd = s->ptyfd;
1566 /* no need to dup() because nobody closes ptyfd */
1567 s->ptymaster = s->ptyfd;
1568
Damien Miller9ab00b42006-08-05 12:40:11 +10001569 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001570
1571 return (0);
1572
1573 error:
1574 if (s != NULL)
1575 mm_session_close(s);
1576 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001577 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001578 return (0);
1579}
1580
1581int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001582mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001583{
1584 Session *s;
1585 char *tty;
1586
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001587 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001588
1589 tty = buffer_get_string(m, NULL);
1590 if ((s = session_by_tty(tty)) != NULL)
1591 mm_session_close(s);
1592 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001593 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001594 return (0);
1595}
1596
Damien Miller1f0311c2014-05-15 14:24:09 +10001597#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001598int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001599mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001600{
1601 BIGNUM *p;
1602 int rsafail;
1603
1604 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001605 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001606
1607 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001608 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001609
1610 buffer_get_bignum2(m, p);
1611
1612 rsafail = ssh1_session_key(p);
1613
1614 buffer_clear(m);
1615 buffer_put_int(m, rsafail);
1616 buffer_put_bignum2(m, p);
1617
1618 BN_clear_free(p);
1619
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001620 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001621
1622 /* Turn on permissions for sessid passing */
1623 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1624
1625 return (0);
1626}
1627
1628int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001629mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001630{
1631 int i;
1632
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001633 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001634
1635 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001636 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001637 for (i = 0; i < 16; i++)
1638 session_id[i] = buffer_get_char(m);
1639
1640 /* Turn on permissions for getpwnam */
1641 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1642
1643 return (0);
1644}
1645
1646int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001647mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001648{
1649 BIGNUM *client_n;
1650 Key *key = NULL;
1651 u_char *blob = NULL;
1652 u_int blen = 0;
1653 int allowed = 0;
1654
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001655 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001656
Damien Miller7a8f5b32006-03-31 23:14:23 +11001657 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001658 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001659 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001660 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001661 buffer_get_bignum2(m, client_n);
1662 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1663 BN_clear_free(client_n);
1664 }
1665 buffer_clear(m);
1666 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001667 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001668
1669 /* clear temporarily storage (used by generate challenge) */
1670 monitor_reset_key_state();
1671
1672 if (allowed && key != NULL) {
1673 key->type = KEY_RSA; /* cheat for key_to_blob */
1674 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001675 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001676 buffer_put_string(m, blob, blen);
1677
1678 /* Save temporarily for comparison in verify */
1679 key_blob = blob;
1680 key_bloblen = blen;
1681 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001682 }
Damien Miller00111382003-03-10 11:21:17 +11001683 if (key != NULL)
1684 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001685
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001686 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001687
1688 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1689 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1690 return (0);
1691}
1692
1693int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001694mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001695{
1696 Key *key = NULL;
1697 u_char *blob;
1698 u_int blen;
1699
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001700 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001701
1702 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001703 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001704 blob = buffer_get_string(m, &blen);
1705 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001706 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001707 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001708 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001710 fatal("%s: received bad key", __func__);
Damien Miller923e8bb2009-02-14 16:33:31 +11001711 if (key->type != KEY_RSA)
1712 fatal("%s: received bad key type %d", __func__, key->type);
1713 key->type = KEY_RSA1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714 if (ssh1_challenge)
1715 BN_clear_free(ssh1_challenge);
1716 ssh1_challenge = auth_rsa_generate_challenge(key);
1717
1718 buffer_clear(m);
1719 buffer_put_bignum2(m, ssh1_challenge);
1720
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001721 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001722 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001723
1724 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001725
Darren Tuckera627d422013-06-02 07:31:17 +10001726 free(blob);
Damien Miller00111382003-03-10 11:21:17 +11001727 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001728 return (0);
1729}
1730
1731int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001732mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001733{
1734 Key *key = NULL;
1735 u_char *blob, *response;
1736 u_int blen, len;
1737 int success;
1738
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001739 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001740
1741 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001742 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001743 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001744 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001745
1746 blob = buffer_get_string(m, &blen);
1747 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001748 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001749 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001750 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001751 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001752 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001753 response = buffer_get_string(m, &len);
1754 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001755 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001756 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1757
Darren Tuckera627d422013-06-02 07:31:17 +10001758 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001759 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +10001760 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001761
1762 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1763
1764 /* reset state */
1765 BN_clear_free(ssh1_challenge);
1766 ssh1_challenge = NULL;
1767 monitor_reset_key_state();
1768
1769 buffer_clear(m);
1770 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001771 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001772
1773 return (success);
1774}
Damien Miller1f0311c2014-05-15 14:24:09 +10001775#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001776
1777int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001778mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001779{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001780 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001781 int res, status;
1782
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001783 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001784
1785 /* The child is terminating */
1786 session_destroy_all(&mm_session_close);
1787
Darren Tucker52358d62008-03-11 22:58:25 +11001788#ifdef USE_PAM
1789 if (options.use_pam)
1790 sshpam_cleanup();
1791#endif
1792
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001793 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001794 if (errno != EINTR)
1795 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001796
1797 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1798
1799 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001800 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001801}
1802
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001803#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001804/* Report that an audit event occurred */
1805int
1806mm_answer_audit_event(int socket, Buffer *m)
1807{
1808 ssh_audit_event_t event;
1809
1810 debug3("%s entering", __func__);
1811
1812 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001813 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001814 case SSH_AUTH_FAIL_PUBKEY:
1815 case SSH_AUTH_FAIL_HOSTBASED:
1816 case SSH_AUTH_FAIL_GSSAPI:
1817 case SSH_LOGIN_EXCEED_MAXTRIES:
1818 case SSH_LOGIN_ROOT_DENIED:
1819 case SSH_CONNECTION_CLOSE:
1820 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001821 audit_event(event);
1822 break;
1823 default:
1824 fatal("Audit event type %d not permitted", event);
1825 }
1826
1827 return (0);
1828}
1829
1830int
1831mm_answer_audit_command(int socket, Buffer *m)
1832{
1833 u_int len;
1834 char *cmd;
1835
1836 debug3("%s entering", __func__);
1837 cmd = buffer_get_string(m, &len);
1838 /* sanity check command, if so how? */
1839 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001840 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001841 return (0);
1842}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001843#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001844
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001845void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001846monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001847{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001848 struct ssh *ssh = active_state; /* XXX */
1849 struct kex *kex;
1850 int r;
1851
1852 debug3("%s: packet_set_state", __func__);
1853 if ((r = ssh_packet_set_state(ssh, child_state)) != 0)
1854 fatal("%s: packet_set_state: %s", __func__, ssh_err(r));
1855 sshbuf_free(child_state);
1856 child_state = NULL;
1857
mmcc@openbsd.org7d6c0362015-10-20 23:24:25 +00001858 if ((kex = ssh->kex) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001859 /* XXX set callbacks */
Damien Miller773dda22015-01-30 23:10:17 +11001860#ifdef WITH_OPENSSL
markus@openbsd.org091c3022015-01-19 19:52:16 +00001861 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1862 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
1863 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1864 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001865# ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00001866 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11001867# endif
Damien Miller773dda22015-01-30 23:10:17 +11001868#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001869 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
1870 kex->load_host_public_key=&get_hostkey_public_by_type;
1871 kex->load_host_private_key=&get_hostkey_private_by_type;
1872 kex->host_key_index=&get_hostkey_index;
1873 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001874 }
1875
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001876 /* Update with new address */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001877 if (options.compression) {
1878 ssh_packet_set_compress_hooks(ssh, pmonitor->m_zlib,
1879 (ssh_packet_comp_alloc_func *)mm_zalloc,
1880 (ssh_packet_comp_free_func *)mm_zfree);
1881 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001882}
1883
1884/* This function requries careful sanity checking */
1885
1886void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001887mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001888{
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001889 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001890
markus@openbsd.org091c3022015-01-19 19:52:16 +00001891 if ((child_state = sshbuf_new()) == NULL)
1892 fatal("%s: sshbuf_new failed", __func__);
1893 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT,
1894 child_state);
1895 debug3("%s: GOT new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001896}
1897
1898
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001899/* XXX */
1900
1901#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10001902 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001903 fatal("fcntl(%d, F_SETFD)", x); \
1904} while (0)
1905
1906static void
Damien Miller8f0bf232011-06-20 14:42:23 +10001907monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001908{
Damien Miller8f0bf232011-06-20 14:42:23 +10001909 int pair[2];
1910
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001911 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10001912 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001913 FD_CLOSEONEXEC(pair[0]);
1914 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10001915 mon->m_recvfd = pair[0];
1916 mon->m_sendfd = pair[1];
1917
1918 if (do_logfds) {
1919 if (pipe(pair) == -1)
1920 fatal("%s: pipe: %s", __func__, strerror(errno));
1921 FD_CLOSEONEXEC(pair[0]);
1922 FD_CLOSEONEXEC(pair[1]);
1923 mon->m_log_recvfd = pair[0];
1924 mon->m_log_sendfd = pair[1];
1925 } else
1926 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001927}
1928
1929#define MM_MEMSIZE 65536
1930
1931struct monitor *
1932monitor_init(void)
1933{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001934 struct ssh *ssh = active_state; /* XXX */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001935 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001936
Damien Miller07d86be2006-03-26 14:19:21 +11001937 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001938
Damien Miller8f0bf232011-06-20 14:42:23 +10001939 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001940
1941 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001942 if (options.compression) {
1943 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1944 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001945
Damien Miller2d6b8332002-06-21 15:59:49 +10001946 /* Compression needs to share state across borders */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001947 ssh_packet_set_compress_hooks(ssh, mon->m_zlib,
1948 (ssh_packet_comp_alloc_func *)mm_zalloc,
1949 (ssh_packet_comp_free_func *)mm_zfree);
Damien Miller2d6b8332002-06-21 15:59:49 +10001950 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001951
1952 return mon;
1953}
1954
1955void
1956monitor_reinit(struct monitor *mon)
1957{
Damien Miller8f0bf232011-06-20 14:42:23 +10001958 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001959}
Darren Tucker0efd1552003-08-26 11:49:55 +10001960
1961#ifdef GSSAPI
1962int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001963mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001964{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001965 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001966 OM_uint32 major;
1967 u_int len;
1968
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001969 goid.elements = buffer_get_string(m, &len);
1970 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001971
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001972 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001973
Darren Tuckera627d422013-06-02 07:31:17 +10001974 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001975
1976 buffer_clear(m);
1977 buffer_put_int(m, major);
1978
Damien Miller6fd6def2005-11-05 15:07:05 +11001979 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001980
1981 /* Now we have a context, enable the step */
1982 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1983
1984 return (0);
1985}
1986
1987int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001988mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001989{
1990 gss_buffer_desc in;
1991 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001992 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001993 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001994 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001995
Darren Tucker600ad8d2003-08-26 12:10:48 +10001996 in.value = buffer_get_string(m, &len);
1997 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001998 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10001999 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10002000
2001 buffer_clear(m);
2002 buffer_put_int(m, major);
2003 buffer_put_string(m, out.value, out.length);
2004 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002005 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002006
2007 gss_release_buffer(&minor, &out);
2008
Damien Miller6fd6def2005-11-05 15:07:05 +11002009 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10002010 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
2011 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11002012 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10002013 }
2014 return (0);
2015}
2016
2017int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002018mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11002019{
2020 gss_buffer_desc gssbuf, mic;
2021 OM_uint32 ret;
2022 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002023
Damien Miller0425d402003-11-17 22:18:21 +11002024 gssbuf.value = buffer_get_string(m, &len);
2025 gssbuf.length = len;
2026 mic.value = buffer_get_string(m, &len);
2027 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002028
Damien Miller0425d402003-11-17 22:18:21 +11002029 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11002030
Darren Tuckera627d422013-06-02 07:31:17 +10002031 free(gssbuf.value);
2032 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11002033
Damien Miller0425d402003-11-17 22:18:21 +11002034 buffer_clear(m);
2035 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11002036
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002037 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11002038
Damien Miller0425d402003-11-17 22:18:21 +11002039 if (!GSS_ERROR(ret))
2040 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11002041
Damien Miller0425d402003-11-17 22:18:21 +11002042 return (0);
2043}
2044
2045int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002046mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002047{
2048 int authenticated;
2049
2050 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
2051
2052 buffer_clear(m);
2053 buffer_put_int(m, authenticated);
2054
2055 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002056 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002057
Damien Miller6fd6def2005-11-05 15:07:05 +11002058 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10002059
2060 /* Monitor loop will terminate if authenticated */
2061 return (authenticated);
2062}
2063#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11002064