blob: 73cf6bc9b9698aba41ac0cbef5aaad3611adf3cf [file] [log] [blame]
Damien Millerb61f3fc2008-07-11 17:36:48 +10001/* $OpenBSD: monitor.c,v 1.99 2008/07/10 18:08:11 markus Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110029
30#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100031#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100032#include <sys/socket.h>
Damien Millerd7834352006-08-05 12:39:39 +100033#include "openbsd-compat/sys-tree.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110034#include <sys/wait.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000035
Darren Tucker39972492006-07-12 22:22:46 +100036#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100037#include <fcntl.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110038#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110039#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110040#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100041#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110042#include <signal.h>
Damien 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 Millerb84886b2008-05-19 15:05:07 +100054#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100055#include "xmalloc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000056#include "ssh.h"
Damien Millerd7834352006-08-05 12:39:39 +100057#include "key.h"
58#include "buffer.h"
59#include "hostfile.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000060#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100061#include "cipher.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000062#include "kex.h"
63#include "dh.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000064#ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
65#undef TARGET_OS_MAC
Ben Lindstrom1b9f2a62004-04-08 05:11:03 +000066#include "zlib.h"
Ben Lindstrom036768e2004-04-08 16:12:30 +000067#define TARGET_OS_MAC 1
68#else
69#include "zlib.h"
70#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071#include "packet.h"
72#include "auth-options.h"
73#include "sshpty.h"
74#include "channels.h"
75#include "session.h"
76#include "sshlogin.h"
77#include "canohost.h"
78#include "log.h"
79#include "servconf.h"
80#include "monitor.h"
81#include "monitor_mm.h"
Damien Millerd7834352006-08-05 12:39:39 +100082#ifdef GSSAPI
83#include "ssh-gss.h"
84#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000085#include "monitor_wrap.h"
86#include "monitor_fdpass.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087#include "misc.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000088#include "compat.h"
89#include "ssh2.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090
Darren Tucker0efd1552003-08-26 11:49:55 +100091#ifdef GSSAPI
Darren Tucker0efd1552003-08-26 11:49:55 +100092static Gssctxt *gsscontext = NULL;
93#endif
94
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000095/* Imports */
96extern ServerOptions options;
97extern u_int utmp_len;
98extern Newkeys *current_keys[];
99extern z_stream incoming_stream;
100extern z_stream outgoing_stream;
101extern u_char session_id[];
102extern Buffer input, output;
103extern Buffer auth_debug;
104extern int auth_debug_init;
Darren Tucker09991742004-07-17 17:05:14 +1000105extern Buffer loginmsg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000106
107/* State exported from the child */
108
109struct {
110 z_stream incoming;
111 z_stream outgoing;
112 u_char *keyin;
113 u_int keyinlen;
114 u_char *keyout;
115 u_int keyoutlen;
116 u_char *ivin;
117 u_int ivinlen;
118 u_char *ivout;
119 u_int ivoutlen;
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000120 u_char *ssh1key;
121 u_int ssh1keylen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000122 int ssh1cipher;
123 int ssh1protoflags;
124 u_char *input;
125 u_int ilen;
126 u_char *output;
127 u_int olen;
128} child_state;
129
Damien Miller469954d2003-06-18 20:25:33 +1000130/* Functions on the monitor that answer unprivileged requests */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000131
132int mm_answer_moduli(int, Buffer *);
133int mm_answer_sign(int, Buffer *);
134int mm_answer_pwnamallow(int, Buffer *);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000135int mm_answer_auth2_read_banner(int, Buffer *);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000136int mm_answer_authserv(int, Buffer *);
137int mm_answer_authpassword(int, Buffer *);
138int mm_answer_bsdauthquery(int, Buffer *);
139int mm_answer_bsdauthrespond(int, Buffer *);
140int mm_answer_skeyquery(int, Buffer *);
141int mm_answer_skeyrespond(int, Buffer *);
142int mm_answer_keyallowed(int, Buffer *);
143int mm_answer_keyverify(int, Buffer *);
144int mm_answer_pty(int, Buffer *);
145int mm_answer_pty_cleanup(int, Buffer *);
146int mm_answer_term(int, Buffer *);
147int mm_answer_rsa_keyallowed(int, Buffer *);
148int mm_answer_rsa_challenge(int, Buffer *);
149int mm_answer_rsa_response(int, Buffer *);
150int mm_answer_sesskey(int, Buffer *);
151int mm_answer_sessid(int, Buffer *);
152
Damien Miller79418552002-04-23 20:28:48 +1000153#ifdef USE_PAM
154int mm_answer_pam_start(int, Buffer *);
Damien Miller1f499fd2003-08-25 13:08:49 +1000155int mm_answer_pam_account(int, Buffer *);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000156int mm_answer_pam_init_ctx(int, Buffer *);
157int mm_answer_pam_query(int, Buffer *);
158int mm_answer_pam_respond(int, Buffer *);
159int mm_answer_pam_free_ctx(int, Buffer *);
Damien Miller79418552002-04-23 20:28:48 +1000160#endif
161
Darren Tucker0efd1552003-08-26 11:49:55 +1000162#ifdef GSSAPI
163int mm_answer_gss_setup_ctx(int, Buffer *);
164int mm_answer_gss_accept_ctx(int, Buffer *);
165int mm_answer_gss_userok(int, Buffer *);
Damien Miller0425d402003-11-17 22:18:21 +1100166int mm_answer_gss_checkmic(int, Buffer *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000167#endif
Damien Miller25162f22002-09-12 09:47:29 +1000168
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100169#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100170int mm_answer_audit_event(int, Buffer *);
171int mm_answer_audit_command(int, Buffer *);
172#endif
173
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000174static Authctxt *authctxt;
175static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
176
177/* local state for key verify */
178static u_char *key_blob = NULL;
179static u_int key_bloblen = 0;
180static int key_blobtype = MM_NOKEY;
Damien Millera10f5612002-09-12 09:49:15 +1000181static char *hostbased_cuser = NULL;
182static char *hostbased_chost = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000183static char *auth_method = "unknown";
Darren Tucker502d3842003-06-28 12:38:01 +1000184static u_int session_id2_len = 0;
Ben Lindstromf67e0772002-06-06 20:58:19 +0000185static u_char *session_id2 = NULL;
Damien Millerbe64d432003-05-14 19:31:12 +1000186static pid_t monitor_child_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000187
188struct mon_table {
189 enum monitor_reqtype type;
190 int flags;
191 int (*f)(int, Buffer *);
192};
193
194#define MON_ISAUTH 0x0004 /* Required for Authentication */
195#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
196#define MON_ONCE 0x0010 /* Disable after calling */
Damien Miller7a8f5b32006-03-31 23:14:23 +1100197#define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000198
199#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
200
201#define MON_PERMIT 0x1000 /* Request is permitted */
202
203struct mon_table mon_dispatch_proto20[] = {
204 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
205 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
206 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
207 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
Damien Miller5ad9fd92002-05-13 11:07:41 +1000208 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000209 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller79418552002-04-23 20:28:48 +1000210#ifdef USE_PAM
211 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000212 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000213 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
214 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
215 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
216 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000217#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100218#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100219 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100220#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000221#ifdef BSD_AUTH
222 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100223 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000224#endif
225#ifdef SKEY
226 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
227 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
228#endif
229 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
230 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
Darren Tucker0efd1552003-08-26 11:49:55 +1000231#ifdef GSSAPI
232 {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
233 {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
234 {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
Damien Miller0425d402003-11-17 22:18:21 +1100235 {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
Darren Tucker0efd1552003-08-26 11:49:55 +1000236#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000237 {0, 0, NULL}
238};
239
240struct mon_table mon_dispatch_postauth20[] = {
241 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
242 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
243 {MONITOR_REQ_PTY, 0, mm_answer_pty},
244 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
245 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100246#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100247 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
248 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT, mm_answer_audit_command},
249#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000250 {0, 0, NULL}
251};
252
253struct mon_table mon_dispatch_proto15[] = {
254 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
255 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
256 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
257 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
Damien Miller7a8f5b32006-03-31 23:14:23 +1100258 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_rsa_keyallowed},
259 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH|MON_ALOG, mm_answer_keyallowed},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000260 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
261 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
262#ifdef BSD_AUTH
263 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
Damien Miller0b70b542006-03-15 11:20:03 +1100264 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH, mm_answer_bsdauthrespond},
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000265#endif
266#ifdef SKEY
267 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
268 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
269#endif
Damien Millera33501b2002-05-08 12:24:42 +1000270#ifdef USE_PAM
271 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
Damien Miller1f499fd2003-08-25 13:08:49 +1000272 {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
Damien Miller4f9f42a2003-05-10 19:28:02 +1000273 {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
274 {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
275 {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
276 {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
Damien Millera33501b2002-05-08 12:24:42 +1000277#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100278#ifdef SSH_AUDIT_EVENTS
Darren Tucker3745e2b2005-03-06 22:31:35 +1100279 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100280#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000281 {0, 0, NULL}
282};
283
284struct mon_table mon_dispatch_postauth15[] = {
285 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
286 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
287 {MONITOR_REQ_TERM, 0, mm_answer_term},
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100288#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100289 {MONITOR_REQ_AUDIT_EVENT, MON_PERMIT, mm_answer_audit_event},
Darren Tucker5965ae12006-09-17 12:00:13 +1000290 {MONITOR_REQ_AUDIT_COMMAND, MON_PERMIT|MON_ONCE, mm_answer_audit_command},
Darren Tucker269a1ea2005-02-03 00:20:53 +1100291#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000292 {0, 0, NULL}
293};
294
295struct mon_table *mon_dispatch;
296
297/* Specifies if a certain message is allowed at the moment */
298
299static void
300monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
301{
302 while (ent->f != NULL) {
303 if (ent->type == type) {
304 ent->flags &= ~MON_PERMIT;
305 ent->flags |= permit ? MON_PERMIT : 0;
306 return;
307 }
308 ent++;
309 }
310}
311
312static void
313monitor_permit_authentications(int permit)
314{
315 struct mon_table *ent = mon_dispatch;
316
317 while (ent->f != NULL) {
318 if (ent->flags & MON_AUTH) {
319 ent->flags &= ~MON_PERMIT;
320 ent->flags |= permit ? MON_PERMIT : 0;
321 }
322 ent++;
323 }
324}
325
Darren Tucker3e33cec2003-10-02 16:12:36 +1000326void
327monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000328{
329 struct mon_table *ent;
330 int authenticated = 0;
331
332 debug3("preauth child monitor started");
333
Darren Tucker3e33cec2003-10-02 16:12:36 +1000334 authctxt = _authctxt;
335 memset(authctxt, 0, sizeof(*authctxt));
336
Darren Tuckerde0de392005-03-31 23:52:04 +1000337 authctxt->loginmsg = &loginmsg;
338
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000339 if (compat20) {
340 mon_dispatch = mon_dispatch_proto20;
341
342 /* Permit requests for moduli and signatures */
343 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
344 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
345 } else {
346 mon_dispatch = mon_dispatch_proto15;
347
348 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
349 }
350
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000351 /* The first few requests do not require asynchronous access */
352 while (!authenticated) {
Damien Miller7a8f5b32006-03-31 23:14:23 +1100353 auth_method = "unknown";
Darren Tuckerfbba7352006-11-07 23:16:08 +1100354 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000355 if (authenticated) {
356 if (!(ent->flags & MON_AUTHDECIDE))
357 fatal("%s: unexpected authentication from %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000358 __func__, ent->type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000359 if (authctxt->pw->pw_uid == 0 &&
360 !auth_root_allowed(auth_method))
361 authenticated = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000362#ifdef USE_PAM
363 /* PAM needs to perform account checks after auth */
Damien Miller6aef38f2003-11-18 10:45:20 +1100364 if (options.use_pam && authenticated) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000365 Buffer m;
366
367 buffer_init(&m);
Damien Millera8e06ce2003-11-21 23:48:55 +1100368 mm_request_receive_expect(pmonitor->m_sendfd,
Damien Miller1f499fd2003-08-25 13:08:49 +1000369 MONITOR_REQ_PAM_ACCOUNT, &m);
370 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
371 buffer_free(&m);
372 }
373#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000374 }
375
Damien Miller7a8f5b32006-03-31 23:14:23 +1100376 if (ent->flags & (MON_AUTHDECIDE|MON_ALOG)) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000377 auth_log(authctxt, authenticated, auth_method,
378 compat20 ? " ssh2" : "");
379 if (!authenticated)
380 authctxt->failures++;
381 }
382 }
383
384 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000385 fatal("%s: authenticated invalid user", __func__);
Damien Miller7a8f5b32006-03-31 23:14:23 +1100386 if (strcmp(auth_method, "unknown") == 0)
387 fatal("%s: authentication method name unknown", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000388
389 debug("%s: %s has been authenticated by privileged process",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000390 __func__, authctxt->user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000391
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000392 mm_get_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000393}
394
Damien Millerbe64d432003-05-14 19:31:12 +1000395static void
396monitor_set_child_handler(pid_t pid)
397{
398 monitor_child_pid = pid;
399}
400
401static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000402monitor_child_handler(int sig)
Damien Millerbe64d432003-05-14 19:31:12 +1000403{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000404 kill(monitor_child_pid, sig);
Damien Millerbe64d432003-05-14 19:31:12 +1000405}
406
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000407void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000408monitor_child_postauth(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000409{
Damien Millerbe64d432003-05-14 19:31:12 +1000410 monitor_set_child_handler(pmonitor->m_pid);
411 signal(SIGHUP, &monitor_child_handler);
412 signal(SIGTERM, &monitor_child_handler);
Darren Tucker7fa339b2007-05-20 15:10:16 +1000413 signal(SIGINT, &monitor_child_handler);
Damien Millerbe64d432003-05-14 19:31:12 +1000414
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000415 if (compat20) {
416 mon_dispatch = mon_dispatch_postauth20;
417
418 /* Permit requests for moduli and signatures */
419 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
420 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
421 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000422 } else {
423 mon_dispatch = mon_dispatch_postauth15;
424 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
425 }
426 if (!no_pty_flag) {
427 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
428 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
429 }
430
431 for (;;)
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000432 monitor_read(pmonitor, mon_dispatch, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000433}
434
435void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000436monitor_sync(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000437{
Damien Miller2d6b8332002-06-21 15:59:49 +1000438 if (options.compression) {
439 /* The member allocation is not visible, so sync it */
440 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
441 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000442}
443
444int
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000445monitor_read(struct monitor *pmonitor, struct mon_table *ent,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000446 struct mon_table **pent)
447{
448 Buffer m;
449 int ret;
450 u_char type;
451
452 buffer_init(&m);
453
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000454 mm_request_receive(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000455 type = buffer_get_char(&m);
456
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000457 debug3("%s: checking request %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000458
459 while (ent->f != NULL) {
460 if (ent->type == type)
461 break;
462 ent++;
463 }
464
465 if (ent->f != NULL) {
466 if (!(ent->flags & MON_PERMIT))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000467 fatal("%s: unpermitted request %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000468 type);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000469 ret = (*ent->f)(pmonitor->m_sendfd, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000470 buffer_free(&m);
471
472 /* The child may use this request only once, disable it */
473 if (ent->flags & MON_ONCE) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000474 debug2("%s: %d used once, disabling now", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000475 type);
476 ent->flags &= ~MON_PERMIT;
477 }
478
479 if (pent != NULL)
480 *pent = ent;
481
482 return ret;
483 }
484
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000485 fatal("%s: unsupported request: %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000486
487 /* NOTREACHED */
488 return (-1);
489}
490
491/* allowed key state */
492static int
493monitor_allowed_key(u_char *blob, u_int bloblen)
494{
495 /* make sure key is allowed */
496 if (key_blob == NULL || key_bloblen != bloblen ||
497 memcmp(key_blob, blob, key_bloblen))
498 return (0);
499 return (1);
500}
501
502static void
503monitor_reset_key_state(void)
504{
505 /* reset state */
506 if (key_blob != NULL)
507 xfree(key_blob);
508 if (hostbased_cuser != NULL)
509 xfree(hostbased_cuser);
510 if (hostbased_chost != NULL)
511 xfree(hostbased_chost);
512 key_blob = NULL;
513 key_bloblen = 0;
514 key_blobtype = MM_NOKEY;
515 hostbased_cuser = NULL;
516 hostbased_chost = NULL;
517}
518
519int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000520mm_answer_moduli(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000521{
522 DH *dh;
523 int min, want, max;
524
525 min = buffer_get_int(m);
526 want = buffer_get_int(m);
527 max = buffer_get_int(m);
528
529 debug3("%s: got parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000530 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000531 /* We need to check here, too, in case the child got corrupted */
532 if (max < min || want < min || max < want)
533 fatal("%s: bad parameters: %d %d %d",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000534 __func__, min, want, max);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000535
536 buffer_clear(m);
537
538 dh = choose_dh(min, want, max);
539 if (dh == NULL) {
540 buffer_put_char(m, 0);
541 return (0);
542 } else {
543 /* Send first bignum */
544 buffer_put_char(m, 1);
545 buffer_put_bignum2(m, dh->p);
546 buffer_put_bignum2(m, dh->g);
547
548 DH_free(dh);
549 }
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000550 mm_request_send(sock, MONITOR_ANS_MODULI, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000551 return (0);
552}
553
554int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000555mm_answer_sign(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000556{
557 Key *key;
558 u_char *p;
559 u_char *signature;
560 u_int siglen, datlen;
561 int keyid;
562
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000563 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000564
565 keyid = buffer_get_int(m);
566 p = buffer_get_string(m, &datlen);
567
Damien Millera63128d2006-03-15 12:08:28 +1100568 /*
Damien Millerc91e5562006-03-26 13:58:55 +1100569 * Supported KEX types will only return SHA1 (20 byte) or
Damien Millera63128d2006-03-15 12:08:28 +1100570 * SHA256 (32 byte) hashes
571 */
572 if (datlen != 20 && datlen != 32)
Ben Lindstromd5502182002-06-27 00:12:57 +0000573 fatal("%s: data length incorrect: %u", __func__, datlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000574
Ben Lindstromf67e0772002-06-06 20:58:19 +0000575 /* save session id, it will be passed on the first call */
576 if (session_id2_len == 0) {
577 session_id2_len = datlen;
578 session_id2 = xmalloc(session_id2_len);
579 memcpy(session_id2, p, session_id2_len);
580 }
581
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000582 if ((key = get_hostkey_by_index(keyid)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000583 fatal("%s: no hostkey from index %d", __func__, keyid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000584 if (key_sign(key, &signature, &siglen, p, datlen) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000585 fatal("%s: key_sign failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000586
Ben Lindstromd5502182002-06-27 00:12:57 +0000587 debug3("%s: signature %p(%u)", __func__, signature, siglen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000588
589 buffer_clear(m);
590 buffer_put_string(m, signature, siglen);
591
592 xfree(p);
593 xfree(signature);
594
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000595 mm_request_send(sock, MONITOR_ANS_SIGN, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000596
597 /* Turn on permissions for getpwnam */
598 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
599
600 return (0);
601}
602
603/* Retrieves the password entry and also checks if the user is permitted */
604
605int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000606mm_answer_pwnamallow(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000607{
Darren Tuckerb09b6772004-06-22 15:06:46 +1000608 char *username;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000609 struct passwd *pwent;
610 int allowed = 0;
611
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000612 debug3("%s", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000613
614 if (authctxt->attempt++ != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000615 fatal("%s: multiple attempts for getpwnam", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000616
Darren Tuckerb09b6772004-06-22 15:06:46 +1000617 username = buffer_get_string(m, NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000618
Darren Tuckerb09b6772004-06-22 15:06:46 +1000619 pwent = getpwnamallow(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000620
Darren Tuckerb09b6772004-06-22 15:06:46 +1000621 authctxt->user = xstrdup(username);
622 setproctitle("%s [priv]", pwent ? username : "unknown");
623 xfree(username);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000624
625 buffer_clear(m);
626
627 if (pwent == NULL) {
628 buffer_put_char(m, 0);
Damien Millerf96d1832003-11-18 22:01:48 +1100629 authctxt->pw = fakepw();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630 goto out;
631 }
632
633 allowed = 1;
634 authctxt->pw = pwent;
635 authctxt->valid = 1;
636
637 buffer_put_char(m, 1);
638 buffer_put_string(m, pwent, sizeof(struct passwd));
639 buffer_put_cstring(m, pwent->pw_name);
640 buffer_put_cstring(m, "*");
641 buffer_put_cstring(m, pwent->pw_gecos);
Kevin Steves7e147602002-03-22 18:07:17 +0000642#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000643 buffer_put_cstring(m, pwent->pw_class);
Kevin Steves7e147602002-03-22 18:07:17 +0000644#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000645 buffer_put_cstring(m, pwent->pw_dir);
646 buffer_put_cstring(m, pwent->pw_shell);
Darren Tucker2f8b3d92007-12-02 23:02:15 +1100647
648 out:
Darren Tucker1629c072007-02-19 22:25:37 +1100649 buffer_put_string(m, &options, sizeof(options));
650 if (options.banner != NULL)
651 buffer_put_cstring(m, options.banner);
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000652 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000653 mm_request_send(sock, MONITOR_ANS_PWNAM, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000654
655 /* For SSHv1 allow authentication now */
656 if (!compat20)
657 monitor_permit_authentications(1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000658 else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000659 /* Allow service/style information on the auth context */
660 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000661 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
662 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000663
Damien Millera33501b2002-05-08 12:24:42 +1000664#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000665 if (options.use_pam)
666 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
Damien Millera33501b2002-05-08 12:24:42 +1000667#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000668
669 return (0);
670}
671
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000672int mm_answer_auth2_read_banner(int sock, Buffer *m)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000673{
674 char *banner;
675
676 buffer_clear(m);
677 banner = auth2_read_banner();
678 buffer_put_cstring(m, banner != NULL ? banner : "");
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000679 mm_request_send(sock, MONITOR_ANS_AUTH2_READ_BANNER, m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000680
681 if (banner != NULL)
Ben Lindstromeec16fc2002-07-04 00:06:15 +0000682 xfree(banner);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000683
684 return (0);
685}
686
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000687int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000688mm_answer_authserv(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000689{
690 monitor_permit_authentications(1);
691
692 authctxt->service = buffer_get_string(m, NULL);
693 authctxt->style = buffer_get_string(m, NULL);
694 debug3("%s: service=%s, style=%s",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000695 __func__, authctxt->service, authctxt->style);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000696
697 if (strlen(authctxt->style) == 0) {
698 xfree(authctxt->style);
699 authctxt->style = NULL;
700 }
701
702 return (0);
703}
704
705int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000706mm_answer_authpassword(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000707{
708 static int call_count;
709 char *passwd;
Ben Lindstrom7cea16b2002-07-23 21:13:40 +0000710 int authenticated;
711 u_int plen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000712
713 passwd = buffer_get_string(m, &plen);
714 /* Only authenticate if the context is valid */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000715 authenticated = options.password_authentication &&
Damien Miller856f0be2003-09-03 07:32:45 +1000716 auth_password(authctxt, passwd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000717 memset(passwd, 0, strlen(passwd));
718 xfree(passwd);
719
720 buffer_clear(m);
721 buffer_put_int(m, authenticated);
722
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000723 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000724 mm_request_send(sock, MONITOR_ANS_AUTHPASSWORD, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000725
726 call_count++;
727 if (plen == 0 && call_count == 1)
728 auth_method = "none";
729 else
730 auth_method = "password";
731
732 /* Causes monitor loop to terminate if authenticated */
733 return (authenticated);
734}
735
736#ifdef BSD_AUTH
737int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000738mm_answer_bsdauthquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000739{
740 char *name, *infotxt;
741 u_int numprompts;
742 u_int *echo_on;
743 char **prompts;
Damien Millerb7df3af2003-02-24 11:55:46 +1100744 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000745
Damien Millerb7df3af2003-02-24 11:55:46 +1100746 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
747 &prompts, &echo_on) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000748
749 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100750 buffer_put_int(m, success);
751 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000752 buffer_put_cstring(m, prompts[0]);
753
Damien Millerb7df3af2003-02-24 11:55:46 +1100754 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000755 mm_request_send(sock, MONITOR_ANS_BSDAUTHQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756
Damien Millerb7df3af2003-02-24 11:55:46 +1100757 if (success) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000758 xfree(name);
759 xfree(infotxt);
760 xfree(prompts);
761 xfree(echo_on);
762 }
763
764 return (0);
765}
766
767int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000768mm_answer_bsdauthrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000769{
770 char *response;
771 int authok;
772
773 if (authctxt->as == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000774 fatal("%s: no bsd auth session", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000775
776 response = buffer_get_string(m, NULL);
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000777 authok = options.challenge_response_authentication &&
778 auth_userresponse(authctxt->as, response, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000779 authctxt->as = NULL;
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000780 debug3("%s: <%s> = <%d>", __func__, response, authok);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000781 xfree(response);
782
783 buffer_clear(m);
784 buffer_put_int(m, authok);
785
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000786 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000787 mm_request_send(sock, MONITOR_ANS_BSDAUTHRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000788
789 auth_method = "bsdauth";
790
791 return (authok != 0);
792}
793#endif
794
795#ifdef SKEY
796int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000797mm_answer_skeyquery(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000798{
799 struct skey skey;
800 char challenge[1024];
Damien Millerb7df3af2003-02-24 11:55:46 +1100801 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000802
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000803 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
804 sizeof(challenge)) < 0 ? 0 : 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000805
806 buffer_clear(m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100807 buffer_put_int(m, success);
808 if (success)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000809 buffer_put_cstring(m, challenge);
810
Damien Millerb7df3af2003-02-24 11:55:46 +1100811 debug3("%s: sending challenge success: %u", __func__, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000812 mm_request_send(sock, MONITOR_ANS_SKEYQUERY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000813
814 return (0);
815}
816
817int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000818mm_answer_skeyrespond(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000819{
820 char *response;
821 int authok;
822
823 response = buffer_get_string(m, NULL);
824
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +0000825 authok = (options.challenge_response_authentication &&
826 authctxt->valid &&
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000827 skey_haskey(authctxt->pw->pw_name) == 0 &&
828 skey_passcheck(authctxt->pw->pw_name, response) != -1);
829
830 xfree(response);
831
832 buffer_clear(m);
833 buffer_put_int(m, authok);
834
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000835 debug3("%s: sending authenticated: %d", __func__, authok);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000836 mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000837
838 auth_method = "skey";
839
840 return (authok != 0);
841}
842#endif
843
Damien Miller79418552002-04-23 20:28:48 +1000844#ifdef USE_PAM
845int
Darren Tucker7eda5922004-06-22 13:22:50 +1000846mm_answer_pam_start(int sock, Buffer *m)
Damien Miller79418552002-04-23 20:28:48 +1000847{
Damien Miller4e448a32003-05-14 15:11:48 +1000848 if (!options.use_pam)
849 fatal("UsePAM not set, but ended up in %s anyway", __func__);
850
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100851 start_pam(authctxt);
Damien Miller79418552002-04-23 20:28:48 +1000852
Damien Miller1f499fd2003-08-25 13:08:49 +1000853 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
854
Damien Miller79418552002-04-23 20:28:48 +1000855 return (0);
856}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000857
Damien Miller1f499fd2003-08-25 13:08:49 +1000858int
Darren Tucker7eda5922004-06-22 13:22:50 +1000859mm_answer_pam_account(int sock, Buffer *m)
Damien Miller1f499fd2003-08-25 13:08:49 +1000860{
861 u_int ret;
Damien Miller787b2ec2003-11-21 23:56:47 +1100862
Damien Miller1f499fd2003-08-25 13:08:49 +1000863 if (!options.use_pam)
864 fatal("UsePAM not set, but ended up in %s anyway", __func__);
865
866 ret = do_pam_account();
867
868 buffer_put_int(m, ret);
Darren Tuckerd4f04ae2005-09-30 10:23:21 +1000869 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
Damien Miller1f499fd2003-08-25 13:08:49 +1000870
Darren Tucker7eda5922004-06-22 13:22:50 +1000871 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
Damien Miller1f499fd2003-08-25 13:08:49 +1000872
873 return (ret);
874}
875
Damien Miller4f9f42a2003-05-10 19:28:02 +1000876static void *sshpam_ctxt, *sshpam_authok;
877extern KbdintDevice sshpam_device;
878
879int
Darren Tucker7eda5922004-06-22 13:22:50 +1000880mm_answer_pam_init_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000881{
882
883 debug3("%s", __func__);
884 authctxt->user = buffer_get_string(m, NULL);
885 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
886 sshpam_authok = NULL;
887 buffer_clear(m);
888 if (sshpam_ctxt != NULL) {
889 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
890 buffer_put_int(m, 1);
891 } else {
892 buffer_put_int(m, 0);
893 }
Darren Tucker7eda5922004-06-22 13:22:50 +1000894 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000895 return (0);
896}
897
898int
Darren Tucker7eda5922004-06-22 13:22:50 +1000899mm_answer_pam_query(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000900{
901 char *name, *info, **prompts;
Damien Miller04b65332005-07-17 17:53:31 +1000902 u_int i, num, *echo_on;
903 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000904
905 debug3("%s", __func__);
906 sshpam_authok = NULL;
907 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
908 if (ret == 0 && num == 0)
909 sshpam_authok = sshpam_ctxt;
910 if (num > 1 || name == NULL || info == NULL)
911 ret = -1;
912 buffer_clear(m);
913 buffer_put_int(m, ret);
914 buffer_put_cstring(m, name);
915 xfree(name);
916 buffer_put_cstring(m, info);
917 xfree(info);
918 buffer_put_int(m, num);
919 for (i = 0; i < num; ++i) {
920 buffer_put_cstring(m, prompts[i]);
921 xfree(prompts[i]);
922 buffer_put_int(m, echo_on[i]);
923 }
924 if (prompts != NULL)
925 xfree(prompts);
926 if (echo_on != NULL)
927 xfree(echo_on);
Darren Tuckerf14b2aa2006-05-21 18:26:40 +1000928 auth_method = "keyboard-interactive/pam";
Darren Tucker7eda5922004-06-22 13:22:50 +1000929 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000930 return (0);
931}
932
933int
Darren Tucker7eda5922004-06-22 13:22:50 +1000934mm_answer_pam_respond(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000935{
936 char **resp;
Damien Miller04b65332005-07-17 17:53:31 +1000937 u_int i, num;
938 int ret;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000939
940 debug3("%s", __func__);
941 sshpam_authok = NULL;
942 num = buffer_get_int(m);
943 if (num > 0) {
Darren Tuckerd8093e42006-05-04 16:24:34 +1000944 resp = xcalloc(num, sizeof(char *));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000945 for (i = 0; i < num; ++i)
946 resp[i] = buffer_get_string(m, NULL);
947 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
948 for (i = 0; i < num; ++i)
949 xfree(resp[i]);
950 xfree(resp);
951 } else {
952 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
953 }
954 buffer_clear(m);
955 buffer_put_int(m, ret);
Darren Tucker7eda5922004-06-22 13:22:50 +1000956 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000957 auth_method = "keyboard-interactive/pam";
958 if (ret == 0)
959 sshpam_authok = sshpam_ctxt;
960 return (0);
961}
962
963int
Darren Tucker7eda5922004-06-22 13:22:50 +1000964mm_answer_pam_free_ctx(int sock, Buffer *m)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000965{
966
967 debug3("%s", __func__);
968 (sshpam_device.free_ctx)(sshpam_ctxt);
969 buffer_clear(m);
Darren Tucker7eda5922004-06-22 13:22:50 +1000970 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
Darren Tuckerf14b2aa2006-05-21 18:26:40 +1000971 auth_method = "keyboard-interactive/pam";
Damien Miller4f9f42a2003-05-10 19:28:02 +1000972 return (sshpam_authok == sshpam_ctxt);
973}
Damien Miller79418552002-04-23 20:28:48 +1000974#endif
975
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000976static void
977mm_append_debug(Buffer *m)
978{
979 if (auth_debug_init && buffer_len(&auth_debug)) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000980 debug3("%s: Appending debug messages for child", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000981 buffer_append(m, buffer_ptr(&auth_debug),
982 buffer_len(&auth_debug));
983 buffer_clear(&auth_debug);
984 }
985}
986
987int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000988mm_answer_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000989{
990 Key *key;
Damien Millera10f5612002-09-12 09:49:15 +1000991 char *cuser, *chost;
992 u_char *blob;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000993 u_int bloblen;
994 enum mm_keytype type = 0;
995 int allowed = 0;
996
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000997 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000998
999 type = buffer_get_int(m);
1000 cuser = buffer_get_string(m, NULL);
1001 chost = buffer_get_string(m, NULL);
1002 blob = buffer_get_string(m, &bloblen);
1003
1004 key = key_from_blob(blob, bloblen);
1005
1006 if ((compat20 && type == MM_RSAHOSTKEY) ||
1007 (!compat20 && type != MM_RSAHOSTKEY))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001008 fatal("%s: key type and protocol mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001009
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001010 debug3("%s: key_from_blob: %p", __func__, key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001011
Damien Miller3e3b5142003-11-17 21:13:40 +11001012 if (key != NULL && authctxt->valid) {
Darren Tucker47eede72005-03-14 23:08:12 +11001013 switch (type) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001014 case MM_USERKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001015 allowed = options.pubkey_authentication &&
1016 user_key_allowed(authctxt->pw, key);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001017 auth_method = "publickey";
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001018 if (options.pubkey_authentication && allowed != 1)
1019 auth_clear_options();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001020 break;
1021 case MM_HOSTKEY:
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001022 allowed = options.hostbased_authentication &&
1023 hostbased_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001024 cuser, chost, key);
Damien Miller7a8f5b32006-03-31 23:14:23 +11001025 auth_method = "hostbased";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001026 break;
1027 case MM_RSAHOSTKEY:
1028 key->type = KEY_RSA1; /* XXX */
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001029 allowed = options.rhosts_rsa_authentication &&
1030 auth_rhosts_rsa_key_allowed(authctxt->pw,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001031 cuser, chost, key);
Darren Tuckerf2c16d32008-06-14 08:59:49 +10001032 if (options.rhosts_rsa_authentication && allowed != 1)
1033 auth_clear_options();
Damien Miller7a8f5b32006-03-31 23:14:23 +11001034 auth_method = "rsa";
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001035 break;
1036 default:
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001037 fatal("%s: unknown key type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001038 break;
1039 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001040 }
Damien Miller00111382003-03-10 11:21:17 +11001041 if (key != NULL)
1042 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001043
1044 /* clear temporarily storage (used by verify) */
1045 monitor_reset_key_state();
1046
1047 if (allowed) {
1048 /* Save temporarily for comparison in verify */
1049 key_blob = blob;
1050 key_bloblen = bloblen;
1051 key_blobtype = type;
1052 hostbased_cuser = cuser;
1053 hostbased_chost = chost;
Damien Miller96937bd2006-03-26 14:01:54 +11001054 } else {
Damien Miller7a8f5b32006-03-31 23:14:23 +11001055 /* Log failed attempt */
1056 auth_log(authctxt, 0, auth_method, compat20 ? " ssh2" : "");
Damien Miller96937bd2006-03-26 14:01:54 +11001057 xfree(blob);
1058 xfree(cuser);
1059 xfree(chost);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001060 }
1061
1062 debug3("%s: key %p is %s",
Darren Tucker2784f1f2008-07-04 13:51:45 +10001063 __func__, key, allowed ? "allowed" : "not allowed");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001064
1065 buffer_clear(m);
1066 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001067 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001068
1069 mm_append_debug(m);
1070
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001071 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001072
1073 if (type == MM_RSAHOSTKEY)
1074 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1075
1076 return (0);
1077}
1078
1079static int
1080monitor_valid_userblob(u_char *data, u_int datalen)
1081{
1082 Buffer b;
Damien Millera10f5612002-09-12 09:49:15 +10001083 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001084 u_int len;
1085 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001086
1087 buffer_init(&b);
1088 buffer_append(&b, data, datalen);
1089
1090 if (datafellows & SSH_OLD_SESSIONID) {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001091 p = buffer_ptr(&b);
1092 len = buffer_len(&b);
1093 if ((session_id2 == NULL) ||
1094 (len < session_id2_len) ||
1095 (memcmp(p, session_id2, session_id2_len) != 0))
1096 fail++;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001097 buffer_consume(&b, session_id2_len);
1098 } else {
Ben Lindstromf67e0772002-06-06 20:58:19 +00001099 p = buffer_get_string(&b, &len);
1100 if ((session_id2 == NULL) ||
1101 (len != session_id2_len) ||
1102 (memcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001103 fail++;
Ben Lindstromf67e0772002-06-06 20:58:19 +00001104 xfree(p);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001105 }
1106 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1107 fail++;
1108 p = buffer_get_string(&b, NULL);
1109 if (strcmp(authctxt->user, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001110 logit("wrong user name passed to monitor: expected %s != %.100s",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001111 authctxt->user, p);
1112 fail++;
1113 }
1114 xfree(p);
1115 buffer_skip_string(&b);
1116 if (datafellows & SSH_BUG_PKAUTH) {
1117 if (!buffer_get_char(&b))
1118 fail++;
1119 } else {
1120 p = buffer_get_string(&b, NULL);
1121 if (strcmp("publickey", p) != 0)
1122 fail++;
1123 xfree(p);
1124 if (!buffer_get_char(&b))
1125 fail++;
1126 buffer_skip_string(&b);
1127 }
1128 buffer_skip_string(&b);
1129 if (buffer_len(&b) != 0)
1130 fail++;
1131 buffer_free(&b);
1132 return (fail == 0);
1133}
1134
1135static int
Damien Millera10f5612002-09-12 09:49:15 +10001136monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1137 char *chost)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001138{
1139 Buffer b;
Damien Millera10f5612002-09-12 09:49:15 +10001140 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001141 u_int len;
1142 int fail = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001143
1144 buffer_init(&b);
1145 buffer_append(&b, data, datalen);
1146
Ben Lindstromf67e0772002-06-06 20:58:19 +00001147 p = buffer_get_string(&b, &len);
1148 if ((session_id2 == NULL) ||
1149 (len != session_id2_len) ||
1150 (memcmp(p, session_id2, session_id2_len) != 0))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001151 fail++;
Ben Lindstromf67e0772002-06-06 20:58:19 +00001152 xfree(p);
1153
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001154 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1155 fail++;
1156 p = buffer_get_string(&b, NULL);
1157 if (strcmp(authctxt->user, p) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001158 logit("wrong user name passed to monitor: expected %s != %.100s",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001159 authctxt->user, p);
1160 fail++;
1161 }
1162 xfree(p);
1163 buffer_skip_string(&b); /* service */
1164 p = buffer_get_string(&b, NULL);
1165 if (strcmp(p, "hostbased") != 0)
1166 fail++;
1167 xfree(p);
1168 buffer_skip_string(&b); /* pkalg */
1169 buffer_skip_string(&b); /* pkblob */
1170
1171 /* verify client host, strip trailing dot if necessary */
1172 p = buffer_get_string(&b, NULL);
1173 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1174 p[len - 1] = '\0';
1175 if (strcmp(p, chost) != 0)
1176 fail++;
1177 xfree(p);
1178
1179 /* verify client user */
1180 p = buffer_get_string(&b, NULL);
1181 if (strcmp(p, cuser) != 0)
1182 fail++;
1183 xfree(p);
1184
1185 if (buffer_len(&b) != 0)
1186 fail++;
1187 buffer_free(&b);
1188 return (fail == 0);
1189}
1190
1191int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001192mm_answer_keyverify(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001193{
1194 Key *key;
1195 u_char *signature, *data, *blob;
1196 u_int signaturelen, datalen, bloblen;
1197 int verified = 0;
1198 int valid_data = 0;
1199
1200 blob = buffer_get_string(m, &bloblen);
1201 signature = buffer_get_string(m, &signaturelen);
1202 data = buffer_get_string(m, &datalen);
1203
1204 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
Ben Lindstromb57a4bf2002-03-27 18:00:59 +00001205 !monitor_allowed_key(blob, bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001206 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001207
1208 key = key_from_blob(blob, bloblen);
1209 if (key == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001210 fatal("%s: bad public key blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001211
1212 switch (key_blobtype) {
1213 case MM_USERKEY:
1214 valid_data = monitor_valid_userblob(data, datalen);
1215 break;
1216 case MM_HOSTKEY:
1217 valid_data = monitor_valid_hostbasedblob(data, datalen,
1218 hostbased_cuser, hostbased_chost);
1219 break;
1220 default:
1221 valid_data = 0;
1222 break;
1223 }
1224 if (!valid_data)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001225 fatal("%s: bad signature data blob", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001226
1227 verified = key_verify(key, signature, signaturelen, data, datalen);
1228 debug3("%s: key %p signature %s",
Darren Tuckerfbba7352006-11-07 23:16:08 +11001229 __func__, key, (verified == 1) ? "verified" : "unverified");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001230
1231 key_free(key);
1232 xfree(blob);
1233 xfree(signature);
1234 xfree(data);
1235
Ben Lindstrome1c09122002-06-23 00:38:24 +00001236 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1237
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001238 monitor_reset_key_state();
1239
1240 buffer_clear(m);
1241 buffer_put_int(m, verified);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001242 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001243
Darren Tuckerfbba7352006-11-07 23:16:08 +11001244 return (verified == 1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001245}
1246
1247static void
1248mm_record_login(Session *s, struct passwd *pw)
1249{
1250 socklen_t fromlen;
1251 struct sockaddr_storage from;
1252
1253 /*
1254 * Get IP address of client. If the connection is not a socket, let
1255 * the address be 0.0.0.0.
1256 */
1257 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +10001258 fromlen = sizeof(from);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001259 if (packet_connection_is_on_socket()) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001260 if (getpeername(packet_get_connection_in(),
Damien Miller9f3bd532006-03-26 14:07:52 +11001261 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001262 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +10001263 cleanup_exit(255);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001264 }
1265 }
1266 /* Record that there was a login on that tty from the remote host. */
1267 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
Damien Miller3a961dc2003-06-03 10:25:48 +10001268 get_remote_name_or_ip(utmp_len, options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +10001269 (struct sockaddr *)&from, fromlen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001270}
1271
1272static void
1273mm_session_close(Session *s)
1274{
Damien Miller04bd8b02003-05-25 14:38:33 +10001275 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001276 if (s->ttyfd != -1) {
Damien Miller9ab00b42006-08-05 12:40:11 +10001277 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001278 session_pty_cleanup2(s);
1279 }
Damien Miller7207f642008-05-19 15:34:50 +10001280 session_unused(s->self);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001281}
1282
1283int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001284mm_answer_pty(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001285{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001286 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001287 Session *s;
1288 int res, fd0;
1289
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001290 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001291
1292 buffer_clear(m);
1293 s = session_new();
1294 if (s == NULL)
1295 goto error;
1296 s->authctxt = authctxt;
1297 s->pw = authctxt->pw;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001298 s->pid = pmonitor->m_pid;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001299 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1300 if (res == 0)
1301 goto error;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001302 pty_setowner(authctxt->pw, s->tty);
1303
1304 buffer_put_int(m, 1);
1305 buffer_put_cstring(m, s->tty);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001306
1307 /* We need to trick ttyslot */
1308 if (dup2(s->ttyfd, 0) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001309 fatal("%s: dup2", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001310
1311 mm_record_login(s, authctxt->pw);
1312
1313 /* Now we can close the file descriptor again */
1314 close(0);
1315
Darren Tucker09991742004-07-17 17:05:14 +10001316 /* send messages generated by record_login */
1317 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1318 buffer_clear(&loginmsg);
1319
1320 mm_request_send(sock, MONITOR_ANS_PTY, m);
1321
Damien Miller54fd7cf2007-09-17 12:04:08 +10001322 if (mm_send_fd(sock, s->ptyfd) == -1 ||
1323 mm_send_fd(sock, s->ttyfd) == -1)
1324 fatal("%s: send fds failed", __func__);
Darren Tucker09991742004-07-17 17:05:14 +10001325
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001326 /* make sure nothing uses fd 0 */
1327 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001328 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001329 if (fd0 != 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001330 error("%s: fd0 %d != 0", __func__, fd0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001331
1332 /* slave is not needed */
1333 close(s->ttyfd);
1334 s->ttyfd = s->ptyfd;
1335 /* no need to dup() because nobody closes ptyfd */
1336 s->ptymaster = s->ptyfd;
1337
Damien Miller9ab00b42006-08-05 12:40:11 +10001338 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001339
1340 return (0);
1341
1342 error:
1343 if (s != NULL)
1344 mm_session_close(s);
1345 buffer_put_int(m, 0);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001346 mm_request_send(sock, MONITOR_ANS_PTY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001347 return (0);
1348}
1349
1350int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001351mm_answer_pty_cleanup(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001352{
1353 Session *s;
1354 char *tty;
1355
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001356 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001357
1358 tty = buffer_get_string(m, NULL);
1359 if ((s = session_by_tty(tty)) != NULL)
1360 mm_session_close(s);
1361 buffer_clear(m);
1362 xfree(tty);
1363 return (0);
1364}
1365
1366int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001367mm_answer_sesskey(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001368{
1369 BIGNUM *p;
1370 int rsafail;
1371
1372 /* Turn off permissions */
Darren Tucker5b530262005-02-09 09:52:17 +11001373 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 0);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001374
1375 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001376 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377
1378 buffer_get_bignum2(m, p);
1379
1380 rsafail = ssh1_session_key(p);
1381
1382 buffer_clear(m);
1383 buffer_put_int(m, rsafail);
1384 buffer_put_bignum2(m, p);
1385
1386 BN_clear_free(p);
1387
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001388 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001389
1390 /* Turn on permissions for sessid passing */
1391 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1392
1393 return (0);
1394}
1395
1396int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001397mm_answer_sessid(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001398{
1399 int i;
1400
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001401 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001402
1403 if (buffer_len(m) != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001404 fatal("%s: bad ssh1 session id", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001405 for (i = 0; i < 16; i++)
1406 session_id[i] = buffer_get_char(m);
1407
1408 /* Turn on permissions for getpwnam */
1409 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1410
1411 return (0);
1412}
1413
1414int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001415mm_answer_rsa_keyallowed(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001416{
1417 BIGNUM *client_n;
1418 Key *key = NULL;
1419 u_char *blob = NULL;
1420 u_int blen = 0;
1421 int allowed = 0;
1422
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001423 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001424
Damien Miller7a8f5b32006-03-31 23:14:23 +11001425 auth_method = "rsa";
Ben Lindstromdcf6bfb2002-06-06 20:57:17 +00001426 if (options.rsa_authentication && authctxt->valid) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001427 if ((client_n = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001428 fatal("%s: BN_new", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001429 buffer_get_bignum2(m, client_n);
1430 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1431 BN_clear_free(client_n);
1432 }
1433 buffer_clear(m);
1434 buffer_put_int(m, allowed);
Damien Miller06ebedf2003-02-24 12:03:38 +11001435 buffer_put_int(m, forced_command != NULL);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001436
1437 /* clear temporarily storage (used by generate challenge) */
1438 monitor_reset_key_state();
1439
1440 if (allowed && key != NULL) {
1441 key->type = KEY_RSA; /* cheat for key_to_blob */
1442 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001443 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001444 buffer_put_string(m, blob, blen);
1445
1446 /* Save temporarily for comparison in verify */
1447 key_blob = blob;
1448 key_bloblen = blen;
1449 key_blobtype = MM_RSAUSERKEY;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001450 }
Damien Miller00111382003-03-10 11:21:17 +11001451 if (key != NULL)
1452 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001453
1454 mm_append_debug(m);
1455
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001456 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001457
1458 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1459 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1460 return (0);
1461}
1462
1463int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001464mm_answer_rsa_challenge(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001465{
1466 Key *key = NULL;
1467 u_char *blob;
1468 u_int blen;
1469
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001470 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001471
1472 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001473 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474 blob = buffer_get_string(m, &blen);
1475 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001476 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001477 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001478 fatal("%s: key type mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001479 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001480 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001481
1482 if (ssh1_challenge)
1483 BN_clear_free(ssh1_challenge);
1484 ssh1_challenge = auth_rsa_generate_challenge(key);
1485
1486 buffer_clear(m);
1487 buffer_put_bignum2(m, ssh1_challenge);
1488
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001489 debug3("%s sending reply", __func__);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001490 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001491
1492 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
Damien Miller00111382003-03-10 11:21:17 +11001493
1494 xfree(blob);
1495 key_free(key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001496 return (0);
1497}
1498
1499int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001500mm_answer_rsa_response(int sock, Buffer *m)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001501{
1502 Key *key = NULL;
1503 u_char *blob, *response;
1504 u_int blen, len;
1505 int success;
1506
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001507 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001508
1509 if (!authctxt->valid)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001510 fatal("%s: authctxt not valid", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001511 if (ssh1_challenge == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001512 fatal("%s: no ssh1_challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001513
1514 blob = buffer_get_string(m, &blen);
1515 if (!monitor_allowed_key(blob, blen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001516 fatal("%s: bad key, not previously allowed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001517 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001518 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001519 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001520 fatal("%s: received bad key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001521 response = buffer_get_string(m, &len);
1522 if (len != 16)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001523 fatal("%s: received bad response to challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001524 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1525
Damien Miller00111382003-03-10 11:21:17 +11001526 xfree(blob);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001527 key_free(key);
1528 xfree(response);
1529
1530 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1531
1532 /* reset state */
1533 BN_clear_free(ssh1_challenge);
1534 ssh1_challenge = NULL;
1535 monitor_reset_key_state();
1536
1537 buffer_clear(m);
1538 buffer_put_int(m, success);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001539 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001540
1541 return (success);
1542}
1543
1544int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001545mm_answer_term(int sock, Buffer *req)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001546{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001547 extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001548 int res, status;
1549
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001550 debug3("%s: tearing down sessions", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001551
1552 /* The child is terminating */
1553 session_destroy_all(&mm_session_close);
1554
Darren Tucker52358d62008-03-11 22:58:25 +11001555#ifdef USE_PAM
1556 if (options.use_pam)
1557 sshpam_cleanup();
1558#endif
1559
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001560 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
Ben Lindstrom47fd8112002-04-02 20:48:19 +00001561 if (errno != EINTR)
1562 exit(1);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001563
1564 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1565
1566 /* Terminate process */
Darren Tucker1f8311c2004-05-13 16:39:33 +10001567 exit(res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001568}
1569
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001570#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001571/* Report that an audit event occurred */
1572int
1573mm_answer_audit_event(int socket, Buffer *m)
1574{
1575 ssh_audit_event_t event;
1576
1577 debug3("%s entering", __func__);
1578
1579 event = buffer_get_int(m);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001580 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001581 case SSH_AUTH_FAIL_PUBKEY:
1582 case SSH_AUTH_FAIL_HOSTBASED:
1583 case SSH_AUTH_FAIL_GSSAPI:
1584 case SSH_LOGIN_EXCEED_MAXTRIES:
1585 case SSH_LOGIN_ROOT_DENIED:
1586 case SSH_CONNECTION_CLOSE:
1587 case SSH_INVALID_USER:
Darren Tucker269a1ea2005-02-03 00:20:53 +11001588 audit_event(event);
1589 break;
1590 default:
1591 fatal("Audit event type %d not permitted", event);
1592 }
1593
1594 return (0);
1595}
1596
1597int
1598mm_answer_audit_command(int socket, Buffer *m)
1599{
1600 u_int len;
1601 char *cmd;
1602
1603 debug3("%s entering", __func__);
1604 cmd = buffer_get_string(m, &len);
1605 /* sanity check command, if so how? */
1606 audit_run_command(cmd);
1607 xfree(cmd);
Darren Tucker269a1ea2005-02-03 00:20:53 +11001608 return (0);
1609}
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001610#endif /* SSH_AUDIT_EVENTS */
Darren Tucker269a1ea2005-02-03 00:20:53 +11001611
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001612void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001613monitor_apply_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001614{
1615 if (compat20) {
1616 set_newkeys(MODE_IN);
1617 set_newkeys(MODE_OUT);
1618 } else {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001619 packet_set_protocol_flags(child_state.ssh1protoflags);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001620 packet_set_encryption_key(child_state.ssh1key,
1621 child_state.ssh1keylen, child_state.ssh1cipher);
1622 xfree(child_state.ssh1key);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001623 }
1624
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001625 /* for rc4 and other stateful ciphers */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001626 packet_set_keycontext(MODE_OUT, child_state.keyout);
1627 xfree(child_state.keyout);
1628 packet_set_keycontext(MODE_IN, child_state.keyin);
1629 xfree(child_state.keyin);
1630
1631 if (!compat20) {
1632 packet_set_iv(MODE_OUT, child_state.ivout);
1633 xfree(child_state.ivout);
1634 packet_set_iv(MODE_IN, child_state.ivin);
1635 xfree(child_state.ivin);
1636 }
1637
1638 memcpy(&incoming_stream, &child_state.incoming,
1639 sizeof(incoming_stream));
1640 memcpy(&outgoing_stream, &child_state.outgoing,
1641 sizeof(outgoing_stream));
1642
1643 /* Update with new address */
Damien Miller2d6b8332002-06-21 15:59:49 +10001644 if (options.compression)
1645 mm_init_compression(pmonitor->m_zlib);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001646
1647 /* Network I/O buffers */
1648 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1649 buffer_clear(&input);
1650 buffer_append(&input, child_state.input, child_state.ilen);
1651 memset(child_state.input, 0, child_state.ilen);
1652 xfree(child_state.input);
1653
1654 buffer_clear(&output);
1655 buffer_append(&output, child_state.output, child_state.olen);
1656 memset(child_state.output, 0, child_state.olen);
1657 xfree(child_state.output);
1658}
1659
1660static Kex *
1661mm_get_kex(Buffer *m)
1662{
1663 Kex *kex;
1664 void *blob;
1665 u_int bloblen;
1666
Damien Miller07d86be2006-03-26 14:19:21 +11001667 kex = xcalloc(1, sizeof(*kex));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001668 kex->session_id = buffer_get_string(m, &kex->session_id_len);
Ben Lindstromf67e0772002-06-06 20:58:19 +00001669 if ((session_id2 == NULL) ||
1670 (kex->session_id_len != session_id2_len) ||
1671 (memcmp(kex->session_id, session_id2, session_id2_len) != 0))
1672 fatal("mm_get_get: internal error: bad session id");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001673 kex->we_need = buffer_get_int(m);
Damien Millerb062c292003-03-24 09:12:09 +11001674 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
Damien Millerf675fc42004-06-15 10:30:09 +10001675 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
Damien Millerb062c292003-03-24 09:12:09 +11001676 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11001677 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001678 kex->server = 1;
1679 kex->hostkey_type = buffer_get_int(m);
1680 kex->kex_type = buffer_get_int(m);
1681 blob = buffer_get_string(m, &bloblen);
1682 buffer_init(&kex->my);
1683 buffer_append(&kex->my, blob, bloblen);
1684 xfree(blob);
1685 blob = buffer_get_string(m, &bloblen);
1686 buffer_init(&kex->peer);
1687 buffer_append(&kex->peer, blob, bloblen);
1688 xfree(blob);
1689 kex->done = 1;
1690 kex->flags = buffer_get_int(m);
1691 kex->client_version_string = buffer_get_string(m, NULL);
1692 kex->server_version_string = buffer_get_string(m, NULL);
1693 kex->load_host_key=&get_hostkey_by_type;
1694 kex->host_key_index=&get_hostkey_index;
1695
1696 return (kex);
1697}
1698
1699/* This function requries careful sanity checking */
1700
1701void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001702mm_get_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001703{
1704 Buffer m;
1705 u_char *blob, *p;
1706 u_int bloblen, plen;
Damien Millera5539d22003-04-09 20:50:06 +10001707 u_int32_t seqnr, packets;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001708 u_int64_t blocks, bytes;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001709
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001710 debug3("%s: Waiting for new keys", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001711
1712 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001713 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001714 if (!compat20) {
1715 child_state.ssh1protoflags = buffer_get_int(&m);
1716 child_state.ssh1cipher = buffer_get_int(&m);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +00001717 child_state.ssh1key = buffer_get_string(&m,
1718 &child_state.ssh1keylen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001719 child_state.ivout = buffer_get_string(&m,
1720 &child_state.ivoutlen);
1721 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1722 goto skip;
1723 } else {
1724 /* Get the Kex for rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001725 *pmonitor->m_pkex = mm_get_kex(&m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001726 }
1727
1728 blob = buffer_get_string(&m, &bloblen);
1729 current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
1730 xfree(blob);
1731
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001732 debug3("%s: Waiting for second key", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001733 blob = buffer_get_string(&m, &bloblen);
1734 current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
1735 xfree(blob);
1736
1737 /* Now get sequence numbers for the packets */
Damien Millera5539d22003-04-09 20:50:06 +10001738 seqnr = buffer_get_int(&m);
1739 blocks = buffer_get_int64(&m);
1740 packets = buffer_get_int(&m);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001741 bytes = buffer_get_int64(&m);
1742 packet_set_state(MODE_OUT, seqnr, blocks, packets, bytes);
Damien Millera5539d22003-04-09 20:50:06 +10001743 seqnr = buffer_get_int(&m);
1744 blocks = buffer_get_int64(&m);
1745 packets = buffer_get_int(&m);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001746 bytes = buffer_get_int64(&m);
1747 packet_set_state(MODE_IN, seqnr, blocks, packets, bytes);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001748
1749 skip:
1750 /* Get the key context */
1751 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1752 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1753
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001754 debug3("%s: Getting compression state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001755 /* Get compression state */
1756 p = buffer_get_string(&m, &plen);
1757 if (plen != sizeof(child_state.outgoing))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001758 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001759 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1760 xfree(p);
1761
1762 p = buffer_get_string(&m, &plen);
1763 if (plen != sizeof(child_state.incoming))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001764 fatal("%s: bad request size", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001765 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1766 xfree(p);
1767
1768 /* Network I/O buffers */
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001769 debug3("%s: Getting Network I/O buffers", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001770 child_state.input = buffer_get_string(&m, &child_state.ilen);
1771 child_state.output = buffer_get_string(&m, &child_state.olen);
1772
1773 buffer_free(&m);
1774}
1775
1776
1777/* Allocation functions for zlib */
1778void *
1779mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1780{
Ben Lindstrom41ee2b02002-11-09 15:47:47 +00001781 size_t len = (size_t) size * ncount;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001782 void *address;
1783
Ben Lindstrom0a4f7542002-08-20 18:36:25 +00001784 if (len == 0 || ncount > SIZE_T_MAX / size)
Damien Miller530a7542002-06-26 23:27:11 +10001785 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1786
1787 address = mm_malloc(mm, len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001788
1789 return (address);
1790}
1791
1792void
1793mm_zfree(struct mm_master *mm, void *address)
1794{
1795 mm_free(mm, address);
1796}
1797
1798void
1799mm_init_compression(struct mm_master *mm)
1800{
1801 outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1802 outgoing_stream.zfree = (free_func)mm_zfree;
1803 outgoing_stream.opaque = mm;
1804
1805 incoming_stream.zalloc = (alloc_func)mm_zalloc;
1806 incoming_stream.zfree = (free_func)mm_zfree;
1807 incoming_stream.opaque = mm;
1808}
1809
1810/* XXX */
1811
1812#define FD_CLOSEONEXEC(x) do { \
1813 if (fcntl(x, F_SETFD, 1) == -1) \
1814 fatal("fcntl(%d, F_SETFD)", x); \
1815} while (0)
1816
1817static void
1818monitor_socketpair(int *pair)
1819{
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001820#ifdef HAVE_SOCKETPAIR
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001821 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001822 fatal("%s: socketpair", __func__);
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001823#else
1824 fatal("%s: UsePrivilegeSeparation=yes not supported",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001825 __func__);
Kevin Stevesfe6ca542002-04-10 22:04:54 +00001826#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001827 FD_CLOSEONEXEC(pair[0]);
1828 FD_CLOSEONEXEC(pair[1]);
1829}
1830
1831#define MM_MEMSIZE 65536
1832
1833struct monitor *
1834monitor_init(void)
1835{
1836 struct monitor *mon;
1837 int pair[2];
1838
Damien Miller07d86be2006-03-26 14:19:21 +11001839 mon = xcalloc(1, sizeof(*mon));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001840
1841 monitor_socketpair(pair);
1842
1843 mon->m_recvfd = pair[0];
1844 mon->m_sendfd = pair[1];
1845
1846 /* Used to share zlib space across processes */
Damien Miller2d6b8332002-06-21 15:59:49 +10001847 if (options.compression) {
1848 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1849 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001850
Damien Miller2d6b8332002-06-21 15:59:49 +10001851 /* Compression needs to share state across borders */
1852 mm_init_compression(mon->m_zlib);
1853 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001854
1855 return mon;
1856}
1857
1858void
1859monitor_reinit(struct monitor *mon)
1860{
1861 int pair[2];
1862
1863 monitor_socketpair(pair);
1864
1865 mon->m_recvfd = pair[0];
1866 mon->m_sendfd = pair[1];
1867}
Darren Tucker0efd1552003-08-26 11:49:55 +10001868
1869#ifdef GSSAPI
1870int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001871mm_answer_gss_setup_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001872{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001873 gss_OID_desc goid;
Darren Tucker0efd1552003-08-26 11:49:55 +10001874 OM_uint32 major;
1875 u_int len;
1876
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001877 goid.elements = buffer_get_string(m, &len);
1878 goid.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001879
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001880 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
Darren Tucker0efd1552003-08-26 11:49:55 +10001881
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001882 xfree(goid.elements);
Darren Tucker0efd1552003-08-26 11:49:55 +10001883
1884 buffer_clear(m);
1885 buffer_put_int(m, major);
1886
Damien Miller6fd6def2005-11-05 15:07:05 +11001887 mm_request_send(sock, MONITOR_ANS_GSSSETUP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001888
1889 /* Now we have a context, enable the step */
1890 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1891
1892 return (0);
1893}
1894
1895int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001896mm_answer_gss_accept_ctx(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001897{
1898 gss_buffer_desc in;
1899 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
Damien Miller6fd6def2005-11-05 15:07:05 +11001900 OM_uint32 major, minor;
Darren Tucker0efd1552003-08-26 11:49:55 +10001901 OM_uint32 flags = 0; /* GSI needs this */
Darren Tucker600ad8d2003-08-26 12:10:48 +10001902 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001903
Darren Tucker600ad8d2003-08-26 12:10:48 +10001904 in.value = buffer_get_string(m, &len);
1905 in.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +10001906 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
1907 xfree(in.value);
1908
1909 buffer_clear(m);
1910 buffer_put_int(m, major);
1911 buffer_put_string(m, out.value, out.length);
1912 buffer_put_int(m, flags);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001913 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001914
1915 gss_release_buffer(&minor, &out);
1916
Damien Miller6fd6def2005-11-05 15:07:05 +11001917 if (major == GSS_S_COMPLETE) {
Darren Tucker0efd1552003-08-26 11:49:55 +10001918 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1919 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller0425d402003-11-17 22:18:21 +11001920 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
Darren Tucker0efd1552003-08-26 11:49:55 +10001921 }
1922 return (0);
1923}
1924
1925int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001926mm_answer_gss_checkmic(int sock, Buffer *m)
Damien Miller0425d402003-11-17 22:18:21 +11001927{
1928 gss_buffer_desc gssbuf, mic;
1929 OM_uint32 ret;
1930 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001931
Damien Miller0425d402003-11-17 22:18:21 +11001932 gssbuf.value = buffer_get_string(m, &len);
1933 gssbuf.length = len;
1934 mic.value = buffer_get_string(m, &len);
1935 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +11001936
Damien Miller0425d402003-11-17 22:18:21 +11001937 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +11001938
Damien Miller0425d402003-11-17 22:18:21 +11001939 xfree(gssbuf.value);
1940 xfree(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +11001941
Damien Miller0425d402003-11-17 22:18:21 +11001942 buffer_clear(m);
1943 buffer_put_int(m, ret);
Damien Miller787b2ec2003-11-21 23:56:47 +11001944
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001945 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
Damien Miller787b2ec2003-11-21 23:56:47 +11001946
Damien Miller0425d402003-11-17 22:18:21 +11001947 if (!GSS_ERROR(ret))
1948 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +11001949
Damien Miller0425d402003-11-17 22:18:21 +11001950 return (0);
1951}
1952
1953int
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001954mm_answer_gss_userok(int sock, Buffer *m)
Darren Tucker0efd1552003-08-26 11:49:55 +10001955{
1956 int authenticated;
1957
1958 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1959
1960 buffer_clear(m);
1961 buffer_put_int(m, authenticated);
1962
1963 debug3("%s: sending result %d", __func__, authenticated);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001964 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
Darren Tucker0efd1552003-08-26 11:49:55 +10001965
Damien Miller6fd6def2005-11-05 15:07:05 +11001966 auth_method = "gssapi-with-mic";
Darren Tucker0efd1552003-08-26 11:49:55 +10001967
1968 /* Monitor loop will terminate if authenticated */
1969 return (authenticated);
1970}
1971#endif /* GSSAPI */