blob: 364bd23168537dd63a3f633c4a60fd1e3f68eea7 [file] [log] [blame]
Damien Miller1c89ce02006-08-19 00:22:40 +10001/* $OpenBSD: monitor.c,v 1.88 2006/08/12 20:46:46 miod 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 Millerded319c2006-09-01 15:38:36 +100043#include <stdarg.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100044#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100045#include <string.h>
Damien Miller607aede2006-09-01 15:48:19 +100046#include <unistd.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000047
48#ifdef SKEY
49#include <skey.h>
50#endif
51
Damien Miller03e20032006-03-15 11:16:59 +110052#include <openssl/dh.h>
53
Damien Millerd7834352006-08-05 12:39:39 +100054#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000055#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100056#include "key.h"
57#include "buffer.h"
58#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000059#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100060#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000061#include "kex.h"
62#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000063#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
64#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000065#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000066#define TARGET_OS_MAC 1
67#else
68#include "zlib.h"
69#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070#include "packet.h"
71#include "auth-options.h"
72#include "sshpty.h"
73#include "channels.h"
74#include "session.h"
75#include "sshlogin.h"
76#include "canohost.h"
77#include "log.h"
78#include "servconf.h"
79#include "monitor.h"
80#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100081#ifdef GSSAPI
82#include "ssh-gss.h"
83#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000084#include "monitor_wrap.h"
85#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000086#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087#include "compat.h"
88#include "ssh2.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000089
Darren Tucker0efd1552003-08-26 11:49:55 +100090#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +100091static Gssctxt *gsscontext = NULL;
92#endif
93
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000094/* Imports */
95extern ServerOptions options;
96extern u_int utmp_len;
97extern Newkeys *current_keys[];
98extern z_stream incoming_stream;
99extern z_stream outgoing_stream;
100extern u_char session_id[];
101extern Buffer input, output;
102extern Buffer auth_debug;
103extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000104extern Buffer loginmsg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000105
106/* State exported from the child */
107
108struct {
109 z_stream incoming;
110 z_stream outgoing;
111 u_char *keyin;
112 u_int keyinlen;
113 u_char *keyout;
114 u_int keyoutlen;
115 u_char *ivin;
116 u_int ivinlen;
117 u_char *ivout;
118 u_int ivoutlen;
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000119 u_char *ssh1key;
120 u_int ssh1keylen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000121 int ssh1cipher;
122 int ssh1protoflags;
123 u_char *input;
124 u_int ilen;
125 u_char *output;
126 u_int olen;
127} child_state;
128
Damien Miller469954d2003-06-18 20:25:33 +1000129/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000130
131int mm_answer_moduli(int, Buffer *);
132int mm_answer_sign(int, Buffer *);
133int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000134int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000135int mm_answer_authserv(int, Buffer *);
136int mm_answer_authpassword(int, Buffer *);
137int mm_answer_bsdauthquery(int, Buffer *);
138int mm_answer_bsdauthrespond(int, Buffer *);
139int mm_answer_skeyquery(int, Buffer *);
140int mm_answer_skeyrespond(int, Buffer *);
141int mm_answer_keyallowed(int, Buffer *);
142int mm_answer_keyverify(int, Buffer *);
143int mm_answer_pty(int, Buffer *);
144int mm_answer_pty_cleanup(int, Buffer *);
145int mm_answer_term(int, Buffer *);
146int mm_answer_rsa_keyallowed(int, Buffer *);
147int mm_answer_rsa_challenge(int, Buffer *);
148int mm_answer_rsa_response(int, Buffer *);
149int mm_answer_sesskey(int, Buffer *);
150int mm_answer_sessid(int, Buffer *);
151
Damien Miller79418552002-04-23 20:28:48 +1000152#ifdef USE_PAM
153int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000154int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000155int mm_answer_pam_init_ctx(int, Buffer *);
156int mm_answer_pam_query(int, Buffer *);
157int mm_answer_pam_respond(int, Buffer *);
158int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000159#endif
160
Darren Tucker0efd1552003-08-26 11:49:55 +1000161#ifdef GSSAPI
162int mm_answer_gss_setup_ctx(int, Buffer *);
163int mm_answer_gss_accept_ctx(int, Buffer *);
164int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100165int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000166#endif
Damien Miller25162f22002-09-12 09:47:29 +1000167
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100168#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100169int mm_answer_audit_event(int, Buffer *);
170int mm_answer_audit_command(int, Buffer *);
171#endif
172
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000173static Authctxt *authctxt;
174static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
175
176/* local state for key verify */
177static u_char *key_blob = NULL;
178static u_int key_bloblen = 0;
179static int key_blobtype = MM_NOKEY;
Damien Millera10f5612002-09-12 09:49:15 +1000180static char *hostbased_cuser = NULL;
181static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000182static char *auth_method = "unknown";
Darren Tucker502d3842003-06-28 12:38:01 +1000183static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000184static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000185static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000186
187struct mon_table {
188 enum monitor_reqtype type;
189 int flags;
190 int (*f)(int, Buffer *);
191};
192
193#define MON_ISAUTH 0x0004 /* Required for Authentication */
194#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
195#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100196#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000197
198#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
199
200#define MON_PERMIT 0x1000 /* Request is permitted */
201
202struct mon_table mon_dispatch_proto20[] = {
203 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
204 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
205 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
206 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000207 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000208 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000209#ifdef USE_PAM
210 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000211 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000212 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
213 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
214 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
215 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000216#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100217#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100218 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100219#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000220#ifdef BSD_AUTH
221 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100222 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000223#endif
224#ifdef SKEY
225 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
226 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
227#endif
228 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
229 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000230#ifdef GSSAPI
231 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
232 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
233 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100234 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000235#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000236 {0, 0, NULL}
237};
238
239struct mon_table mon_dispatch_postauth20[] = {
240 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
241 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
242 {MONITOR_REQ_PTY, 0, mm_answer_pty},
243 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
244 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100245#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100246 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
247 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
248#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000249 {0, 0, NULL}
250};
251
252struct mon_table mon_dispatch_proto15[] = {
253 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
254 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
255 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
256 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller7a8f5b32006-03-31 23:14:23 +1100257 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_rsa_keyallowed},
258 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_keyallowed},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000259 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
260 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
261#ifdef BSD_AUTH
262 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100263 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000264#endif
265#ifdef SKEY
266 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
267 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
268#endif
Damien Millera33501b2002-05-08 12:24:42 +1000269#ifdef USE_PAM
270 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000271 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000272 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
273 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
274 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
275 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Damien Millera33501b2002-05-08 12:24:42 +1000276#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100277#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100278 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100279#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000280 {0, 0, NULL}
281};
282
283struct mon_table mon_dispatch_postauth15[] = {
284 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
285 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
286 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100287#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100288 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker3745e2b2005-03-06 22:31:35 +1100289 {MONITOR_REQ_AUDIT_COMMAND, MON_ONCE, mm_answer_audit_command},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100290#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000291 {0, 0, NULL}
292};
293
294struct mon_table *mon_dispatch;
295
296/* Specifies if a certain message is allowed at the moment */
297
298static void
299monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
300{
301 while (ent->f != NULL) {
302 if (ent->type == type) {
303 ent->flags &= ~MON_PERMIT;
304 ent->flags |= permit ? MON_PERMIT : 0;
305 return;
306 }
307 ent++;
308 }
309}
310
311static void
312monitor_permit_authentications(int permit)
313{
314 struct mon_table *ent = mon_dispatch;
315
316 while (ent->f != NULL) {
317 if (ent->flags & MON_AUTH) {
318 ent->flags &= ~MON_PERMIT;
319 ent->flags |= permit ? MON_PERMIT : 0;
320 }
321 ent++;
322 }
323}
324
Darren Tucker3e33cec2003-10-02 16:12:36 +1000325void
326monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000327{
328 struct mon_table *ent;
329 int authenticated = 0;
330
331 debug3("preauth child monitor started");
332
Darren Tucker3e33cec2003-10-02 16:12:36 +1000333 authctxt = _authctxt;
334 memset(authctxt, 0, sizeof(*authctxt));
335
Darren Tuckerde0de392005-03-31 23:52:04 +1000336 authctxt->loginmsg = &loginmsg;
337
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000338 if (compat20) {
339 mon_dispatch = mon_dispatch_proto20;
340
341 /* Permit requests for moduli and signatures */
342 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
343 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
344 } else {
345 mon_dispatch = mon_dispatch_proto15;
346
347 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
348 }
349
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000350 /* The first few requests do not require asynchronous access */
351 while (!authenticated) {
Damien Miller7a8f5b32006-03-31 23:14:23 +1100352 auth_method = "unknown";
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000353 authenticated = monitor_read(pmonitor, mon_dispatch, &ent);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000354 if (authenticated) {
355 if (!(ent->flags & MON_AUTHDECIDE))
356 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000357 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000358 if (authctxt->pw->pw_uid == 0 &&
359 !auth_root_allowed(auth_method))
360 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000361#ifdef USE_PAM
362 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100363 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000364 Buffer m;
365
366 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100367 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000368 MONITOR_REQ_PAM_ACCOUNT, &m);
369 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
370 buffer_free(&m);
371 }
372#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000373 }
374
Damien Miller7a8f5b32006-03-31 23:14:23 +1100375 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000376 auth_log(authctxt, authenticated, auth_method,
377 compat20 ? " ssh2" : "");
378 if (!authenticated)
379 authctxt->failures++;
380 }
381 }
382
383 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000384 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100385 if (strcmp(auth_method, "unknown") == 0)
386 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000387
388 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000389 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000390
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000391 mm_get_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000392}
393
Damien Millerbe64d432003-05-14 19:31:12 +1000394static void
395monitor_set_child_handler(pid_t pid)
396{
397 monitor_child_pid = pid;
398}
399
400static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000401monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000402{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000403 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000404}
405
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000406void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000407monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000408{
Damien Millerbe64d432003-05-14 19:31:12 +1000409 monitor_set_child_handler(pmonitor->m_pid);
410 signal(SIGHUP, &monitor_child_handler);
411 signal(SIGTERM, &monitor_child_handler);
412
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000413 if (compat20) {
414 mon_dispatch = mon_dispatch_postauth20;
415
416 /* Permit requests for moduli and signatures */
417 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
418 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
419 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000420 } else {
421 mon_dispatch = mon_dispatch_postauth15;
422 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
423 }
424 if (!no_pty_flag) {
425 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
426 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
427 }
428
429 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000430 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000431}
432
433void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000434monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000435{
Damien Miller2d6b8332002-06-21 15:59:49 +1000436 if (options.compression) {
437 /* The member allocation is not visible, so sync it */
438 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
439 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000440}
441
442int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000443monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000444 struct mon_table **pent)
445{
446 Buffer m;
447 int ret;
448 u_char type;
449
450 buffer_init(&m);
451
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000452 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000453 type = buffer_get_char(&m);
454
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000455 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000456
457 while (ent->f != NULL) {
458 if (ent->type == type)
459 break;
460 ent++;
461 }
462
463 if (ent->f != NULL) {
464 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000465 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000466 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000467 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000468 buffer_free(&m);
469
470 /* The child may use this request only once, disable it */
471 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000472 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000473 type);
474 ent->flags &= ~MON_PERMIT;
475 }
476
477 if (pent != NULL)
478 *pent = ent;
479
480 return ret;
481 }
482
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000483 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000484
485 /* NOTREACHED */
486 return (-1);
487}
488
489/* allowed key state */
490static int
491monitor_allowed_key(u_char *blob, u_int bloblen)
492{
493 /* make sure key is allowed */
494 if (key_blob == NULL || key_bloblen != bloblen ||
495 memcmp(key_blob, blob, key_bloblen))
496 return (0);
497 return (1);
498}
499
500static void
501monitor_reset_key_state(void)
502{
503 /* reset state */
504 if (key_blob != NULL)
505 xfree(key_blob);
506 if (hostbased_cuser != NULL)
507 xfree(hostbased_cuser);
508 if (hostbased_chost != NULL)
509 xfree(hostbased_chost);
510 key_blob = NULL;
511 key_bloblen = 0;
512 key_blobtype = MM_NOKEY;
513 hostbased_cuser = NULL;
514 hostbased_chost = NULL;
515}
516
517int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000518mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000519{
520 DH *dh;
521 int min, want, max;
522
523 min = buffer_get_int(m);
524 want = buffer_get_int(m);
525 max = buffer_get_int(m);
526
527 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000528 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000529 /* We need to check here, too, in case the child got corrupted */
530 if (max < min || want < min || max < want)
531 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000532 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000533
534 buffer_clear(m);
535
536 dh = choose_dh(min, want, max);
537 if (dh == NULL) {
538 buffer_put_char(m, 0);
539 return (0);
540 } else {
541 /* Send first bignum */
542 buffer_put_char(m, 1);
543 buffer_put_bignum2(m, dh->p);
544 buffer_put_bignum2(m, dh->g);
545
546 DH_free(dh);
547 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000548 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000549 return (0);
550}
551
552int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000553mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000554{
555 Key *key;
556 u_char *p;
557 u_char *signature;
558 u_int siglen, datlen;
559 int keyid;
560
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000561 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000562
563 keyid = buffer_get_int(m);
564 p = buffer_get_string(m, &datlen);
565
Damien Millera63128d2006-03-15 12:08:28 +1100566 /*
Damien Millerc91e5562006-03-26 13:58:55 +1100567 * Supported KEX types will only return SHA1 (20 byte) or
Damien Millera63128d2006-03-15 12:08:28 +1100568 * SHA256 (32 byte) hashes
569 */
570 if (datlen != 20 && datlen != 32)
Ben Lindstromd5502182002-06-27 00:12:57 +0000571 fatal("%s: data length incorrect: %u", __func__, datlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000572
Ben Lindstromf67e0772002-06-06 20:58:19 +0000573 /* save session id, it will be passed on the first call */
574 if (session_id2_len == 0) {
575 session_id2_len = datlen;
576 session_id2 = xmalloc(session_id2_len);
577 memcpy(session_id2, p, session_id2_len);
578 }
579
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000580 if ((key = get_hostkey_by_index(keyid)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000581 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000582 if (key_sign(key, &signature, &siglen, p, datlen) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000583 fatal("%s: key_sign failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000584
Ben Lindstromd5502182002-06-27 00:12:57 +0000585 debug3("%s: signature %p(%u)", __func__, signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000586
587 buffer_clear(m);
588 buffer_put_string(m, signature, siglen);
589
590 xfree(p);
591 xfree(signature);
592
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000593 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000594
595 /* Turn on permissions for getpwnam */
596 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
597
598 return (0);
599}
600
601/* Retrieves the password entry and also checks if the user is permitted */
602
603int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000604mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000605{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000606 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000607 struct passwd *pwent;
608 int allowed = 0;
609
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000610 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000611
612 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000613 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000614
Darren Tuckerb09b6772004-06-22 15:06:46 +1000615 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000616
Darren Tuckerb09b6772004-06-22 15:06:46 +1000617 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000618
Darren Tuckerb09b6772004-06-22 15:06:46 +1000619 authctxt->user = xstrdup(username);
620 setproctitle("%s [priv]", pwent ? username : "unknown");
621 xfree(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000622
623 buffer_clear(m);
624
625 if (pwent == NULL) {
626 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100627 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000628 goto out;
629 }
630
631 allowed = 1;
632 authctxt->pw = pwent;
633 authctxt->valid = 1;
634
635 buffer_put_char(m, 1);
636 buffer_put_string(m, pwent, sizeof(struct passwd));
637 buffer_put_cstring(m, pwent->pw_name);
638 buffer_put_cstring(m, "*");
639 buffer_put_cstring(m, pwent->pw_gecos);
Kevin Steves7e147602002-03-22 18:07:17 +0000640#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000641 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000642#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000643 buffer_put_cstring(m, pwent->pw_dir);
644 buffer_put_cstring(m, pwent->pw_shell);
645
646 out:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000647 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000648 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000649
650 /* For SSHv1 allow authentication now */
651 if (!compat20)
652 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000653 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000654 /* Allow service/style information on the auth context */
655 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000656 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
657 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000658
Damien Millera33501b2002-05-08 12:24:42 +1000659#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000660 if (options.use_pam)
661 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000662#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100663#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100664 monitor_permit(mon_dispatch, MONITOR_REQ_AUDIT_COMMAND, 1);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100665#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000666
667 return (0);
668}
669
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000670int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000671{
672 char *banner;
673
674 buffer_clear(m);
675 banner = auth2_read_banner();
676 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000677 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000678
679 if (banner != NULL)
Ben Lindstromeec16fc2002-07-04 00:06:15 +0000680 xfree(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000681
682 return (0);
683}
684
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000685int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000686mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000687{
688 monitor_permit_authentications(1);
689
690 authctxt->service = buffer_get_string(m, NULL);
691 authctxt->style = buffer_get_string(m, NULL);
692 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000693 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000694
695 if (strlen(authctxt->style) == 0) {
696 xfree(authctxt->style);
697 authctxt->style = NULL;
698 }
699
700 return (0);
701}
702
703int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000704mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000705{
706 static int call_count;
707 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000708 int authenticated;
709 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000710
711 passwd = buffer_get_string(m, &plen);
712 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000713 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000714 auth_password(authctxt, passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000715 memset(passwd, 0, strlen(passwd));
716 xfree(passwd);
717
718 buffer_clear(m);
719 buffer_put_int(m, authenticated);
720
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000721 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000722 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000723
724 call_count++;
725 if (plen == 0 && call_count == 1)
726 auth_method = "none";
727 else
728 auth_method = "password";
729
730 /* Causes monitor loop to terminate if authenticated */
731 return (authenticated);
732}
733
734#ifdef BSD_AUTH
735int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000736mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000737{
738 char *name, *infotxt;
739 u_int numprompts;
740 u_int *echo_on;
741 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100742 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000743
Damien Millerb7df3af2003-02-24 11:55:46 +1100744 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
745 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000746
747 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100748 buffer_put_int(m, success);
749 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000750 buffer_put_cstring(m, prompts[0]);
751
Damien Millerb7df3af2003-02-24 11:55:46 +1100752 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000753 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000754
Damien Millerb7df3af2003-02-24 11:55:46 +1100755 if (success) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756 xfree(name);
757 xfree(infotxt);
758 xfree(prompts);
759 xfree(echo_on);
760 }
761
762 return (0);
763}
764
765int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000766mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000767{
768 char *response;
769 int authok;
770
771 if (authctxt->as == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000772 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000773
774 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000775 authok = options.challenge_response_authentication &&
776 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000777 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000778 debug3("%s: <%s> = <%d>", __func__, response, authok);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000779 xfree(response);
780
781 buffer_clear(m);
782 buffer_put_int(m, authok);
783
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000784 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000785 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000786
787 auth_method = "bsdauth";
788
789 return (authok != 0);
790}
791#endif
792
793#ifdef SKEY
794int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000795mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000796{
797 struct skey skey;
798 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100799 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000800
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000801 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
802 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000803
804 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100805 buffer_put_int(m, success);
806 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000807 buffer_put_cstring(m, challenge);
808
Damien Millerb7df3af2003-02-24 11:55:46 +1100809 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000810 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000811
812 return (0);
813}
814
815int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000816mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000817{
818 char *response;
819 int authok;
820
821 response = buffer_get_string(m, NULL);
822
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000823 authok = (options.challenge_response_authentication &&
824 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000825 skey_haskey(authctxt->pw->pw_name) == 0 &&
826 skey_passcheck(authctxt->pw->pw_name, response) != -1);
827
828 xfree(response);
829
830 buffer_clear(m);
831 buffer_put_int(m, authok);
832
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000833 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000834 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000835
836 auth_method = "skey";
837
838 return (authok != 0);
839}
840#endif
841
Damien Miller79418552002-04-23 20:28:48 +1000842#ifdef USE_PAM
843int
Darren Tucker7eda5922004-06-22 13:22:50 +1000844mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +1000845{
Damien Miller4e448a32003-05-14 15:11:48 +1000846 if (!options.use_pam)
847 fatal("UsePAM not set, but ended up in %s anyway", __func__);
848
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100849 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +1000850
Damien Miller1f499fd2003-08-25 13:08:49 +1000851 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
852
Damien Miller79418552002-04-23 20:28:48 +1000853 return (0);
854}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000855
Damien Miller1f499fd2003-08-25 13:08:49 +1000856int
Darren Tucker7eda5922004-06-22 13:22:50 +1000857mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +1000858{
859 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +1100860
Damien Miller1f499fd2003-08-25 13:08:49 +1000861 if (!options.use_pam)
862 fatal("UsePAM not set, but ended up in %s anyway", __func__);
863
864 ret = do_pam_account();
865
866 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +1000867 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +1000868
Darren Tucker7eda5922004-06-22 13:22:50 +1000869 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +1000870
871 return (ret);
872}
873
Damien Miller4f9f42a2003-05-10 19:28:02 +1000874static void *sshpam_ctxt, *sshpam_authok;
875extern KbdintDevice sshpam_device;
876
877int
Darren Tucker7eda5922004-06-22 13:22:50 +1000878mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000879{
880
881 debug3("%s", __func__);
882 authctxt->user = buffer_get_string(m, NULL);
883 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
884 sshpam_authok = NULL;
885 buffer_clear(m);
886 if (sshpam_ctxt != NULL) {
887 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
888 buffer_put_int(m, 1);
889 } else {
890 buffer_put_int(m, 0);
891 }
Darren Tucker7eda5922004-06-22 13:22:50 +1000892 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000893 return (0);
894}
895
896int
Darren Tucker7eda5922004-06-22 13:22:50 +1000897mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000898{
899 char *name, *info, **prompts;
Damien Miller04b65332005-07-17 17:53:31 +1000900 u_int i, num, *echo_on;
901 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000902
903 debug3("%s", __func__);
904 sshpam_authok = NULL;
905 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
906 if (ret == 0 && num == 0)
907 sshpam_authok = sshpam_ctxt;
908 if (num > 1 || name == NULL || info == NULL)
909 ret = -1;
910 buffer_clear(m);
911 buffer_put_int(m, ret);
912 buffer_put_cstring(m, name);
913 xfree(name);
914 buffer_put_cstring(m, info);
915 xfree(info);
916 buffer_put_int(m, num);
917 for (i = 0; i < num; ++i) {
918 buffer_put_cstring(m, prompts[i]);
919 xfree(prompts[i]);
920 buffer_put_int(m, echo_on[i]);
921 }
922 if (prompts != NULL)
923 xfree(prompts);
924 if (echo_on != NULL)
925 xfree(echo_on);
Darren Tuckerf14b2aa2006-05-21 18:26:40 +1000926 auth_method = "keyboard-interactive/pam";
Darren Tucker7eda5922004-06-22 13:22:50 +1000927 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000928 return (0);
929}
930
931int
Darren Tucker7eda5922004-06-22 13:22:50 +1000932mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000933{
934 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +1000935 u_int i, num;
936 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000937
938 debug3("%s", __func__);
939 sshpam_authok = NULL;
940 num = buffer_get_int(m);
941 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +1000942 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000943 for (i = 0; i < num; ++i)
944 resp[i] = buffer_get_string(m, NULL);
945 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
946 for (i = 0; i < num; ++i)
947 xfree(resp[i]);
948 xfree(resp);
949 } else {
950 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
951 }
952 buffer_clear(m);
953 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +1000954 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000955 auth_method = "keyboard-interactive/pam";
956 if (ret == 0)
957 sshpam_authok = sshpam_ctxt;
958 return (0);
959}
960
961int
Darren Tucker7eda5922004-06-22 13:22:50 +1000962mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000963{
964
965 debug3("%s", __func__);
966 (sshpam_device.free_ctx)(sshpam_ctxt);
967 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +1000968 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Darren Tuckerf14b2aa2006-05-21 18:26:40 +1000969 auth_method = "keyboard-interactive/pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +1000970 return (sshpam_authok == sshpam_ctxt);
971}
Damien Miller79418552002-04-23 20:28:48 +1000972#endif
973
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000974static void
975mm_append_debug(Buffer *m)
976{
977 if (auth_debug_init && buffer_len(&auth_debug)) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000978 debug3("%s: Appending debug messages for child", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000979 buffer_append(m, buffer_ptr(&auth_debug),
980 buffer_len(&auth_debug));
981 buffer_clear(&auth_debug);
982 }
983}
984
985int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000986mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000987{
988 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +1000989 char *cuser, *chost;
990 u_char *blob;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000991 u_int bloblen;
992 enum mm_keytype type = 0;
993 int allowed = 0;
994
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000995 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000996
997 type = buffer_get_int(m);
998 cuser = buffer_get_string(m, NULL);
999 chost = buffer_get_string(m, NULL);
1000 blob = buffer_get_string(m, &bloblen);
1001
1002 key = key_from_blob(blob, bloblen);
1003
1004 if ((compat20 && type == MM_RSAHOSTKEY) ||
1005 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001006 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001007
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001008 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001009
Damien Miller3e3b5142003-11-17 21:13:40 +11001010 if (key != NULL && authctxt->valid) {
Darren Tucker47eede72005-03-14 23:08:12 +11001011 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001012 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001013 allowed = options.pubkey_authentication &&
1014 user_key_allowed(authctxt->pw, key);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001015 auth_method = "publickey";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001016 break;
1017 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001018 allowed = options.hostbased_authentication &&
1019 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001020 cuser, chost, key);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001021 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001022 break;
1023 case MM_RSAHOSTKEY:
1024 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001025 allowed = options.rhosts_rsa_authentication &&
1026 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001027 cuser, chost, key);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001028 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001029 break;
1030 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001031 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001032 break;
1033 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001034 }
Damien Miller00111382003-03-10 11:21:17 +11001035 if (key != NULL)
1036 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001037
1038 /* clear temporarily storage (used by verify) */
1039 monitor_reset_key_state();
1040
1041 if (allowed) {
1042 /* Save temporarily for comparison in verify */
1043 key_blob = blob;
1044 key_bloblen = bloblen;
1045 key_blobtype = type;
1046 hostbased_cuser = cuser;
1047 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001048 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001049 /* Log failed attempt */
1050 auth_log(authctxt, 0, auth_method, compat20 ? " ssh2" : "");
Damien Miller96937bd2006-03-26 14:01:54 +11001051 xfree(blob);
1052 xfree(cuser);
1053 xfree(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001054 }
1055
1056 debug3("%s: key %p is %s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001057 __func__, key, allowed ? "allowed" : "disallowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001058
1059 buffer_clear(m);
1060 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001061 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001062
1063 mm_append_debug(m);
1064
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001065 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001066
1067 if (type == MM_RSAHOSTKEY)
1068 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1069
1070 return (0);
1071}
1072
1073static int
1074monitor_valid_userblob(u_char *data, u_int datalen)
1075{
1076 Buffer b;
Damien Millera10f5612002-09-12 09:49:15 +10001077 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001078 u_int len;
1079 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001080
1081 buffer_init(&b);
1082 buffer_append(&b, data, datalen);
1083
1084 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001085 p = buffer_ptr(&b);
1086 len = buffer_len(&b);
1087 if ((session_id2 == NULL) ||
1088 (len < session_id2_len) ||
1089 (memcmp(p, session_id2, session_id2_len) != 0))
1090 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001091 buffer_consume(&b, session_id2_len);
1092 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001093 p = buffer_get_string(&b, &len);
1094 if ((session_id2 == NULL) ||
1095 (len != session_id2_len) ||
1096 (memcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001097 fail++;
Ben Lindstromf67e0772002-06-06 20:58:19 +00001098 xfree(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001099 }
1100 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1101 fail++;
1102 p = buffer_get_string(&b, NULL);
1103 if (strcmp(authctxt->user, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001104 logit("wrong user name passed to monitor: expected %s != %.100s",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001105 authctxt->user, p);
1106 fail++;
1107 }
1108 xfree(p);
1109 buffer_skip_string(&b);
1110 if (datafellows & SSH_BUG_PKAUTH) {
1111 if (!buffer_get_char(&b))
1112 fail++;
1113 } else {
1114 p = buffer_get_string(&b, NULL);
1115 if (strcmp("publickey", p) != 0)
1116 fail++;
1117 xfree(p);
1118 if (!buffer_get_char(&b))
1119 fail++;
1120 buffer_skip_string(&b);
1121 }
1122 buffer_skip_string(&b);
1123 if (buffer_len(&b) != 0)
1124 fail++;
1125 buffer_free(&b);
1126 return (fail == 0);
1127}
1128
1129static int
Damien Millera10f5612002-09-12 09:49:15 +10001130monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1131 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001132{
1133 Buffer b;
Damien Millera10f5612002-09-12 09:49:15 +10001134 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001135 u_int len;
1136 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001137
1138 buffer_init(&b);
1139 buffer_append(&b, data, datalen);
1140
Ben Lindstromf67e0772002-06-06 20:58:19 +00001141 p = buffer_get_string(&b, &len);
1142 if ((session_id2 == NULL) ||
1143 (len != session_id2_len) ||
1144 (memcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001145 fail++;
Ben Lindstromf67e0772002-06-06 20:58:19 +00001146 xfree(p);
1147
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001148 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1149 fail++;
1150 p = buffer_get_string(&b, NULL);
1151 if (strcmp(authctxt->user, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001152 logit("wrong user name passed to monitor: expected %s != %.100s",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001153 authctxt->user, p);
1154 fail++;
1155 }
1156 xfree(p);
1157 buffer_skip_string(&b); /* service */
1158 p = buffer_get_string(&b, NULL);
1159 if (strcmp(p, "hostbased") != 0)
1160 fail++;
1161 xfree(p);
1162 buffer_skip_string(&b); /* pkalg */
1163 buffer_skip_string(&b); /* pkblob */
1164
1165 /* verify client host, strip trailing dot if necessary */
1166 p = buffer_get_string(&b, NULL);
1167 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1168 p[len - 1] = '\0';
1169 if (strcmp(p, chost) != 0)
1170 fail++;
1171 xfree(p);
1172
1173 /* verify client user */
1174 p = buffer_get_string(&b, NULL);
1175 if (strcmp(p, cuser) != 0)
1176 fail++;
1177 xfree(p);
1178
1179 if (buffer_len(&b) != 0)
1180 fail++;
1181 buffer_free(&b);
1182 return (fail == 0);
1183}
1184
1185int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001186mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001187{
1188 Key *key;
1189 u_char *signature, *data, *blob;
1190 u_int signaturelen, datalen, bloblen;
1191 int verified = 0;
1192 int valid_data = 0;
1193
1194 blob = buffer_get_string(m, &bloblen);
1195 signature = buffer_get_string(m, &signaturelen);
1196 data = buffer_get_string(m, &datalen);
1197
1198 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001199 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001200 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001201
1202 key = key_from_blob(blob, bloblen);
1203 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001204 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001205
1206 switch (key_blobtype) {
1207 case MM_USERKEY:
1208 valid_data = monitor_valid_userblob(data, datalen);
1209 break;
1210 case MM_HOSTKEY:
1211 valid_data = monitor_valid_hostbasedblob(data, datalen,
1212 hostbased_cuser, hostbased_chost);
1213 break;
1214 default:
1215 valid_data = 0;
1216 break;
1217 }
1218 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001219 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001220
1221 verified = key_verify(key, signature, signaturelen, data, datalen);
1222 debug3("%s: key %p signature %s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001223 __func__, key, verified ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001224
1225 key_free(key);
1226 xfree(blob);
1227 xfree(signature);
1228 xfree(data);
1229
Ben Lindstrome1c09122002-06-23 00:38:24 +00001230 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1231
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001232 monitor_reset_key_state();
1233
1234 buffer_clear(m);
1235 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001236 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001237
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001238 return (verified);
1239}
1240
1241static void
1242mm_record_login(Session *s, struct passwd *pw)
1243{
1244 socklen_t fromlen;
1245 struct sockaddr_storage from;
1246
1247 /*
1248 * Get IP address of client. If the connection is not a socket, let
1249 * the address be 0.0.0.0.
1250 */
1251 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001252 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001253 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001254 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001255 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001256 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001257 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001258 }
1259 }
1260 /* Record that there was a login on that tty from the remote host. */
1261 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
Damien Miller3a961dc2003-06-03 10:25:48 +10001262 get_remote_name_or_ip(utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001263 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001264}
1265
1266static void
1267mm_session_close(Session *s)
1268{
Damien Miller04bd8b02003-05-25 14:38:33 +10001269 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001270 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001271 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001272 session_pty_cleanup2(s);
1273 }
1274 s->used = 0;
1275}
1276
1277int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001278mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001279{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001280 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001281 Session *s;
1282 int res, fd0;
1283
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001284 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001285
1286 buffer_clear(m);
1287 s = session_new();
1288 if (s == NULL)
1289 goto error;
1290 s->authctxt = authctxt;
1291 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001292 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001293 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1294 if (res == 0)
1295 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001296 pty_setowner(authctxt->pw, s->tty);
1297
1298 buffer_put_int(m, 1);
1299 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001300
1301 /* We need to trick ttyslot */
1302 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001303 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001304
1305 mm_record_login(s, authctxt->pw);
1306
1307 /* Now we can close the file descriptor again */
1308 close(0);
1309
Darren Tucker09991742004-07-17 17:05:14 +10001310 /* send messages generated by record_login */
1311 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1312 buffer_clear(&loginmsg);
1313
1314 mm_request_send(sock, MONITOR_ANS_PTY, m);
1315
1316 mm_send_fd(sock, s->ptyfd);
1317 mm_send_fd(sock, s->ttyfd);
1318
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001319 /* make sure nothing uses fd 0 */
1320 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001321 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001322 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001323 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001324
1325 /* slave is not needed */
1326 close(s->ttyfd);
1327 s->ttyfd = s->ptyfd;
1328 /* no need to dup() because nobody closes ptyfd */
1329 s->ptymaster = s->ptyfd;
1330
Damien Miller9ab00b42006-08-05 12:40:11 +10001331 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001332
1333 return (0);
1334
1335 error:
1336 if (s != NULL)
1337 mm_session_close(s);
1338 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001339 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340 return (0);
1341}
1342
1343int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001344mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001345{
1346 Session *s;
1347 char *tty;
1348
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001349 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001350
1351 tty = buffer_get_string(m, NULL);
1352 if ((s = session_by_tty(tty)) != NULL)
1353 mm_session_close(s);
1354 buffer_clear(m);
1355 xfree(tty);
1356 return (0);
1357}
1358
1359int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001360mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001361{
1362 BIGNUM *p;
1363 int rsafail;
1364
1365 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001366 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001367
1368 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001369 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001370
1371 buffer_get_bignum2(m, p);
1372
1373 rsafail = ssh1_session_key(p);
1374
1375 buffer_clear(m);
1376 buffer_put_int(m, rsafail);
1377 buffer_put_bignum2(m, p);
1378
1379 BN_clear_free(p);
1380
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001381 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001382
1383 /* Turn on permissions for sessid passing */
1384 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1385
1386 return (0);
1387}
1388
1389int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001390mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001391{
1392 int i;
1393
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001394 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001395
1396 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001397 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001398 for (i = 0; i < 16; i++)
1399 session_id[i] = buffer_get_char(m);
1400
1401 /* Turn on permissions for getpwnam */
1402 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1403
1404 return (0);
1405}
1406
1407int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001408mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001409{
1410 BIGNUM *client_n;
1411 Key *key = NULL;
1412 u_char *blob = NULL;
1413 u_int blen = 0;
1414 int allowed = 0;
1415
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001416 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001417
Damien Miller7a8f5b32006-03-31 23:14:23 +11001418 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001419 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001420 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001421 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001422 buffer_get_bignum2(m, client_n);
1423 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1424 BN_clear_free(client_n);
1425 }
1426 buffer_clear(m);
1427 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001428 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001429
1430 /* clear temporarily storage (used by generate challenge) */
1431 monitor_reset_key_state();
1432
1433 if (allowed && key != NULL) {
1434 key->type = KEY_RSA; /* cheat for key_to_blob */
1435 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001436 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001437 buffer_put_string(m, blob, blen);
1438
1439 /* Save temporarily for comparison in verify */
1440 key_blob = blob;
1441 key_bloblen = blen;
1442 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001443 }
Damien Miller00111382003-03-10 11:21:17 +11001444 if (key != NULL)
1445 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001446
1447 mm_append_debug(m);
1448
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001449 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001450
1451 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1452 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1453 return (0);
1454}
1455
1456int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001457mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001458{
1459 Key *key = NULL;
1460 u_char *blob;
1461 u_int blen;
1462
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001463 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001464
1465 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001466 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001467 blob = buffer_get_string(m, &blen);
1468 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001469 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001470 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001471 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001472 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001473 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474
1475 if (ssh1_challenge)
1476 BN_clear_free(ssh1_challenge);
1477 ssh1_challenge = auth_rsa_generate_challenge(key);
1478
1479 buffer_clear(m);
1480 buffer_put_bignum2(m, ssh1_challenge);
1481
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001482 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001483 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001484
1485 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001486
1487 xfree(blob);
1488 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001489 return (0);
1490}
1491
1492int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001493mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001494{
1495 Key *key = NULL;
1496 u_char *blob, *response;
1497 u_int blen, len;
1498 int success;
1499
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001500 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001501
1502 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001503 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001504 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001505 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001506
1507 blob = buffer_get_string(m, &blen);
1508 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001509 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001510 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001511 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001512 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001513 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001514 response = buffer_get_string(m, &len);
1515 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001516 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001517 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1518
Damien Miller00111382003-03-10 11:21:17 +11001519 xfree(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001520 key_free(key);
1521 xfree(response);
1522
1523 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1524
1525 /* reset state */
1526 BN_clear_free(ssh1_challenge);
1527 ssh1_challenge = NULL;
1528 monitor_reset_key_state();
1529
1530 buffer_clear(m);
1531 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001532 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001533
1534 return (success);
1535}
1536
1537int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001538mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001539{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001540 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001541 int res, status;
1542
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001543 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001544
1545 /* The child is terminating */
1546 session_destroy_all(&mm_session_close);
1547
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001548 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001549 if (errno != EINTR)
1550 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001551
1552 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1553
1554 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001555 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001556}
1557
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001558#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001559/* Report that an audit event occurred */
1560int
1561mm_answer_audit_event(int socket, Buffer *m)
1562{
1563 ssh_audit_event_t event;
1564
1565 debug3("%s entering", __func__);
1566
1567 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001568 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001569 case SSH_AUTH_FAIL_PUBKEY:
1570 case SSH_AUTH_FAIL_HOSTBASED:
1571 case SSH_AUTH_FAIL_GSSAPI:
1572 case SSH_LOGIN_EXCEED_MAXTRIES:
1573 case SSH_LOGIN_ROOT_DENIED:
1574 case SSH_CONNECTION_CLOSE:
1575 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001576 audit_event(event);
1577 break;
1578 default:
1579 fatal("Audit event type %d not permitted", event);
1580 }
1581
1582 return (0);
1583}
1584
1585int
1586mm_answer_audit_command(int socket, Buffer *m)
1587{
1588 u_int len;
1589 char *cmd;
1590
1591 debug3("%s entering", __func__);
1592 cmd = buffer_get_string(m, &len);
1593 /* sanity check command, if so how? */
1594 audit_run_command(cmd);
1595 xfree(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001596 return (0);
1597}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001598#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001599
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001600void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001601monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001602{
1603 if (compat20) {
1604 set_newkeys(MODE_IN);
1605 set_newkeys(MODE_OUT);
1606 } else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001607 packet_set_protocol_flags(child_state.ssh1protoflags);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001608 packet_set_encryption_key(child_state.ssh1key,
1609 child_state.ssh1keylen, child_state.ssh1cipher);
1610 xfree(child_state.ssh1key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001611 }
1612
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001613 /* for rc4 and other stateful ciphers */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001614 packet_set_keycontext(MODE_OUT, child_state.keyout);
1615 xfree(child_state.keyout);
1616 packet_set_keycontext(MODE_IN, child_state.keyin);
1617 xfree(child_state.keyin);
1618
1619 if (!compat20) {
1620 packet_set_iv(MODE_OUT, child_state.ivout);
1621 xfree(child_state.ivout);
1622 packet_set_iv(MODE_IN, child_state.ivin);
1623 xfree(child_state.ivin);
1624 }
1625
1626 memcpy(&incoming_stream, &child_state.incoming,
1627 sizeof(incoming_stream));
1628 memcpy(&outgoing_stream, &child_state.outgoing,
1629 sizeof(outgoing_stream));
1630
1631 /* Update with new address */
Damien Miller2d6b8332002-06-21 15:59:49 +10001632 if (options.compression)
1633 mm_init_compression(pmonitor->m_zlib);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001634
1635 /* Network I/O buffers */
1636 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1637 buffer_clear(&input);
1638 buffer_append(&input, child_state.input, child_state.ilen);
1639 memset(child_state.input, 0, child_state.ilen);
1640 xfree(child_state.input);
1641
1642 buffer_clear(&output);
1643 buffer_append(&output, child_state.output, child_state.olen);
1644 memset(child_state.output, 0, child_state.olen);
1645 xfree(child_state.output);
1646}
1647
1648static Kex *
1649mm_get_kex(Buffer *m)
1650{
1651 Kex *kex;
1652 void *blob;
1653 u_int bloblen;
1654
Damien Miller07d86be2006-03-26 14:19:21 +11001655 kex = xcalloc(1, sizeof(*kex));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001656 kex->session_id = buffer_get_string(m, &kex->session_id_len);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001657 if ((session_id2 == NULL) ||
1658 (kex->session_id_len != session_id2_len) ||
1659 (memcmp(kex->session_id, session_id2, session_id2_len) != 0))
1660 fatal("mm_get_get: internal error: bad session id");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001661 kex->we_need = buffer_get_int(m);
Damien Millerb062c292003-03-24 09:12:09 +11001662 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
Damien Millerf675fc42004-06-15 10:30:09 +10001663 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
Damien Millerb062c292003-03-24 09:12:09 +11001664 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11001665 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001666 kex->server = 1;
1667 kex->hostkey_type = buffer_get_int(m);
1668 kex->kex_type = buffer_get_int(m);
1669 blob = buffer_get_string(m, &bloblen);
1670 buffer_init(&kex->my);
1671 buffer_append(&kex->my, blob, bloblen);
1672 xfree(blob);
1673 blob = buffer_get_string(m, &bloblen);
1674 buffer_init(&kex->peer);
1675 buffer_append(&kex->peer, blob, bloblen);
1676 xfree(blob);
1677 kex->done = 1;
1678 kex->flags = buffer_get_int(m);
1679 kex->client_version_string = buffer_get_string(m, NULL);
1680 kex->server_version_string = buffer_get_string(m, NULL);
1681 kex->load_host_key=&get_hostkey_by_type;
1682 kex->host_key_index=&get_hostkey_index;
1683
1684 return (kex);
1685}
1686
1687/* This function requries careful sanity checking */
1688
1689void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001690mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001691{
1692 Buffer m;
1693 u_char *blob, *p;
1694 u_int bloblen, plen;
Damien Millera5539d22003-04-09 20:50:06 +10001695 u_int32_t seqnr, packets;
1696 u_int64_t blocks;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001697
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001698 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001699
1700 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001701 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001702 if (!compat20) {
1703 child_state.ssh1protoflags = buffer_get_int(&m);
1704 child_state.ssh1cipher = buffer_get_int(&m);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001705 child_state.ssh1key = buffer_get_string(&m,
1706 &child_state.ssh1keylen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001707 child_state.ivout = buffer_get_string(&m,
1708 &child_state.ivoutlen);
1709 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1710 goto skip;
1711 } else {
1712 /* Get the Kex for rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001713 *pmonitor->m_pkex = mm_get_kex(&m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714 }
1715
1716 blob = buffer_get_string(&m, &bloblen);
1717 current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
1718 xfree(blob);
1719
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001720 debug3("%s: Waiting for second key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001721 blob = buffer_get_string(&m, &bloblen);
1722 current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
1723 xfree(blob);
1724
1725 /* Now get sequence numbers for the packets */
Damien Millera5539d22003-04-09 20:50:06 +10001726 seqnr = buffer_get_int(&m);
1727 blocks = buffer_get_int64(&m);
1728 packets = buffer_get_int(&m);
1729 packet_set_state(MODE_OUT, seqnr, blocks, packets);
1730 seqnr = buffer_get_int(&m);
1731 blocks = buffer_get_int64(&m);
1732 packets = buffer_get_int(&m);
1733 packet_set_state(MODE_IN, seqnr, blocks, packets);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001734
1735 skip:
1736 /* Get the key context */
1737 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1738 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1739
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001740 debug3("%s: Getting compression state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001741 /* Get compression state */
1742 p = buffer_get_string(&m, &plen);
1743 if (plen != sizeof(child_state.outgoing))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001744 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001745 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1746 xfree(p);
1747
1748 p = buffer_get_string(&m, &plen);
1749 if (plen != sizeof(child_state.incoming))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001750 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001751 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1752 xfree(p);
1753
1754 /* Network I/O buffers */
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001755 debug3("%s: Getting Network I/O buffers", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001756 child_state.input = buffer_get_string(&m, &child_state.ilen);
1757 child_state.output = buffer_get_string(&m, &child_state.olen);
1758
1759 buffer_free(&m);
1760}
1761
1762
1763/* Allocation functions for zlib */
1764void *
1765mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1766{
Ben Lindstrom41ee2b02002-11-09 15:47:47 +00001767 size_t len = (size_t) size * ncount;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001768 void *address;
1769
Ben Lindstrom0a4f7542002-08-20 18:36:25 +00001770 if (len == 0 || ncount > SIZE_T_MAX / size)
Damien Miller530a7542002-06-26 23:27:11 +10001771 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1772
1773 address = mm_malloc(mm, len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001774
1775 return (address);
1776}
1777
1778void
1779mm_zfree(struct mm_master *mm, void *address)
1780{
1781 mm_free(mm, address);
1782}
1783
1784void
1785mm_init_compression(struct mm_master *mm)
1786{
1787 outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1788 outgoing_stream.zfree = (free_func)mm_zfree;
1789 outgoing_stream.opaque = mm;
1790
1791 incoming_stream.zalloc = (alloc_func)mm_zalloc;
1792 incoming_stream.zfree = (free_func)mm_zfree;
1793 incoming_stream.opaque = mm;
1794}
1795
1796/* XXX */
1797
1798#define FD_CLOSEONEXEC(x) do { \
1799 if (fcntl(x, F_SETFD, 1) == -1) \
1800 fatal("fcntl(%d, F_SETFD)", x); \
1801} while (0)
1802
1803static void
1804monitor_socketpair(int *pair)
1805{
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001806#ifdef HAVE_SOCKETPAIR
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001807 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001808 fatal("%s: socketpair", __func__);
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001809#else
1810 fatal("%s: UsePrivilegeSeparation=yes not supported",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001811 __func__);
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001812#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001813 FD_CLOSEONEXEC(pair[0]);
1814 FD_CLOSEONEXEC(pair[1]);
1815}
1816
1817#define MM_MEMSIZE 65536
1818
1819struct monitor *
1820monitor_init(void)
1821{
1822 struct monitor *mon;
1823 int pair[2];
1824
Damien Miller07d86be2006-03-26 14:19:21 +11001825 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001826
1827 monitor_socketpair(pair);
1828
1829 mon->m_recvfd = pair[0];
1830 mon->m_sendfd = pair[1];
1831
1832 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001833 if (options.compression) {
1834 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1835 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001836
Damien Miller2d6b8332002-06-21 15:59:49 +10001837 /* Compression needs to share state across borders */
1838 mm_init_compression(mon->m_zlib);
1839 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001840
1841 return mon;
1842}
1843
1844void
1845monitor_reinit(struct monitor *mon)
1846{
1847 int pair[2];
1848
1849 monitor_socketpair(pair);
1850
1851 mon->m_recvfd = pair[0];
1852 mon->m_sendfd = pair[1];
1853}
Darren Tucker0efd1552003-08-26 11:49:55 +10001854
1855#ifdef GSSAPI
1856int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001857mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001858{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001859 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001860 OM_uint32 major;
1861 u_int len;
1862
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001863 goid.elements = buffer_get_string(m, &len);
1864 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001865
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001866 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001867
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001868 xfree(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001869
1870 buffer_clear(m);
1871 buffer_put_int(m, major);
1872
Damien Miller6fd6def2005-11-05 15:07:05 +11001873 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001874
1875 /* Now we have a context, enable the step */
1876 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1877
1878 return (0);
1879}
1880
1881int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001882mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001883{
1884 gss_buffer_desc in;
1885 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001886 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001887 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001888 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001889
Darren Tucker600ad8d2003-08-26 12:10:48 +10001890 in.value = buffer_get_string(m, &len);
1891 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001892 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
1893 xfree(in.value);
1894
1895 buffer_clear(m);
1896 buffer_put_int(m, major);
1897 buffer_put_string(m, out.value, out.length);
1898 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001899 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001900
1901 gss_release_buffer(&minor, &out);
1902
Damien Miller6fd6def2005-11-05 15:07:05 +11001903 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001904 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1905 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001906 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001907 }
1908 return (0);
1909}
1910
1911int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001912mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001913{
1914 gss_buffer_desc gssbuf, mic;
1915 OM_uint32 ret;
1916 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001917
Damien Miller0425d402003-11-17 22:18:21 +11001918 gssbuf.value = buffer_get_string(m, &len);
1919 gssbuf.length = len;
1920 mic.value = buffer_get_string(m, &len);
1921 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001922
Damien Miller0425d402003-11-17 22:18:21 +11001923 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001924
Damien Miller0425d402003-11-17 22:18:21 +11001925 xfree(gssbuf.value);
1926 xfree(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001927
Damien Miller0425d402003-11-17 22:18:21 +11001928 buffer_clear(m);
1929 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001930
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001931 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001932
Damien Miller0425d402003-11-17 22:18:21 +11001933 if (!GSS_ERROR(ret))
1934 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001935
Damien Miller0425d402003-11-17 22:18:21 +11001936 return (0);
1937}
1938
1939int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001940mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001941{
1942 int authenticated;
1943
1944 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1945
1946 buffer_clear(m);
1947 buffer_put_int(m, authenticated);
1948
1949 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001950 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001951
Damien Miller6fd6def2005-11-05 15:07:05 +11001952 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001953
1954 /* Monitor loop will terminate if authenticated */
1955 return (authenticated);
1956}
1957#endif /* GSSAPI */