blob: 72d71c4d397ab8132e995c9b45d912a388c660ac [file] [log] [blame]
Damien Miller7acefbb2014-07-18 14:11:24 +10001/* $OpenBSD: monitor.c,v 1.135 2014/07/15 15:54:14 millert Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110029
30#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100031#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100032#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100033#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110034#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000035
Darren Tucker39972492006-07-12 22:22:46 +100036#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100037#include <fcntl.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110038#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110039#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110040#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100041#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110042#include <signal.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100043#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100044#include <string.h>
Damien Miller86687062014-07-02 15:28:02 +100045#include <stdarg.h>
46#include <stdio.h>
Damien Miller607aede2006-09-01 15:48:19 +100047#include <unistd.h>
Damien Miller8f0bf232011-06-20 14:42:23 +100048#ifdef HAVE_POLL_H
49#include <poll.h>
50#else
51# ifdef HAVE_SYS_POLL_H
52# include <sys/poll.h>
53# endif
54#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000055
56#ifdef SKEY
57#include <skey.h>
58#endif
59
Damien Miller1f0311c2014-05-15 14:24:09 +100060#ifdef WITH_OPENSSL
Damien Miller03e20032006-03-15 11:16:59 +110061#include <openssl/dh.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100062#endif
Damien Miller03e20032006-03-15 11:16:59 +110063
Damien Millerb84886b2008-05-19 15:05:07 +100064#include "openbsd-compat/sys-queue.h"
Damien Miller8f0bf232011-06-20 14:42:23 +100065#include "atomicio.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000067#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100068#include "key.h"
69#include "buffer.h"
70#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100072#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000073#include "kex.h"
74#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000075#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
76#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000077#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000078#define TARGET_OS_MAC 1
79#else
80#include "zlib.h"
81#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000082#include "packet.h"
83#include "auth-options.h"
84#include "sshpty.h"
85#include "channels.h"
86#include "session.h"
87#include "sshlogin.h"
88#include "canohost.h"
89#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100090#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000091#include "servconf.h"
92#include "monitor.h"
93#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100094#ifdef GSSAPI
95#include "ssh-gss.h"
96#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000097#include "monitor_wrap.h"
98#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000099#include "compat.h"
100#include "ssh2.h"
Darren Tuckerb422afa2009-06-21 18:58:46 +1000101#include "roaming.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000102#include "authfd.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000103
Darren Tucker0efd1552003-08-26 11:49:55 +1000104#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +1000105static Gssctxt *gsscontext = NULL;
106#endif
107
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000108/* Imports */
109extern ServerOptions options;
110extern u_int utmp_len;
111extern Newkeys *current_keys[];
112extern z_stream incoming_stream;
113extern z_stream outgoing_stream;
114extern u_char session_id[];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115extern Buffer auth_debug;
116extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000117extern Buffer loginmsg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000118
119/* State exported from the child */
120
121struct {
122 z_stream incoming;
123 z_stream outgoing;
124 u_char *keyin;
125 u_int keyinlen;
126 u_char *keyout;
127 u_int keyoutlen;
128 u_char *ivin;
129 u_int ivinlen;
130 u_char *ivout;
131 u_int ivoutlen;
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000132 u_char *ssh1key;
133 u_int ssh1keylen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000134 int ssh1cipher;
135 int ssh1protoflags;
136 u_char *input;
137 u_int ilen;
138 u_char *output;
139 u_int olen;
Darren Tuckerc5564e12009-06-21 18:53:53 +1000140 u_int64_t sent_bytes;
141 u_int64_t recv_bytes;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000142} child_state;
143
Damien Miller469954d2003-06-18 20:25:33 +1000144/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000145
146int mm_answer_moduli(int, Buffer *);
147int mm_answer_sign(int, Buffer *);
148int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000149int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000150int mm_answer_authserv(int, Buffer *);
151int mm_answer_authpassword(int, Buffer *);
152int mm_answer_bsdauthquery(int, Buffer *);
153int mm_answer_bsdauthrespond(int, Buffer *);
154int mm_answer_skeyquery(int, Buffer *);
155int mm_answer_skeyrespond(int, Buffer *);
156int mm_answer_keyallowed(int, Buffer *);
157int mm_answer_keyverify(int, Buffer *);
158int mm_answer_pty(int, Buffer *);
159int mm_answer_pty_cleanup(int, Buffer *);
160int mm_answer_term(int, Buffer *);
161int mm_answer_rsa_keyallowed(int, Buffer *);
162int mm_answer_rsa_challenge(int, Buffer *);
163int mm_answer_rsa_response(int, Buffer *);
164int mm_answer_sesskey(int, Buffer *);
165int mm_answer_sessid(int, Buffer *);
166
Damien Miller79418552002-04-23 20:28:48 +1000167#ifdef USE_PAM
168int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000169int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000170int mm_answer_pam_init_ctx(int, Buffer *);
171int mm_answer_pam_query(int, Buffer *);
172int mm_answer_pam_respond(int, Buffer *);
173int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000174#endif
175
Darren Tucker0efd1552003-08-26 11:49:55 +1000176#ifdef GSSAPI
177int mm_answer_gss_setup_ctx(int, Buffer *);
178int mm_answer_gss_accept_ctx(int, Buffer *);
179int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100180int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000181#endif
Damien Miller25162f22002-09-12 09:47:29 +1000182
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100183#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100184int mm_answer_audit_event(int, Buffer *);
185int mm_answer_audit_command(int, Buffer *);
186#endif
187
Damien Miller8f0bf232011-06-20 14:42:23 +1000188static int monitor_read_log(struct monitor *);
189
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000190static Authctxt *authctxt;
Damien Miller1f0311c2014-05-15 14:24:09 +1000191
192#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000193static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
Damien Miller1f0311c2014-05-15 14:24:09 +1000194#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000195
196/* local state for key verify */
197static u_char *key_blob = NULL;
198static u_int key_bloblen = 0;
199static int key_blobtype = MM_NOKEY;
Damien Millera10f5612002-09-12 09:49:15 +1000200static char *hostbased_cuser = NULL;
201static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000202static char *auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100203static char *auth_submethod = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000204static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000205static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000206static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000207
208struct mon_table {
209 enum monitor_reqtype type;
210 int flags;
211 int (*f)(int, Buffer *);
212};
213
214#define MON_ISAUTH 0x0004 /* Required for Authentication */
215#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
216#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100217#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000218
219#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
220
221#define MON_PERMIT 0x1000 /* Request is permitted */
222
223struct mon_table mon_dispatch_proto20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000224#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000225 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000226#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000227 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
228 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
229 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000230 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000231 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000232#ifdef USE_PAM
233 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000234 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000235 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
236 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
237 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
238 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000239#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100240#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100241 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100242#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243#ifdef BSD_AUTH
244 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100245 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000246#endif
247#ifdef SKEY
248 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
249 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
250#endif
251 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
252 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000253#ifdef GSSAPI
254 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
255 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
256 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100257 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000258#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000259 {0, 0, NULL}
260};
261
262struct mon_table mon_dispatch_postauth20[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000263#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000264 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
Damien Miller1f0311c2014-05-15 14:24:09 +1000265#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000266 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
267 {MONITOR_REQ_PTY, 0, mm_answer_pty},
268 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
269 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100270#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100271 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
272 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
273#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000274 {0, 0, NULL}
275};
276
277struct mon_table mon_dispatch_proto15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000278#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000279 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
280 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
281 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
282 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller7a8f5b32006-03-31 23:14:23 +1100283 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_rsa_keyallowed},
284 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_keyallowed},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000285 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
286 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
287#ifdef BSD_AUTH
288 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100289 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000290#endif
291#ifdef SKEY
292 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
293 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
294#endif
Damien Millera33501b2002-05-08 12:24:42 +1000295#ifdef USE_PAM
296 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000297 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000298 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
299 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
300 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
301 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Damien Millera33501b2002-05-08 12:24:42 +1000302#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100303#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100304 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100305#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000306#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000307 {0, 0, NULL}
308};
309
310struct mon_table mon_dispatch_postauth15[] = {
Damien Miller1f0311c2014-05-15 14:24:09 +1000311#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000312 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
313 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
314 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100315#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100316 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker5965ae12006-09-17 12:00:13 +1000317 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT|MON_ONCE, mm_answer_audit_command},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100318#endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000319#endif /* WITH_SSH1 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000320 {0, 0, NULL}
321};
322
323struct mon_table *mon_dispatch;
324
325/* Specifies if a certain message is allowed at the moment */
326
327static void
328monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
329{
330 while (ent->f != NULL) {
331 if (ent->type == type) {
332 ent->flags &= ~MON_PERMIT;
333 ent->flags |= permit ? MON_PERMIT : 0;
334 return;
335 }
336 ent++;
337 }
338}
339
340static void
341monitor_permit_authentications(int permit)
342{
343 struct mon_table *ent = mon_dispatch;
344
345 while (ent->f != NULL) {
346 if (ent->flags & MON_AUTH) {
347 ent->flags &= ~MON_PERMIT;
348 ent->flags |= permit ? MON_PERMIT : 0;
349 }
350 ent++;
351 }
352}
353
Darren Tucker3e33cec2003-10-02 16:12:36 +1000354void
355monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000356{
357 struct mon_table *ent;
Damien Miller15b05cf2012-12-03 09:53:20 +1100358 int authenticated = 0, partial = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000359
360 debug3("preauth child monitor started");
361
Damien Miller8f0bf232011-06-20 14:42:23 +1000362 close(pmonitor->m_recvfd);
363 close(pmonitor->m_log_sendfd);
364 pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
365
Darren Tucker3e33cec2003-10-02 16:12:36 +1000366 authctxt = _authctxt;
367 memset(authctxt, 0, sizeof(*authctxt));
368
Darren Tuckerde0de392005-03-31 23:52:04 +1000369 authctxt->loginmsg = &loginmsg;
370
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000371 if (compat20) {
372 mon_dispatch = mon_dispatch_proto20;
373
374 /* Permit requests for moduli and signatures */
375 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
376 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
377 } else {
378 mon_dispatch = mon_dispatch_proto15;
379
380 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
381 }
382
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000383 /* The first few requests do not require asynchronous access */
384 while (!authenticated) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100385 partial = 0;
Damien Miller7a8f5b32006-03-31 23:14:23 +1100386 auth_method = "unknown";
Damien Miller15b05cf2012-12-03 09:53:20 +1100387 auth_submethod = NULL;
Darren Tuckerfbba7352006-11-07 23:16:08 +1100388 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Damien Millera6e3f012012-11-04 23:21:40 +1100389
390 /* Special handling for multiple required authentications */
391 if (options.num_auth_methods != 0) {
392 if (!compat20)
393 fatal("AuthenticationMethods is not supported"
394 "with SSH protocol 1");
395 if (authenticated &&
396 !auth2_update_methods_lists(authctxt,
Damien Miller91a55f22013-04-23 15:18:10 +1000397 auth_method, auth_submethod)) {
Damien Millera6e3f012012-11-04 23:21:40 +1100398 debug3("%s: method %s: partial", __func__,
399 auth_method);
400 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100401 partial = 1;
Damien Millera6e3f012012-11-04 23:21:40 +1100402 }
403 }
404
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000405 if (authenticated) {
406 if (!(ent->flags & MON_AUTHDECIDE))
407 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000408 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000409 if (authctxt->pw->pw_uid == 0 &&
410 !auth_root_allowed(auth_method))
411 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000412#ifdef USE_PAM
413 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100414 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000415 Buffer m;
416
417 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100418 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000419 MONITOR_REQ_PAM_ACCOUNT, &m);
420 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
421 buffer_free(&m);
422 }
423#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000424 }
Damien Miller7a8f5b32006-03-31 23:14:23 +1100425 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100426 auth_log(authctxt, authenticated, partial,
Darren Tucker0acca372013-06-02 07:41:51 +1000427 auth_method, auth_submethod);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000428 if (!authenticated)
429 authctxt->failures++;
430 }
431 }
432
433 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000434 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100435 if (strcmp(auth_method, "unknown") == 0)
436 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000437
438 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000439 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000440
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000441 mm_get_keystate(pmonitor);
Damien Miller8f0bf232011-06-20 14:42:23 +1000442
Damien Miller6a1937e2012-12-12 10:44:38 +1100443 /* Drain any buffered messages from the child */
444 while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
445 ;
446
Damien Miller8f0bf232011-06-20 14:42:23 +1000447 close(pmonitor->m_sendfd);
448 close(pmonitor->m_log_recvfd);
449 pmonitor->m_sendfd = pmonitor->m_log_recvfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000450}
451
Damien Millerbe64d432003-05-14 19:31:12 +1000452static void
453monitor_set_child_handler(pid_t pid)
454{
455 monitor_child_pid = pid;
456}
457
458static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000459monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000460{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000461 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000462}
463
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000464void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000465monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000466{
Damien Miller8f0bf232011-06-20 14:42:23 +1000467 close(pmonitor->m_recvfd);
468 pmonitor->m_recvfd = -1;
469
Damien Millerbe64d432003-05-14 19:31:12 +1000470 monitor_set_child_handler(pmonitor->m_pid);
471 signal(SIGHUP, &monitor_child_handler);
472 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000473 signal(SIGINT, &monitor_child_handler);
Damien Millerbe64d432003-05-14 19:31:12 +1000474
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000475 if (compat20) {
476 mon_dispatch = mon_dispatch_postauth20;
477
478 /* Permit requests for moduli and signatures */
479 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
480 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
481 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000482 } else {
483 mon_dispatch = mon_dispatch_postauth15;
484 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
485 }
486 if (!no_pty_flag) {
487 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
488 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
489 }
490
491 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000492 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000493}
494
495void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000496monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000497{
Damien Miller2d6b8332002-06-21 15:59:49 +1000498 if (options.compression) {
499 /* The member allocation is not visible, so sync it */
500 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
501 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000502}
503
Damien Miller8f0bf232011-06-20 14:42:23 +1000504static int
505monitor_read_log(struct monitor *pmonitor)
506{
507 Buffer logmsg;
508 u_int len, level;
509 char *msg;
510
511 buffer_init(&logmsg);
512
513 /* Read length */
514 buffer_append_space(&logmsg, 4);
515 if (atomicio(read, pmonitor->m_log_recvfd,
516 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg)) {
517 if (errno == EPIPE) {
Damien Millera2876db2012-02-11 08:16:06 +1100518 buffer_free(&logmsg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000519 debug("%s: child log fd closed", __func__);
520 close(pmonitor->m_log_recvfd);
521 pmonitor->m_log_recvfd = -1;
522 return -1;
523 }
524 fatal("%s: log fd read: %s", __func__, strerror(errno));
525 }
526 len = buffer_get_int(&logmsg);
527 if (len <= 4 || len > 8192)
528 fatal("%s: invalid log message length %u", __func__, len);
529
530 /* Read severity, message */
531 buffer_clear(&logmsg);
532 buffer_append_space(&logmsg, len);
533 if (atomicio(read, pmonitor->m_log_recvfd,
534 buffer_ptr(&logmsg), buffer_len(&logmsg)) != buffer_len(&logmsg))
535 fatal("%s: log fd read: %s", __func__, strerror(errno));
536
537 /* Log it */
538 level = buffer_get_int(&logmsg);
539 msg = buffer_get_string(&logmsg, NULL);
540 if (log_level_name(level) == NULL)
541 fatal("%s: invalid log level %u (corrupted message?)",
542 __func__, level);
543 do_log2(level, "%s [preauth]", msg);
544
545 buffer_free(&logmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000546 free(msg);
Damien Miller8f0bf232011-06-20 14:42:23 +1000547
548 return 0;
549}
550
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000551int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000552monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000553 struct mon_table **pent)
554{
555 Buffer m;
556 int ret;
557 u_char type;
Damien Miller8f0bf232011-06-20 14:42:23 +1000558 struct pollfd pfd[2];
559
560 for (;;) {
Damien Miller1d2c4562014-02-04 11:18:20 +1100561 memset(&pfd, 0, sizeof(pfd));
Damien Miller8f0bf232011-06-20 14:42:23 +1000562 pfd[0].fd = pmonitor->m_sendfd;
563 pfd[0].events = POLLIN;
564 pfd[1].fd = pmonitor->m_log_recvfd;
565 pfd[1].events = pfd[1].fd == -1 ? 0 : POLLIN;
Damien Miller7741ce82011-08-06 06:15:15 +1000566 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
567 if (errno == EINTR || errno == EAGAIN)
568 continue;
Damien Miller8f0bf232011-06-20 14:42:23 +1000569 fatal("%s: poll: %s", __func__, strerror(errno));
Damien Miller7741ce82011-08-06 06:15:15 +1000570 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000571 if (pfd[1].revents) {
572 /*
573 * Drain all log messages before processing next
574 * monitor request.
575 */
576 monitor_read_log(pmonitor);
577 continue;
578 }
579 if (pfd[0].revents)
580 break; /* Continues below */
581 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000582
583 buffer_init(&m);
584
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000585 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000586 type = buffer_get_char(&m);
587
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000588 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000589
590 while (ent->f != NULL) {
591 if (ent->type == type)
592 break;
593 ent++;
594 }
595
596 if (ent->f != NULL) {
597 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000598 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000599 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000600 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000601 buffer_free(&m);
602
603 /* The child may use this request only once, disable it */
604 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000605 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000606 type);
607 ent->flags &= ~MON_PERMIT;
608 }
609
610 if (pent != NULL)
611 *pent = ent;
612
613 return ret;
614 }
615
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000616 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000617
618 /* NOTREACHED */
619 return (-1);
620}
621
622/* allowed key state */
623static int
624monitor_allowed_key(u_char *blob, u_int bloblen)
625{
626 /* make sure key is allowed */
627 if (key_blob == NULL || key_bloblen != bloblen ||
Damien Millerea1651c2010-07-16 13:58:37 +1000628 timingsafe_bcmp(key_blob, blob, key_bloblen))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000629 return (0);
630 return (1);
631}
632
633static void
634monitor_reset_key_state(void)
635{
636 /* reset state */
Darren Tuckera627d422013-06-02 07:31:17 +1000637 free(key_blob);
638 free(hostbased_cuser);
639 free(hostbased_chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000640 key_blob = NULL;
641 key_bloblen = 0;
642 key_blobtype = MM_NOKEY;
643 hostbased_cuser = NULL;
644 hostbased_chost = NULL;
645}
646
Damien Miller1f0311c2014-05-15 14:24:09 +1000647#ifdef WITH_OPENSSL
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000648int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000649mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000650{
651 DH *dh;
652 int min, want, max;
653
654 min = buffer_get_int(m);
655 want = buffer_get_int(m);
656 max = buffer_get_int(m);
657
658 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000659 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000660 /* We need to check here, too, in case the child got corrupted */
661 if (max < min || want < min || max < want)
662 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000663 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000664
665 buffer_clear(m);
666
667 dh = choose_dh(min, want, max);
668 if (dh == NULL) {
669 buffer_put_char(m, 0);
670 return (0);
671 } else {
672 /* Send first bignum */
673 buffer_put_char(m, 1);
674 buffer_put_bignum2(m, dh->p);
675 buffer_put_bignum2(m, dh->g);
676
677 DH_free(dh);
678 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000679 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000680 return (0);
681}
Damien Miller1f0311c2014-05-15 14:24:09 +1000682#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000683
Damien Miller85b45e02013-07-20 13:21:52 +1000684extern AuthenticationConnection *auth_conn;
685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000686int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000687mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000688{
689 Key *key;
690 u_char *p;
691 u_char *signature;
692 u_int siglen, datlen;
693 int keyid;
694
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000695 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000696
697 keyid = buffer_get_int(m);
698 p = buffer_get_string(m, &datlen);
699
Damien Millera63128d2006-03-15 12:08:28 +1100700 /*
Damien Miller041ab7c2010-09-10 11:23:34 +1000701 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
702 * SHA384 (48 bytes) and SHA512 (64 bytes).
Damien Millera63128d2006-03-15 12:08:28 +1100703 */
Damien Miller041ab7c2010-09-10 11:23:34 +1000704 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64)
Ben Lindstromd5502182002-06-27 00:12:57 +0000705 fatal("%s: data length incorrect: %u", __func__, datlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000706
Ben Lindstromf67e0772002-06-06 20:58:19 +0000707 /* save session id, it will be passed on the first call */
708 if (session_id2_len == 0) {
709 session_id2_len = datlen;
710 session_id2 = xmalloc(session_id2_len);
711 memcpy(session_id2, p, session_id2_len);
712 }
713
Damien Miller85b45e02013-07-20 13:21:52 +1000714 if ((key = get_hostkey_by_index(keyid)) != NULL) {
715 if (key_sign(key, &signature, &siglen, p, datlen) < 0)
716 fatal("%s: key_sign failed", __func__);
717 } else if ((key = get_hostkey_public_by_index(keyid)) != NULL &&
718 auth_conn != NULL) {
719 if (ssh_agent_sign(auth_conn, key, &signature, &siglen, p,
720 datlen) < 0)
721 fatal("%s: ssh_agent_sign failed", __func__);
722 } else
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000723 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000724
Ben Lindstromd5502182002-06-27 00:12:57 +0000725 debug3("%s: signature %p(%u)", __func__, signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000726
727 buffer_clear(m);
728 buffer_put_string(m, signature, siglen);
729
Darren Tuckera627d422013-06-02 07:31:17 +1000730 free(p);
731 free(signature);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000732
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000733 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000734
735 /* Turn on permissions for getpwnam */
736 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
737
738 return (0);
739}
740
741/* Retrieves the password entry and also checks if the user is permitted */
742
743int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000744mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000745{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000746 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000747 struct passwd *pwent;
748 int allowed = 0;
Damien Millerd8478b62011-05-29 21:39:36 +1000749 u_int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000750
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000751 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000752
753 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000754 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000755
Darren Tuckerb09b6772004-06-22 15:06:46 +1000756 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000757
Darren Tuckerb09b6772004-06-22 15:06:46 +1000758 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000759
Darren Tuckerb09b6772004-06-22 15:06:46 +1000760 authctxt->user = xstrdup(username);
761 setproctitle("%s [priv]", pwent ? username : "unknown");
Darren Tuckera627d422013-06-02 07:31:17 +1000762 free(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000763
764 buffer_clear(m);
765
766 if (pwent == NULL) {
767 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100768 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000769 goto out;
770 }
771
772 allowed = 1;
773 authctxt->pw = pwent;
774 authctxt->valid = 1;
775
776 buffer_put_char(m, 1);
777 buffer_put_string(m, pwent, sizeof(struct passwd));
778 buffer_put_cstring(m, pwent->pw_name);
779 buffer_put_cstring(m, "*");
Damien Miller6332da22013-04-23 14:25:52 +1000780#ifdef HAVE_STRUCT_PASSWD_PW_GECOS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000781 buffer_put_cstring(m, pwent->pw_gecos);
Damien Miller6332da22013-04-23 14:25:52 +1000782#endif
783#ifdef HAVE_STRUCT_PASSWD_PW_CLASS
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000784 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000785#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000786 buffer_put_cstring(m, pwent->pw_dir);
787 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100788
789 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100790 buffer_put_string(m, &options, sizeof(options));
Damien Millerf2e407e2011-05-20 19:04:14 +1000791
792#define M_CP_STROPT(x) do { \
793 if (options.x != NULL) \
794 buffer_put_cstring(m, options.x); \
795 } while (0)
Damien Millerd8478b62011-05-29 21:39:36 +1000796#define M_CP_STRARRAYOPT(x, nx) do { \
797 for (i = 0; i < options.nx; i++) \
798 buffer_put_cstring(m, options.x[i]); \
799 } while (0)
Damien Millerf2e407e2011-05-20 19:04:14 +1000800 /* See comment in servconf.h */
801 COPY_MATCH_STRING_OPTS();
802#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +1000803#undef M_CP_STRARRAYOPT
Damien Millera6e3f012012-11-04 23:21:40 +1100804
805 /* Create valid auth method lists */
806 if (compat20 && auth2_setup_methods_lists(authctxt) != 0) {
807 /*
808 * The monitor will continue long enough to let the child
809 * run to it's packet_disconnect(), but it must not allow any
810 * authentication to succeed.
811 */
812 debug("%s: no valid authentication method lists", __func__);
813 }
814
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000815 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000816 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000817
818 /* For SSHv1 allow authentication now */
819 if (!compat20)
820 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000821 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000822 /* Allow service/style information on the auth context */
823 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000824 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
825 }
Damien Millera33501b2002-05-08 12:24:42 +1000826#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000827 if (options.use_pam)
828 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000829#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000830
831 return (0);
832}
833
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000834int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000835{
836 char *banner;
837
838 buffer_clear(m);
839 banner = auth2_read_banner();
840 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000841 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Darren Tuckera627d422013-06-02 07:31:17 +1000842 free(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000843
844 return (0);
845}
846
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000847int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000848mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000849{
850 monitor_permit_authentications(1);
851
852 authctxt->service = buffer_get_string(m, NULL);
853 authctxt->style = buffer_get_string(m, NULL);
854 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000855 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000856
857 if (strlen(authctxt->style) == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000858 free(authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000859 authctxt->style = NULL;
860 }
861
862 return (0);
863}
864
865int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000866mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000867{
868 static int call_count;
869 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000870 int authenticated;
871 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000872
873 passwd = buffer_get_string(m, &plen);
874 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000875 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000876 auth_password(authctxt, passwd);
Damien Millera5103f42014-02-04 11:20:14 +1100877 explicit_bzero(passwd, strlen(passwd));
Darren Tuckera627d422013-06-02 07:31:17 +1000878 free(passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000879
880 buffer_clear(m);
881 buffer_put_int(m, authenticated);
882
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000883 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000884 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885
886 call_count++;
887 if (plen == 0 && call_count == 1)
888 auth_method = "none";
889 else
890 auth_method = "password";
891
892 /* Causes monitor loop to terminate if authenticated */
893 return (authenticated);
894}
895
896#ifdef BSD_AUTH
897int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000898mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000899{
900 char *name, *infotxt;
901 u_int numprompts;
902 u_int *echo_on;
903 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100904 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000905
Damien Millerb7df3af2003-02-24 11:55:46 +1100906 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
907 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000908
909 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100910 buffer_put_int(m, success);
911 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000912 buffer_put_cstring(m, prompts[0]);
913
Damien Millerb7df3af2003-02-24 11:55:46 +1100914 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000915 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000916
Damien Millerb7df3af2003-02-24 11:55:46 +1100917 if (success) {
Darren Tuckera627d422013-06-02 07:31:17 +1000918 free(name);
919 free(infotxt);
920 free(prompts);
921 free(echo_on);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000922 }
923
924 return (0);
925}
926
927int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000928mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000929{
930 char *response;
931 int authok;
932
933 if (authctxt->as == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000934 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000935
936 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000937 authok = options.challenge_response_authentication &&
938 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000939 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000940 debug3("%s: <%s> = <%d>", __func__, response, authok);
Darren Tuckera627d422013-06-02 07:31:17 +1000941 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000942
943 buffer_clear(m);
944 buffer_put_int(m, authok);
945
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000946 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000947 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000948
Damien Miller91a55f22013-04-23 15:18:10 +1000949 if (compat20) {
950 auth_method = "keyboard-interactive";
951 auth_submethod = "bsdauth";
952 } else
Damien Millera6e3f012012-11-04 23:21:40 +1100953 auth_method = "bsdauth";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000954
955 return (authok != 0);
956}
957#endif
958
959#ifdef SKEY
960int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000961mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000962{
963 struct skey skey;
964 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100965 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000966
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000967 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
968 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000969
970 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100971 buffer_put_int(m, success);
972 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000973 buffer_put_cstring(m, challenge);
974
Damien Millerb7df3af2003-02-24 11:55:46 +1100975 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000976 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000977
978 return (0);
979}
980
981int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000982mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000983{
984 char *response;
985 int authok;
986
987 response = buffer_get_string(m, NULL);
988
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000989 authok = (options.challenge_response_authentication &&
990 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000991 skey_haskey(authctxt->pw->pw_name) == 0 &&
992 skey_passcheck(authctxt->pw->pw_name, response) != -1);
993
Darren Tuckerf60845f2013-06-02 08:07:31 +1000994 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000995
996 buffer_clear(m);
997 buffer_put_int(m, authok);
998
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000999 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001000 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001001
1002 auth_method = "skey";
1003
1004 return (authok != 0);
1005}
1006#endif
1007
Damien Miller79418552002-04-23 20:28:48 +10001008#ifdef USE_PAM
1009int
Darren Tucker7eda5922004-06-22 13:22:50 +10001010mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +10001011{
Damien Miller4e448a32003-05-14 15:11:48 +10001012 if (!options.use_pam)
1013 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1014
Darren Tuckerdbf7a742004-03-08 23:04:06 +11001015 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +10001016
Damien Miller1f499fd2003-08-25 13:08:49 +10001017 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
1018
Damien Miller79418552002-04-23 20:28:48 +10001019 return (0);
1020}
Damien Miller4f9f42a2003-05-10 19:28:02 +10001021
Damien Miller1f499fd2003-08-25 13:08:49 +10001022int
Darren Tucker7eda5922004-06-22 13:22:50 +10001023mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +10001024{
1025 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +11001026
Damien Miller1f499fd2003-08-25 13:08:49 +10001027 if (!options.use_pam)
1028 fatal("UsePAM not set, but ended up in %s anyway", __func__);
1029
1030 ret = do_pam_account();
1031
1032 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +10001033 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +10001034
Darren Tucker7eda5922004-06-22 13:22:50 +10001035 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +10001036
1037 return (ret);
1038}
1039
Damien Miller4f9f42a2003-05-10 19:28:02 +10001040static void *sshpam_ctxt, *sshpam_authok;
1041extern KbdintDevice sshpam_device;
1042
1043int
Darren Tucker7eda5922004-06-22 13:22:50 +10001044mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001045{
1046
1047 debug3("%s", __func__);
1048 authctxt->user = buffer_get_string(m, NULL);
1049 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
1050 sshpam_authok = NULL;
1051 buffer_clear(m);
1052 if (sshpam_ctxt != NULL) {
1053 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
1054 buffer_put_int(m, 1);
1055 } else {
1056 buffer_put_int(m, 0);
1057 }
Darren Tucker7eda5922004-06-22 13:22:50 +10001058 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001059 return (0);
1060}
1061
1062int
Darren Tucker7eda5922004-06-22 13:22:50 +10001063mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001064{
Darren Tucker8b7a0552010-08-03 15:50:16 +10001065 char *name = NULL, *info = NULL, **prompts = NULL;
1066 u_int i, num = 0, *echo_on = 0;
Damien Miller04b65332005-07-17 17:53:31 +10001067 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001068
1069 debug3("%s", __func__);
1070 sshpam_authok = NULL;
1071 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
1072 if (ret == 0 && num == 0)
1073 sshpam_authok = sshpam_ctxt;
1074 if (num > 1 || name == NULL || info == NULL)
1075 ret = -1;
1076 buffer_clear(m);
1077 buffer_put_int(m, ret);
1078 buffer_put_cstring(m, name);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001079 free(name);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001080 buffer_put_cstring(m, info);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001081 free(info);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001082 buffer_put_int(m, num);
1083 for (i = 0; i < num; ++i) {
1084 buffer_put_cstring(m, prompts[i]);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001085 free(prompts[i]);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001086 buffer_put_int(m, echo_on[i]);
1087 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001088 free(prompts);
1089 free(echo_on);
Damien Miller15b05cf2012-12-03 09:53:20 +11001090 auth_method = "keyboard-interactive";
1091 auth_submethod = "pam";
Darren Tucker7eda5922004-06-22 13:22:50 +10001092 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001093 return (0);
1094}
1095
1096int
Darren Tucker7eda5922004-06-22 13:22:50 +10001097mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001098{
1099 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +10001100 u_int i, num;
1101 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001102
1103 debug3("%s", __func__);
1104 sshpam_authok = NULL;
1105 num = buffer_get_int(m);
1106 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +10001107 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001108 for (i = 0; i < num; ++i)
1109 resp[i] = buffer_get_string(m, NULL);
1110 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
1111 for (i = 0; i < num; ++i)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001112 free(resp[i]);
1113 free(resp);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001114 } else {
1115 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
1116 }
1117 buffer_clear(m);
1118 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +10001119 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001120 auth_method = "keyboard-interactive";
1121 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001122 if (ret == 0)
1123 sshpam_authok = sshpam_ctxt;
1124 return (0);
1125}
1126
1127int
Darren Tucker7eda5922004-06-22 13:22:50 +10001128mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +10001129{
1130
1131 debug3("%s", __func__);
1132 (sshpam_device.free_ctx)(sshpam_ctxt);
1133 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +10001134 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Damien Miller15b05cf2012-12-03 09:53:20 +11001135 auth_method = "keyboard-interactive";
1136 auth_submethod = "pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +10001137 return (sshpam_authok == sshpam_ctxt);
1138}
Damien Miller79418552002-04-23 20:28:48 +10001139#endif
1140
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001141int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001142mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001143{
1144 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +10001145 char *cuser, *chost;
1146 u_char *blob;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001147 u_int bloblen;
1148 enum mm_keytype type = 0;
1149 int allowed = 0;
1150
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001151 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001152
1153 type = buffer_get_int(m);
1154 cuser = buffer_get_string(m, NULL);
1155 chost = buffer_get_string(m, NULL);
1156 blob = buffer_get_string(m, &bloblen);
1157
1158 key = key_from_blob(blob, bloblen);
1159
1160 if ((compat20 && type == MM_RSAHOSTKEY) ||
1161 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001162 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001163
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001164 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001165
Damien Miller3e3b5142003-11-17 21:13:40 +11001166 if (key != NULL && authctxt->valid) {
Darren Tucker47eede72005-03-14 23:08:12 +11001167 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001168 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001169 allowed = options.pubkey_authentication &&
1170 user_key_allowed(authctxt->pw, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001171 pubkey_auth_info(authctxt, key, NULL);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001172 auth_method = "publickey";
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001173 if (options.pubkey_authentication && allowed != 1)
1174 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001175 break;
1176 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001177 allowed = options.hostbased_authentication &&
1178 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001179 cuser, chost, key);
Damien Miller20bdcd72013-07-18 16:10:09 +10001180 pubkey_auth_info(authctxt, key,
1181 "client user \"%.100s\", client host \"%.100s\"",
1182 cuser, chost);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001183 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001184 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001185#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001186 case MM_RSAHOSTKEY:
1187 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001188 allowed = options.rhosts_rsa_authentication &&
1189 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001190 cuser, chost, key);
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001191 if (options.rhosts_rsa_authentication && allowed != 1)
1192 auth_clear_options();
Damien Miller7a8f5b32006-03-31 23:14:23 +11001193 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001194 break;
Damien Miller1f0311c2014-05-15 14:24:09 +10001195#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001196 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001197 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001198 break;
1199 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001200 }
Damien Miller00111382003-03-10 11:21:17 +11001201 if (key != NULL)
1202 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001203
1204 /* clear temporarily storage (used by verify) */
1205 monitor_reset_key_state();
1206
1207 if (allowed) {
1208 /* Save temporarily for comparison in verify */
1209 key_blob = blob;
1210 key_bloblen = bloblen;
1211 key_blobtype = type;
1212 hostbased_cuser = cuser;
1213 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001214 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001215 /* Log failed attempt */
Darren Tucker0acca372013-06-02 07:41:51 +10001216 auth_log(authctxt, 0, 0, auth_method, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001217 free(blob);
1218 free(cuser);
1219 free(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001220 }
1221
1222 debug3("%s: key %p is %s",
Darren Tucker2784f1f2008-07-04 13:51:45 +10001223 __func__, key, allowed ? "allowed" : "not allowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001224
1225 buffer_clear(m);
1226 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001227 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001228
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001229 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001230
1231 if (type == MM_RSAHOSTKEY)
1232 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1233
1234 return (0);
1235}
1236
1237static int
1238monitor_valid_userblob(u_char *data, u_int datalen)
1239{
1240 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001241 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001242 u_int len;
1243 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001244
1245 buffer_init(&b);
1246 buffer_append(&b, data, datalen);
1247
1248 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001249 p = buffer_ptr(&b);
1250 len = buffer_len(&b);
1251 if ((session_id2 == NULL) ||
1252 (len < session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001253 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstromf67e0772002-06-06 20:58:19 +00001254 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001255 buffer_consume(&b, session_id2_len);
1256 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001257 p = buffer_get_string(&b, &len);
1258 if ((session_id2 == NULL) ||
1259 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001260 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001261 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001262 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001263 }
1264 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1265 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001266 p = buffer_get_cstring(&b, NULL);
1267 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1268 authctxt->style ? ":" : "",
1269 authctxt->style ? authctxt->style : "");
1270 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001271 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001272 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001273 fail++;
1274 }
Darren Tuckera627d422013-06-02 07:31:17 +10001275 free(userstyle);
1276 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001277 buffer_skip_string(&b);
1278 if (datafellows & SSH_BUG_PKAUTH) {
1279 if (!buffer_get_char(&b))
1280 fail++;
1281 } else {
Damien Miller4ce189d2013-04-23 15:17:52 +10001282 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001283 if (strcmp("publickey", p) != 0)
1284 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001285 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001286 if (!buffer_get_char(&b))
1287 fail++;
1288 buffer_skip_string(&b);
1289 }
1290 buffer_skip_string(&b);
1291 if (buffer_len(&b) != 0)
1292 fail++;
1293 buffer_free(&b);
1294 return (fail == 0);
1295}
1296
1297static int
Damien Millera10f5612002-09-12 09:49:15 +10001298monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1299 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001300{
1301 Buffer b;
Damien Miller4ce189d2013-04-23 15:17:52 +10001302 char *p, *userstyle;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001303 u_int len;
1304 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001305
1306 buffer_init(&b);
1307 buffer_append(&b, data, datalen);
1308
Ben Lindstromf67e0772002-06-06 20:58:19 +00001309 p = buffer_get_string(&b, &len);
1310 if ((session_id2 == NULL) ||
1311 (len != session_id2_len) ||
Damien Millerea1651c2010-07-16 13:58:37 +10001312 (timingsafe_bcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001313 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(p);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001315
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001316 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1317 fail++;
Damien Miller4ce189d2013-04-23 15:17:52 +10001318 p = buffer_get_cstring(&b, NULL);
1319 xasprintf(&userstyle, "%s%s%s", authctxt->user,
1320 authctxt->style ? ":" : "",
1321 authctxt->style ? authctxt->style : "");
1322 if (strcmp(userstyle, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001323 logit("wrong user name passed to monitor: expected %s != %.100s",
Damien Miller4ce189d2013-04-23 15:17:52 +10001324 userstyle, p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001325 fail++;
1326 }
Damien Miller4ce189d2013-04-23 15:17:52 +10001327 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +10001328 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001329 buffer_skip_string(&b); /* service */
Damien Miller4ce189d2013-04-23 15:17:52 +10001330 p = buffer_get_cstring(&b, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001331 if (strcmp(p, "hostbased") != 0)
1332 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001333 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001334 buffer_skip_string(&b); /* pkalg */
1335 buffer_skip_string(&b); /* pkblob */
1336
1337 /* verify client host, strip trailing dot if necessary */
1338 p = buffer_get_string(&b, NULL);
1339 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1340 p[len - 1] = '\0';
1341 if (strcmp(p, chost) != 0)
1342 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001343 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001344
1345 /* verify client user */
1346 p = buffer_get_string(&b, NULL);
1347 if (strcmp(p, cuser) != 0)
1348 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +10001349 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001350
1351 if (buffer_len(&b) != 0)
1352 fail++;
1353 buffer_free(&b);
1354 return (fail == 0);
1355}
1356
1357int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001358mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001359{
1360 Key *key;
1361 u_char *signature, *data, *blob;
1362 u_int signaturelen, datalen, bloblen;
1363 int verified = 0;
1364 int valid_data = 0;
1365
1366 blob = buffer_get_string(m, &bloblen);
1367 signature = buffer_get_string(m, &signaturelen);
1368 data = buffer_get_string(m, &datalen);
1369
1370 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001371 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001372 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001373
1374 key = key_from_blob(blob, bloblen);
1375 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001376 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377
1378 switch (key_blobtype) {
1379 case MM_USERKEY:
1380 valid_data = monitor_valid_userblob(data, datalen);
1381 break;
1382 case MM_HOSTKEY:
1383 valid_data = monitor_valid_hostbasedblob(data, datalen,
1384 hostbased_cuser, hostbased_chost);
1385 break;
1386 default:
1387 valid_data = 0;
1388 break;
1389 }
1390 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001391 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001392
1393 verified = key_verify(key, signature, signaturelen, data, datalen);
1394 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001395 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001396
1397 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +10001398 free(blob);
1399 free(signature);
1400 free(data);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001401
Ben Lindstrome1c09122002-06-23 00:38:24 +00001402 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1403
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001404 monitor_reset_key_state();
1405
1406 buffer_clear(m);
1407 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001408 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001409
Darren Tuckerfbba7352006-11-07 23:16:08 +11001410 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001411}
1412
1413static void
1414mm_record_login(Session *s, struct passwd *pw)
1415{
1416 socklen_t fromlen;
1417 struct sockaddr_storage from;
1418
1419 /*
1420 * Get IP address of client. If the connection is not a socket, let
1421 * the address be 0.0.0.0.
1422 */
1423 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001424 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001425 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001426 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001427 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001428 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001429 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001430 }
1431 }
1432 /* Record that there was a login on that tty from the remote host. */
1433 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
Damien Miller3a961dc2003-06-03 10:25:48 +10001434 get_remote_name_or_ip(utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001435 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001436}
1437
1438static void
1439mm_session_close(Session *s)
1440{
Damien Miller04bd8b02003-05-25 14:38:33 +10001441 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001442 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001443 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001444 session_pty_cleanup2(s);
1445 }
Damien Miller7207f642008-05-19 15:34:50 +10001446 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001447}
1448
1449int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001450mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001451{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001452 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001453 Session *s;
1454 int res, fd0;
1455
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001456 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001457
1458 buffer_clear(m);
1459 s = session_new();
1460 if (s == NULL)
1461 goto error;
1462 s->authctxt = authctxt;
1463 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001464 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001465 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1466 if (res == 0)
1467 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001468 pty_setowner(authctxt->pw, s->tty);
1469
1470 buffer_put_int(m, 1);
1471 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001472
1473 /* We need to trick ttyslot */
1474 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001475 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001476
1477 mm_record_login(s, authctxt->pw);
1478
1479 /* Now we can close the file descriptor again */
1480 close(0);
1481
Darren Tucker09991742004-07-17 17:05:14 +10001482 /* send messages generated by record_login */
1483 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1484 buffer_clear(&loginmsg);
1485
1486 mm_request_send(sock, MONITOR_ANS_PTY, m);
1487
Damien Miller54fd7cf2007-09-17 12:04:08 +10001488 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1489 mm_send_fd(sock, s->ttyfd) == -1)
1490 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001491
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001492 /* make sure nothing uses fd 0 */
1493 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001494 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001495 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001496 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001497
1498 /* slave is not needed */
1499 close(s->ttyfd);
1500 s->ttyfd = s->ptyfd;
1501 /* no need to dup() because nobody closes ptyfd */
1502 s->ptymaster = s->ptyfd;
1503
Damien Miller9ab00b42006-08-05 12:40:11 +10001504 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001505
1506 return (0);
1507
1508 error:
1509 if (s != NULL)
1510 mm_session_close(s);
1511 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001512 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001513 return (0);
1514}
1515
1516int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001517mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001518{
1519 Session *s;
1520 char *tty;
1521
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001522 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001523
1524 tty = buffer_get_string(m, NULL);
1525 if ((s = session_by_tty(tty)) != NULL)
1526 mm_session_close(s);
1527 buffer_clear(m);
Darren Tuckera627d422013-06-02 07:31:17 +10001528 free(tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001529 return (0);
1530}
1531
Damien Miller1f0311c2014-05-15 14:24:09 +10001532#ifdef WITH_SSH1
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001533int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001534mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001535{
1536 BIGNUM *p;
1537 int rsafail;
1538
1539 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001540 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001541
1542 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001543 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001544
1545 buffer_get_bignum2(m, p);
1546
1547 rsafail = ssh1_session_key(p);
1548
1549 buffer_clear(m);
1550 buffer_put_int(m, rsafail);
1551 buffer_put_bignum2(m, p);
1552
1553 BN_clear_free(p);
1554
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001555 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001556
1557 /* Turn on permissions for sessid passing */
1558 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1559
1560 return (0);
1561}
1562
1563int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001564mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001565{
1566 int i;
1567
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001568 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001569
1570 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001571 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001572 for (i = 0; i < 16; i++)
1573 session_id[i] = buffer_get_char(m);
1574
1575 /* Turn on permissions for getpwnam */
1576 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1577
1578 return (0);
1579}
1580
1581int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001582mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001583{
1584 BIGNUM *client_n;
1585 Key *key = NULL;
1586 u_char *blob = NULL;
1587 u_int blen = 0;
1588 int allowed = 0;
1589
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001590 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001591
Damien Miller7a8f5b32006-03-31 23:14:23 +11001592 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001593 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001594 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001595 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001596 buffer_get_bignum2(m, client_n);
1597 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1598 BN_clear_free(client_n);
1599 }
1600 buffer_clear(m);
1601 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001602 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001603
1604 /* clear temporarily storage (used by generate challenge) */
1605 monitor_reset_key_state();
1606
1607 if (allowed && key != NULL) {
1608 key->type = KEY_RSA; /* cheat for key_to_blob */
1609 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001610 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001611 buffer_put_string(m, blob, blen);
1612
1613 /* Save temporarily for comparison in verify */
1614 key_blob = blob;
1615 key_bloblen = blen;
1616 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001617 }
Damien Miller00111382003-03-10 11:21:17 +11001618 if (key != NULL)
1619 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001620
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001621 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001622
1623 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1624 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1625 return (0);
1626}
1627
1628int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001629mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001630{
1631 Key *key = NULL;
1632 u_char *blob;
1633 u_int blen;
1634
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001635 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001636
1637 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001638 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001639 blob = buffer_get_string(m, &blen);
1640 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001641 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001642 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001643 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001644 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001645 fatal("%s: received bad key", __func__);
Damien Miller923e8bb2009-02-14 16:33:31 +11001646 if (key->type != KEY_RSA)
1647 fatal("%s: received bad key type %d", __func__, key->type);
1648 key->type = KEY_RSA1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001649 if (ssh1_challenge)
1650 BN_clear_free(ssh1_challenge);
1651 ssh1_challenge = auth_rsa_generate_challenge(key);
1652
1653 buffer_clear(m);
1654 buffer_put_bignum2(m, ssh1_challenge);
1655
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001656 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001657 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001658
1659 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001660
Darren Tuckera627d422013-06-02 07:31:17 +10001661 free(blob);
Damien Miller00111382003-03-10 11:21:17 +11001662 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001663 return (0);
1664}
1665
1666int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001667mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001668{
1669 Key *key = NULL;
1670 u_char *blob, *response;
1671 u_int blen, len;
1672 int success;
1673
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001674 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001675
1676 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001677 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001678 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001679 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001680
1681 blob = buffer_get_string(m, &blen);
1682 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001683 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001684 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001685 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001687 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001688 response = buffer_get_string(m, &len);
1689 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001690 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001691 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1692
Darren Tuckera627d422013-06-02 07:31:17 +10001693 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001694 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +10001695 free(response);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001696
1697 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1698
1699 /* reset state */
1700 BN_clear_free(ssh1_challenge);
1701 ssh1_challenge = NULL;
1702 monitor_reset_key_state();
1703
1704 buffer_clear(m);
1705 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001706 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001707
1708 return (success);
1709}
Damien Miller1f0311c2014-05-15 14:24:09 +10001710#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001711
1712int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001713mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001715 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001716 int res, status;
1717
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001718 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001719
1720 /* The child is terminating */
1721 session_destroy_all(&mm_session_close);
1722
Darren Tucker52358d62008-03-11 22:58:25 +11001723#ifdef USE_PAM
1724 if (options.use_pam)
1725 sshpam_cleanup();
1726#endif
1727
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001728 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001729 if (errno != EINTR)
1730 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001731
1732 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1733
1734 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001735 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001736}
1737
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001738#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001739/* Report that an audit event occurred */
1740int
1741mm_answer_audit_event(int socket, Buffer *m)
1742{
1743 ssh_audit_event_t event;
1744
1745 debug3("%s entering", __func__);
1746
1747 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001748 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001749 case SSH_AUTH_FAIL_PUBKEY:
1750 case SSH_AUTH_FAIL_HOSTBASED:
1751 case SSH_AUTH_FAIL_GSSAPI:
1752 case SSH_LOGIN_EXCEED_MAXTRIES:
1753 case SSH_LOGIN_ROOT_DENIED:
1754 case SSH_CONNECTION_CLOSE:
1755 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001756 audit_event(event);
1757 break;
1758 default:
1759 fatal("Audit event type %d not permitted", event);
1760 }
1761
1762 return (0);
1763}
1764
1765int
1766mm_answer_audit_command(int socket, Buffer *m)
1767{
1768 u_int len;
1769 char *cmd;
1770
1771 debug3("%s entering", __func__);
1772 cmd = buffer_get_string(m, &len);
1773 /* sanity check command, if so how? */
1774 audit_run_command(cmd);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001775 free(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001776 return (0);
1777}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001778#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001779
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001780void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001781monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001782{
1783 if (compat20) {
1784 set_newkeys(MODE_IN);
1785 set_newkeys(MODE_OUT);
1786 } else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001787 packet_set_protocol_flags(child_state.ssh1protoflags);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001788 packet_set_encryption_key(child_state.ssh1key,
1789 child_state.ssh1keylen, child_state.ssh1cipher);
Darren Tuckera627d422013-06-02 07:31:17 +10001790 free(child_state.ssh1key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001791 }
1792
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001793 /* for rc4 and other stateful ciphers */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001794 packet_set_keycontext(MODE_OUT, child_state.keyout);
Darren Tuckera627d422013-06-02 07:31:17 +10001795 free(child_state.keyout);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001796 packet_set_keycontext(MODE_IN, child_state.keyin);
Darren Tuckera627d422013-06-02 07:31:17 +10001797 free(child_state.keyin);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001798
1799 if (!compat20) {
1800 packet_set_iv(MODE_OUT, child_state.ivout);
Darren Tuckera627d422013-06-02 07:31:17 +10001801 free(child_state.ivout);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001802 packet_set_iv(MODE_IN, child_state.ivin);
Darren Tuckera627d422013-06-02 07:31:17 +10001803 free(child_state.ivin);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001804 }
1805
1806 memcpy(&incoming_stream, &child_state.incoming,
1807 sizeof(incoming_stream));
1808 memcpy(&outgoing_stream, &child_state.outgoing,
1809 sizeof(outgoing_stream));
1810
1811 /* Update with new address */
Damien Miller2d6b8332002-06-21 15:59:49 +10001812 if (options.compression)
1813 mm_init_compression(pmonitor->m_zlib);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001814
Damien Millerc31a0cd2014-05-15 14:37:39 +10001815 packet_set_postauth();
1816
Darren Tucker5f96f3b2013-05-16 20:29:28 +10001817 if (options.rekey_limit || options.rekey_interval)
1818 packet_set_rekey_limits((u_int32_t)options.rekey_limit,
1819 (time_t)options.rekey_interval);
1820
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001821 /* Network I/O buffers */
1822 /* XXX inefficient for large buffers, need: buffer_init_from_string */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001823 buffer_clear(packet_get_input());
1824 buffer_append(packet_get_input(), child_state.input, child_state.ilen);
Damien Millera5103f42014-02-04 11:20:14 +11001825 explicit_bzero(child_state.input, child_state.ilen);
Darren Tuckera627d422013-06-02 07:31:17 +10001826 free(child_state.input);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001827
Darren Tuckerf7288d72009-06-21 18:12:20 +10001828 buffer_clear(packet_get_output());
1829 buffer_append(packet_get_output(), child_state.output,
1830 child_state.olen);
Damien Millera5103f42014-02-04 11:20:14 +11001831 explicit_bzero(child_state.output, child_state.olen);
Darren Tuckera627d422013-06-02 07:31:17 +10001832 free(child_state.output);
Darren Tuckerc5564e12009-06-21 18:53:53 +10001833
1834 /* Roaming */
1835 if (compat20)
1836 roam_set_bytes(child_state.sent_bytes, child_state.recv_bytes);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001837}
1838
1839static Kex *
1840mm_get_kex(Buffer *m)
1841{
1842 Kex *kex;
1843 void *blob;
1844 u_int bloblen;
1845
Damien Miller07d86be2006-03-26 14:19:21 +11001846 kex = xcalloc(1, sizeof(*kex));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001847 kex->session_id = buffer_get_string(m, &kex->session_id_len);
Damien Miller8a0268f2010-07-16 13:57:51 +10001848 if (session_id2 == NULL ||
1849 kex->session_id_len != session_id2_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001850 timingsafe_bcmp(kex->session_id, session_id2, session_id2_len) != 0)
Ben Lindstromf67e0772002-06-06 20:58:19 +00001851 fatal("mm_get_get: internal error: bad session id");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001852 kex->we_need = buffer_get_int(m);
Damien Miller1f0311c2014-05-15 14:24:09 +10001853#ifdef WITH_OPENSSL
Damien Millerb062c292003-03-24 09:12:09 +11001854 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
Damien Millerf675fc42004-06-15 10:30:09 +10001855 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
Damien Millerb062c292003-03-24 09:12:09 +11001856 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11001857 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Damien Millereb8b60e2010-08-31 22:41:14 +10001858 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Damien Miller1f0311c2014-05-15 14:24:09 +10001859#endif
Damien Millerc9831972013-11-07 12:00:23 +11001860 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001861 kex->server = 1;
1862 kex->hostkey_type = buffer_get_int(m);
1863 kex->kex_type = buffer_get_int(m);
1864 blob = buffer_get_string(m, &bloblen);
1865 buffer_init(&kex->my);
1866 buffer_append(&kex->my, blob, bloblen);
Darren Tuckera627d422013-06-02 07:31:17 +10001867 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001868 blob = buffer_get_string(m, &bloblen);
1869 buffer_init(&kex->peer);
1870 buffer_append(&kex->peer, blob, bloblen);
Darren Tuckera627d422013-06-02 07:31:17 +10001871 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001872 kex->done = 1;
1873 kex->flags = buffer_get_int(m);
1874 kex->client_version_string = buffer_get_string(m, NULL);
1875 kex->server_version_string = buffer_get_string(m, NULL);
Damien Miller0a80ca12010-02-27 07:55:05 +11001876 kex->load_host_public_key=&get_hostkey_public_by_type;
1877 kex->load_host_private_key=&get_hostkey_private_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001878 kex->host_key_index=&get_hostkey_index;
Damien Miller85b45e02013-07-20 13:21:52 +10001879 kex->sign = sshd_hostkey_sign;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001880
1881 return (kex);
1882}
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{
1889 Buffer m;
1890 u_char *blob, *p;
1891 u_int bloblen, plen;
Damien Millera5539d22003-04-09 20:50:06 +10001892 u_int32_t seqnr, packets;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001893 u_int64_t blocks, bytes;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001894
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001895 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001896
1897 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001898 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001899 if (!compat20) {
1900 child_state.ssh1protoflags = buffer_get_int(&m);
1901 child_state.ssh1cipher = buffer_get_int(&m);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001902 child_state.ssh1key = buffer_get_string(&m,
1903 &child_state.ssh1keylen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001904 child_state.ivout = buffer_get_string(&m,
1905 &child_state.ivoutlen);
1906 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1907 goto skip;
1908 } else {
1909 /* Get the Kex for rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001910 *pmonitor->m_pkex = mm_get_kex(&m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001911 }
1912
1913 blob = buffer_get_string(&m, &bloblen);
1914 current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
Darren Tuckera627d422013-06-02 07:31:17 +10001915 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001916
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001917 debug3("%s: Waiting for second key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001918 blob = buffer_get_string(&m, &bloblen);
1919 current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
Darren Tuckera627d422013-06-02 07:31:17 +10001920 free(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001921
1922 /* Now get sequence numbers for the packets */
Damien Millera5539d22003-04-09 20:50:06 +10001923 seqnr = buffer_get_int(&m);
1924 blocks = buffer_get_int64(&m);
1925 packets = buffer_get_int(&m);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001926 bytes = buffer_get_int64(&m);
1927 packet_set_state(MODE_OUT, seqnr, blocks, packets, bytes);
Damien Millera5539d22003-04-09 20:50:06 +10001928 seqnr = buffer_get_int(&m);
1929 blocks = buffer_get_int64(&m);
1930 packets = buffer_get_int(&m);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001931 bytes = buffer_get_int64(&m);
1932 packet_set_state(MODE_IN, seqnr, blocks, packets, bytes);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001933
1934 skip:
1935 /* Get the key context */
1936 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1937 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1938
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001939 debug3("%s: Getting compression state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001940 /* Get compression state */
1941 p = buffer_get_string(&m, &plen);
1942 if (plen != sizeof(child_state.outgoing))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001943 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001944 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
Darren Tuckera627d422013-06-02 07:31:17 +10001945 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001946
1947 p = buffer_get_string(&m, &plen);
1948 if (plen != sizeof(child_state.incoming))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001949 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001950 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
Darren Tuckera627d422013-06-02 07:31:17 +10001951 free(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001952
1953 /* Network I/O buffers */
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001954 debug3("%s: Getting Network I/O buffers", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001955 child_state.input = buffer_get_string(&m, &child_state.ilen);
1956 child_state.output = buffer_get_string(&m, &child_state.olen);
1957
Darren Tuckerc5564e12009-06-21 18:53:53 +10001958 /* Roaming */
1959 if (compat20) {
1960 child_state.sent_bytes = buffer_get_int64(&m);
1961 child_state.recv_bytes = buffer_get_int64(&m);
1962 }
1963
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001964 buffer_free(&m);
1965}
1966
1967
1968/* Allocation functions for zlib */
1969void *
1970mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1971{
Ben Lindstrom41ee2b02002-11-09 15:47:47 +00001972 size_t len = (size_t) size * ncount;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001973 void *address;
1974
Ben Lindstrom0a4f7542002-08-20 18:36:25 +00001975 if (len == 0 || ncount > SIZE_T_MAX / size)
Damien Miller530a7542002-06-26 23:27:11 +10001976 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1977
1978 address = mm_malloc(mm, len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001979
1980 return (address);
1981}
1982
1983void
1984mm_zfree(struct mm_master *mm, void *address)
1985{
1986 mm_free(mm, address);
1987}
1988
1989void
1990mm_init_compression(struct mm_master *mm)
1991{
1992 outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1993 outgoing_stream.zfree = (free_func)mm_zfree;
1994 outgoing_stream.opaque = mm;
1995
1996 incoming_stream.zalloc = (alloc_func)mm_zalloc;
1997 incoming_stream.zfree = (free_func)mm_zfree;
1998 incoming_stream.opaque = mm;
1999}
2000
2001/* XXX */
2002
2003#define FD_CLOSEONEXEC(x) do { \
Damien Miller814ace02011-05-20 19:02:47 +10002004 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002005 fatal("fcntl(%d, F_SETFD)", x); \
2006} while (0)
2007
2008static void
Damien Miller8f0bf232011-06-20 14:42:23 +10002009monitor_openfds(struct monitor *mon, int do_logfds)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002010{
Damien Miller8f0bf232011-06-20 14:42:23 +10002011 int pair[2];
2012
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002013 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Damien Miller8f0bf232011-06-20 14:42:23 +10002014 fatal("%s: socketpair: %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002015 FD_CLOSEONEXEC(pair[0]);
2016 FD_CLOSEONEXEC(pair[1]);
Damien Miller8f0bf232011-06-20 14:42:23 +10002017 mon->m_recvfd = pair[0];
2018 mon->m_sendfd = pair[1];
2019
2020 if (do_logfds) {
2021 if (pipe(pair) == -1)
2022 fatal("%s: pipe: %s", __func__, strerror(errno));
2023 FD_CLOSEONEXEC(pair[0]);
2024 FD_CLOSEONEXEC(pair[1]);
2025 mon->m_log_recvfd = pair[0];
2026 mon->m_log_sendfd = pair[1];
2027 } else
2028 mon->m_log_recvfd = mon->m_log_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002029}
2030
2031#define MM_MEMSIZE 65536
2032
2033struct monitor *
2034monitor_init(void)
2035{
2036 struct monitor *mon;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002037
Damien Miller07d86be2006-03-26 14:19:21 +11002038 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002039
Damien Miller8f0bf232011-06-20 14:42:23 +10002040 monitor_openfds(mon, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002041
2042 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10002043 if (options.compression) {
2044 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
2045 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002046
Damien Miller2d6b8332002-06-21 15:59:49 +10002047 /* Compression needs to share state across borders */
2048 mm_init_compression(mon->m_zlib);
2049 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002050
2051 return mon;
2052}
2053
2054void
2055monitor_reinit(struct monitor *mon)
2056{
Damien Miller8f0bf232011-06-20 14:42:23 +10002057 monitor_openfds(mon, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002058}
Darren Tucker0efd1552003-08-26 11:49:55 +10002059
2060#ifdef GSSAPI
2061int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002062mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002063{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002064 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10002065 OM_uint32 major;
2066 u_int len;
2067
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002068 goid.elements = buffer_get_string(m, &len);
2069 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10002070
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002071 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10002072
Darren Tuckera627d422013-06-02 07:31:17 +10002073 free(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10002074
2075 buffer_clear(m);
2076 buffer_put_int(m, major);
2077
Damien Miller6fd6def2005-11-05 15:07:05 +11002078 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002079
2080 /* Now we have a context, enable the step */
2081 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
2082
2083 return (0);
2084}
2085
2086int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002087mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002088{
2089 gss_buffer_desc in;
2090 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11002091 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10002092 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10002093 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10002094
Darren Tucker600ad8d2003-08-26 12:10:48 +10002095 in.value = buffer_get_string(m, &len);
2096 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10002097 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
Darren Tuckera627d422013-06-02 07:31:17 +10002098 free(in.value);
Darren Tucker0efd1552003-08-26 11:49:55 +10002099
2100 buffer_clear(m);
2101 buffer_put_int(m, major);
2102 buffer_put_string(m, out.value, out.length);
2103 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002104 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002105
2106 gss_release_buffer(&minor, &out);
2107
Damien Miller6fd6def2005-11-05 15:07:05 +11002108 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10002109 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
2110 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11002111 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10002112 }
2113 return (0);
2114}
2115
2116int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002117mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11002118{
2119 gss_buffer_desc gssbuf, mic;
2120 OM_uint32 ret;
2121 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002122
Damien Miller0425d402003-11-17 22:18:21 +11002123 gssbuf.value = buffer_get_string(m, &len);
2124 gssbuf.length = len;
2125 mic.value = buffer_get_string(m, &len);
2126 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11002127
Damien Miller0425d402003-11-17 22:18:21 +11002128 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11002129
Darren Tuckera627d422013-06-02 07:31:17 +10002130 free(gssbuf.value);
2131 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11002132
Damien Miller0425d402003-11-17 22:18:21 +11002133 buffer_clear(m);
2134 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11002135
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002136 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11002137
Damien Miller0425d402003-11-17 22:18:21 +11002138 if (!GSS_ERROR(ret))
2139 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11002140
Damien Miller0425d402003-11-17 22:18:21 +11002141 return (0);
2142}
2143
2144int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002145mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10002146{
2147 int authenticated;
2148
2149 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
2150
2151 buffer_clear(m);
2152 buffer_put_int(m, authenticated);
2153
2154 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002155 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10002156
Damien Miller6fd6def2005-11-05 15:07:05 +11002157 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10002158
2159 /* Monitor loop will terminate if authenticated */
2160 return (authenticated);
2161}
2162#endif /* GSSAPI */
Damien Miller01ed2272008-11-05 16:20:46 +11002163