blob: 9e7e6b3c3e1a1ad783de4c51a267a97b5e576d8d [file] [log] [blame]
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001/*
2 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
3 * Copyright 2002 Markus Friedl <markus@openbsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
Darren Tucker6aaa58c2003-08-02 22:24:49 +100028RCSID("$OpenBSD: monitor_wrap.c,v 1.28 2003/07/22 13:35:22 markus Exp $");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000029
30#include <openssl/bn.h>
31#include <openssl/dh.h>
32
33#include "ssh.h"
34#include "dh.h"
35#include "kex.h"
36#include "auth.h"
Damien Miller06ebedf2003-02-24 12:03:38 +110037#include "auth-options.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000038#include "buffer.h"
39#include "bufaux.h"
40#include "packet.h"
41#include "mac.h"
42#include "log.h"
43#include "zlib.h"
44#include "monitor.h"
45#include "monitor_wrap.h"
46#include "xmalloc.h"
47#include "atomicio.h"
48#include "monitor_fdpass.h"
49#include "getput.h"
Damien Miller4e448a32003-05-14 15:11:48 +100050#include "servconf.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000051
52#include "auth.h"
53#include "channels.h"
54#include "session.h"
55
56/* Imports */
57extern int compat20;
58extern Newkeys *newkeys[];
59extern z_stream incoming_stream;
60extern z_stream outgoing_stream;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +000061extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000062extern Buffer input, output;
Damien Miller4e448a32003-05-14 15:11:48 +100063extern ServerOptions options;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000064
65void
66mm_request_send(int socket, enum monitor_reqtype type, Buffer *m)
67{
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000068 u_int mlen = buffer_len(m);
Ben Lindstromb1bdc5a2002-07-04 00:09:26 +000069 u_char buf[5];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000071 debug3("%s entering: type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000072
73 PUT_32BIT(buf, mlen + 1);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000074 buf[4] = (u_char) type; /* 1st byte of payload is mesg-type */
Darren Tucker9f63f222003-07-03 13:46:56 +100075 if (atomicio(vwrite, socket, buf, sizeof(buf)) != sizeof(buf))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000076 fatal("%s: write", __func__);
Darren Tucker9f63f222003-07-03 13:46:56 +100077 if (atomicio(vwrite, socket, buffer_ptr(m), mlen) != mlen)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000078 fatal("%s: write", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000079}
80
81void
82mm_request_receive(int socket, Buffer *m)
83{
84 u_char buf[4];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000085 u_int msg_len;
Ben Lindstromb1bdc5a2002-07-04 00:09:26 +000086 ssize_t res;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000088 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000089
90 res = atomicio(read, socket, buf, sizeof(buf));
91 if (res != sizeof(buf)) {
92 if (res == 0)
93 fatal_cleanup();
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000094 fatal("%s: read: %ld", __func__, (long)res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000095 }
96 msg_len = GET_32BIT(buf);
97 if (msg_len > 256 * 1024)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000098 fatal("%s: read: bad msg_len %d", __func__, msg_len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000099 buffer_clear(m);
100 buffer_append_space(m, msg_len);
101 res = atomicio(read, socket, buffer_ptr(m), msg_len);
102 if (res != msg_len)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000103 fatal("%s: read: %ld != msg_len", __func__, (long)res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000104}
105
106void
107mm_request_receive_expect(int socket, enum monitor_reqtype type, Buffer *m)
108{
109 u_char rtype;
110
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000111 debug3("%s entering: type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000112
113 mm_request_receive(socket, m);
114 rtype = buffer_get_char(m);
115 if (rtype != type)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000116 fatal("%s: read: rtype %d != type %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000117 rtype, type);
118}
119
120DH *
121mm_choose_dh(int min, int nbits, int max)
122{
123 BIGNUM *p, *g;
124 int success = 0;
125 Buffer m;
126
127 buffer_init(&m);
128 buffer_put_int(&m, min);
129 buffer_put_int(&m, nbits);
130 buffer_put_int(&m, max);
131
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000132 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_MODULI, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000133
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000134 debug3("%s: waiting for MONITOR_ANS_MODULI", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000135 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_MODULI, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000136
137 success = buffer_get_char(&m);
138 if (success == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000139 fatal("%s: MONITOR_ANS_MODULI failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000140
141 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000142 fatal("%s: BN_new failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000143 if ((g = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000144 fatal("%s: BN_new failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000145 buffer_get_bignum2(&m, p);
146 buffer_get_bignum2(&m, g);
147
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000148 debug3("%s: remaining %d", __func__, buffer_len(&m));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000149 buffer_free(&m);
150
151 return (dh_new_group(g, p));
152}
153
154int
155mm_key_sign(Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen)
156{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000157 Kex *kex = *pmonitor->m_pkex;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000158 Buffer m;
159
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000160 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000161
162 buffer_init(&m);
163 buffer_put_int(&m, kex->host_key_index(key));
164 buffer_put_string(&m, data, datalen);
165
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000166 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SIGN, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000167
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000168 debug3("%s: waiting for MONITOR_ANS_SIGN", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000169 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SIGN, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000170 *sigp = buffer_get_string(&m, lenp);
171 buffer_free(&m);
172
173 return (0);
174}
175
176struct passwd *
177mm_getpwnamallow(const char *login)
178{
179 Buffer m;
180 struct passwd *pw;
181 u_int pwlen;
182
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000183 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000184
185 buffer_init(&m);
186 buffer_put_cstring(&m, login);
187
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000188 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PWNAM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000189
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000190 debug3("%s: waiting for MONITOR_ANS_PWNAM", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000191 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PWNAM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000192
193 if (buffer_get_char(&m) == 0) {
194 buffer_free(&m);
195 return (NULL);
196 }
197 pw = buffer_get_string(&m, &pwlen);
198 if (pwlen != sizeof(struct passwd))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000199 fatal("%s: struct passwd size mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000200 pw->pw_name = buffer_get_string(&m, NULL);
201 pw->pw_passwd = buffer_get_string(&m, NULL);
202 pw->pw_gecos = buffer_get_string(&m, NULL);
Kevin Steves7e147602002-03-22 18:07:17 +0000203#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204 pw->pw_class = buffer_get_string(&m, NULL);
Kevin Steves7e147602002-03-22 18:07:17 +0000205#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206 pw->pw_dir = buffer_get_string(&m, NULL);
207 pw->pw_shell = buffer_get_string(&m, NULL);
208 buffer_free(&m);
209
210 return (pw);
211}
212
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000213char *mm_auth2_read_banner(void)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000214{
215 Buffer m;
216 char *banner;
217
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000218 debug3("%s entering", __func__);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000219
220 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000221 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTH2_READ_BANNER, &m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000222 buffer_clear(&m);
223
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000224 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTH2_READ_BANNER, &m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000225 banner = buffer_get_string(&m, NULL);
226 buffer_free(&m);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000227
Damien Miller5ad9fd92002-05-13 11:07:41 +1000228 return (banner);
229}
230
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000231/* Inform the privileged process about service and style */
232
233void
234mm_inform_authserv(char *service, char *style)
235{
236 Buffer m;
237
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000238 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000239
240 buffer_init(&m);
241 buffer_put_cstring(&m, service);
242 buffer_put_cstring(&m, style ? style : "");
243
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000244 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000245
246 buffer_free(&m);
247}
248
249/* Do the password authentication */
250int
251mm_auth_password(Authctxt *authctxt, char *password)
252{
253 Buffer m;
254 int authenticated = 0;
255
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000256 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000257
258 buffer_init(&m);
259 buffer_put_cstring(&m, password);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000260 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHPASSWORD, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000261
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000262 debug3("%s: waiting for MONITOR_ANS_AUTHPASSWORD", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000263 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTHPASSWORD, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000264
265 authenticated = buffer_get_int(&m);
266
267 buffer_free(&m);
268
269 debug3("%s: user %sauthenticated",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000270 __func__, authenticated ? "" : "not ");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000271 return (authenticated);
272}
273
274int
275mm_user_key_allowed(struct passwd *pw, Key *key)
276{
277 return (mm_key_allowed(MM_USERKEY, NULL, NULL, key));
278}
279
280int
281mm_hostbased_key_allowed(struct passwd *pw, char *user, char *host,
282 Key *key)
283{
284 return (mm_key_allowed(MM_HOSTKEY, user, host, key));
285}
286
287int
288mm_auth_rhosts_rsa_key_allowed(struct passwd *pw, char *user,
289 char *host, Key *key)
290{
291 int ret;
292
293 key->type = KEY_RSA; /* XXX hack for key_to_blob */
294 ret = mm_key_allowed(MM_RSAHOSTKEY, user, host, key);
295 key->type = KEY_RSA1;
296 return (ret);
297}
298
299static void
300mm_send_debug(Buffer *m)
301{
302 char *msg;
303
304 while (buffer_len(m)) {
305 msg = buffer_get_string(m, NULL);
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000306 debug3("%s: Sending debug: %s", __func__, msg);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000307 packet_send_debug("%s", msg);
308 xfree(msg);
309 }
310}
311
312int
313mm_key_allowed(enum mm_keytype type, char *user, char *host, Key *key)
314{
315 Buffer m;
316 u_char *blob;
317 u_int len;
Damien Miller06ebedf2003-02-24 12:03:38 +1100318 int allowed = 0, have_forced = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000319
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000320 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000321
322 /* Convert the key to a blob and the pass it over */
323 if (!key_to_blob(key, &blob, &len))
324 return (0);
325
326 buffer_init(&m);
327 buffer_put_int(&m, type);
328 buffer_put_cstring(&m, user ? user : "");
329 buffer_put_cstring(&m, host ? host : "");
330 buffer_put_string(&m, blob, len);
331 xfree(blob);
332
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000333 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000334
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000335 debug3("%s: waiting for MONITOR_ANS_KEYALLOWED", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000336 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000337
338 allowed = buffer_get_int(&m);
339
Damien Miller06ebedf2003-02-24 12:03:38 +1100340 /* fake forced command */
341 auth_clear_options();
342 have_forced = buffer_get_int(&m);
343 forced_command = have_forced ? xstrdup("true") : NULL;
344
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000345 /* Send potential debug messages */
346 mm_send_debug(&m);
347
348 buffer_free(&m);
349
350 return (allowed);
351}
352
353/*
354 * This key verify needs to send the key type along, because the
355 * privileged parent makes the decision if the key is allowed
356 * for authentication.
357 */
358
359int
360mm_key_verify(Key *key, u_char *sig, u_int siglen, u_char *data, u_int datalen)
361{
362 Buffer m;
363 u_char *blob;
364 u_int len;
365 int verified = 0;
366
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000367 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000368
369 /* Convert the key to a blob and the pass it over */
370 if (!key_to_blob(key, &blob, &len))
371 return (0);
372
373 buffer_init(&m);
374 buffer_put_string(&m, blob, len);
375 buffer_put_string(&m, sig, siglen);
376 buffer_put_string(&m, data, datalen);
377 xfree(blob);
378
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000379 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000380
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000381 debug3("%s: waiting for MONITOR_ANS_KEYVERIFY", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000382 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYVERIFY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000383
384 verified = buffer_get_int(&m);
385
386 buffer_free(&m);
387
388 return (verified);
389}
390
391/* Export key state after authentication */
392Newkeys *
393mm_newkeys_from_blob(u_char *blob, int blen)
394{
395 Buffer b;
396 u_int len;
397 Newkeys *newkey = NULL;
398 Enc *enc;
399 Mac *mac;
400 Comp *comp;
401
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000402 debug3("%s: %p(%d)", __func__, blob, blen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000403#ifdef DEBUG_PK
404 dump_base64(stderr, blob, blen);
405#endif
406 buffer_init(&b);
407 buffer_append(&b, blob, blen);
408
409 newkey = xmalloc(sizeof(*newkey));
410 enc = &newkey->enc;
411 mac = &newkey->mac;
412 comp = &newkey->comp;
413
414 /* Enc structure */
415 enc->name = buffer_get_string(&b, NULL);
416 buffer_get(&b, &enc->cipher, sizeof(enc->cipher));
417 enc->enabled = buffer_get_int(&b);
418 enc->block_size = buffer_get_int(&b);
419 enc->key = buffer_get_string(&b, &enc->key_len);
420 enc->iv = buffer_get_string(&b, &len);
421 if (len != enc->block_size)
Ben Lindstrom08512492002-06-27 00:23:02 +0000422 fatal("%s: bad ivlen: expected %u != %u", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000423 enc->block_size, len);
424
425 if (enc->name == NULL || cipher_by_name(enc->name) != enc->cipher)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000426 fatal("%s: bad cipher name %s or pointer %p", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000427 enc->name, enc->cipher);
428
429 /* Mac structure */
430 mac->name = buffer_get_string(&b, NULL);
431 if (mac->name == NULL || mac_init(mac, mac->name) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000432 fatal("%s: can not init mac %s", __func__, mac->name);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000433 mac->enabled = buffer_get_int(&b);
434 mac->key = buffer_get_string(&b, &len);
435 if (len > mac->key_len)
Ben Lindstrom08512492002-06-27 00:23:02 +0000436 fatal("%s: bad mac key length: %u > %d", __func__, len,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000437 mac->key_len);
438 mac->key_len = len;
439
440 /* Comp structure */
441 comp->type = buffer_get_int(&b);
442 comp->enabled = buffer_get_int(&b);
443 comp->name = buffer_get_string(&b, NULL);
444
445 len = buffer_len(&b);
446 if (len != 0)
Ben Lindstrom08512492002-06-27 00:23:02 +0000447 error("newkeys_from_blob: remaining bytes in blob %u", len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000448 buffer_free(&b);
449 return (newkey);
450}
451
452int
453mm_newkeys_to_blob(int mode, u_char **blobp, u_int *lenp)
454{
455 Buffer b;
456 int len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000457 Enc *enc;
458 Mac *mac;
459 Comp *comp;
460 Newkeys *newkey = newkeys[mode];
461
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000462 debug3("%s: converting %p", __func__, newkey);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000463
464 if (newkey == NULL) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000465 error("%s: newkey == NULL", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000466 return 0;
467 }
468 enc = &newkey->enc;
469 mac = &newkey->mac;
470 comp = &newkey->comp;
471
472 buffer_init(&b);
473 /* Enc structure */
474 buffer_put_cstring(&b, enc->name);
475 /* The cipher struct is constant and shared, you export pointer */
476 buffer_append(&b, &enc->cipher, sizeof(enc->cipher));
477 buffer_put_int(&b, enc->enabled);
478 buffer_put_int(&b, enc->block_size);
479 buffer_put_string(&b, enc->key, enc->key_len);
480 packet_get_keyiv(mode, enc->iv, enc->block_size);
481 buffer_put_string(&b, enc->iv, enc->block_size);
482
483 /* Mac structure */
484 buffer_put_cstring(&b, mac->name);
485 buffer_put_int(&b, mac->enabled);
486 buffer_put_string(&b, mac->key, mac->key_len);
487
488 /* Comp structure */
489 buffer_put_int(&b, comp->type);
490 buffer_put_int(&b, comp->enabled);
491 buffer_put_cstring(&b, comp->name);
492
493 len = buffer_len(&b);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000494 if (lenp != NULL)
495 *lenp = len;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +0000496 if (blobp != NULL) {
497 *blobp = xmalloc(len);
498 memcpy(*blobp, buffer_ptr(&b), len);
499 }
500 memset(buffer_ptr(&b), 0, len);
501 buffer_free(&b);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000502 return len;
503}
504
505static void
506mm_send_kex(Buffer *m, Kex *kex)
507{
508 buffer_put_string(m, kex->session_id, kex->session_id_len);
509 buffer_put_int(m, kex->we_need);
510 buffer_put_int(m, kex->hostkey_type);
511 buffer_put_int(m, kex->kex_type);
512 buffer_put_string(m, buffer_ptr(&kex->my), buffer_len(&kex->my));
513 buffer_put_string(m, buffer_ptr(&kex->peer), buffer_len(&kex->peer));
514 buffer_put_int(m, kex->flags);
515 buffer_put_cstring(m, kex->client_version_string);
516 buffer_put_cstring(m, kex->server_version_string);
517}
518
519void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000520mm_send_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000521{
522 Buffer m;
523 u_char *blob, *p;
524 u_int bloblen, plen;
Damien Millera5539d22003-04-09 20:50:06 +1000525 u_int32_t seqnr, packets;
526 u_int64_t blocks;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000527
528 buffer_init(&m);
529
530 if (!compat20) {
531 u_char iv[24];
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000532 u_char *key;
533 u_int ivlen, keylen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000534
535 buffer_put_int(&m, packet_get_protocol_flags());
536
537 buffer_put_int(&m, packet_get_ssh1_cipher());
538
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000539 debug3("%s: Sending ssh1 KEY+IV", __func__);
540 keylen = packet_get_encryption_key(NULL);
541 key = xmalloc(keylen+1); /* add 1 if keylen == 0 */
542 keylen = packet_get_encryption_key(key);
543 buffer_put_string(&m, key, keylen);
544 memset(key, 0, keylen);
545 xfree(key);
546
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000547 ivlen = packet_get_keyiv_len(MODE_OUT);
548 packet_get_keyiv(MODE_OUT, iv, ivlen);
549 buffer_put_string(&m, iv, ivlen);
550 ivlen = packet_get_keyiv_len(MODE_OUT);
551 packet_get_keyiv(MODE_IN, iv, ivlen);
552 buffer_put_string(&m, iv, ivlen);
553 goto skip;
554 } else {
555 /* Kex for rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000556 mm_send_kex(&m, *pmonitor->m_pkex);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000557 }
558
559 debug3("%s: Sending new keys: %p %p",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000560 __func__, newkeys[MODE_OUT], newkeys[MODE_IN]);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000561
562 /* Keys from Kex */
563 if (!mm_newkeys_to_blob(MODE_OUT, &blob, &bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000564 fatal("%s: conversion of newkeys failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000565
566 buffer_put_string(&m, blob, bloblen);
567 xfree(blob);
568
569 if (!mm_newkeys_to_blob(MODE_IN, &blob, &bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000570 fatal("%s: conversion of newkeys failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000571
572 buffer_put_string(&m, blob, bloblen);
573 xfree(blob);
574
Damien Millera5539d22003-04-09 20:50:06 +1000575 packet_get_state(MODE_OUT, &seqnr, &blocks, &packets);
576 buffer_put_int(&m, seqnr);
577 buffer_put_int64(&m, blocks);
578 buffer_put_int(&m, packets);
Damien Millerb1ecd9c2003-04-09 20:51:24 +1000579 packet_get_state(MODE_IN, &seqnr, &blocks, &packets);
Damien Millera5539d22003-04-09 20:50:06 +1000580 buffer_put_int(&m, seqnr);
581 buffer_put_int64(&m, blocks);
582 buffer_put_int(&m, packets);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000583
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000584 debug3("%s: New keys have been sent", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000585 skip:
586 /* More key context */
587 plen = packet_get_keycontext(MODE_OUT, NULL);
588 p = xmalloc(plen+1);
589 packet_get_keycontext(MODE_OUT, p);
590 buffer_put_string(&m, p, plen);
591 xfree(p);
592
593 plen = packet_get_keycontext(MODE_IN, NULL);
594 p = xmalloc(plen+1);
595 packet_get_keycontext(MODE_IN, p);
596 buffer_put_string(&m, p, plen);
597 xfree(p);
598
599 /* Compression state */
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000600 debug3("%s: Sending compression state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000601 buffer_put_string(&m, &outgoing_stream, sizeof(outgoing_stream));
602 buffer_put_string(&m, &incoming_stream, sizeof(incoming_stream));
603
604 /* Network I/O buffers */
605 buffer_put_string(&m, buffer_ptr(&input), buffer_len(&input));
606 buffer_put_string(&m, buffer_ptr(&output), buffer_len(&output));
607
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000608 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYEXPORT, &m);
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000609 debug3("%s: Finished sending state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000610
611 buffer_free(&m);
612}
613
614int
615mm_pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
616{
617 Buffer m;
Damien Millera10f5612002-09-12 09:49:15 +1000618 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000619 int success = 0;
620
621 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000622 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000623
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000624 debug3("%s: waiting for MONITOR_ANS_PTY", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000625 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PTY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000626
627 success = buffer_get_int(&m);
628 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000629 debug3("%s: pty alloc failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630 buffer_free(&m);
631 return (0);
632 }
633 p = buffer_get_string(&m, NULL);
634 buffer_free(&m);
635
636 strlcpy(namebuf, p, namebuflen); /* Possible truncation */
637 xfree(p);
638
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000639 *ptyfd = mm_receive_fd(pmonitor->m_recvfd);
640 *ttyfd = mm_receive_fd(pmonitor->m_recvfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000641
642 /* Success */
643 return (1);
644}
645
646void
647mm_session_pty_cleanup2(void *session)
648{
649 Session *s = session;
650 Buffer m;
651
652 if (s->ttyfd == -1)
653 return;
654 buffer_init(&m);
655 buffer_put_cstring(&m, s->tty);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000656 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTYCLEANUP, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000657 buffer_free(&m);
658
659 /* closed dup'ed master */
660 if (close(s->ptymaster) < 0)
661 error("close(s->ptymaster): %s", strerror(errno));
662
663 /* unlink pty from session */
664 s->ttyfd = -1;
665}
666
Damien Miller79418552002-04-23 20:28:48 +1000667#ifdef USE_PAM
668void
669mm_start_pam(char *user)
670{
671 Buffer m;
672
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000673 debug3("%s entering", __func__);
Damien Miller4e448a32003-05-14 15:11:48 +1000674 if (!options.use_pam)
675 fatal("UsePAM=no, but ended up in %s anyway", __func__);
Damien Miller79418552002-04-23 20:28:48 +1000676
677 buffer_init(&m);
678 buffer_put_cstring(&m, user);
679
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000680 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_START, &m);
Damien Miller79418552002-04-23 20:28:48 +1000681
682 buffer_free(&m);
683}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000684
Damien Miller1f499fd2003-08-25 13:08:49 +1000685u_int
686mm_do_pam_account(void)
687{
688 Buffer m;
689 u_int ret;
690
691 debug3("%s entering", __func__);
692 if (!options.use_pam)
693 fatal("UsePAM=no, but ended up in %s anyway", __func__);
694
695 buffer_init(&m);
696 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_ACCOUNT, &m);
697
698 mm_request_receive_expect(pmonitor->m_recvfd,
699 MONITOR_ANS_PAM_ACCOUNT, &m);
700 ret = buffer_get_int(&m);
701
702 buffer_free(&m);
703
704 debug3("%s returning %d", __func__, ret);
705
706 return (ret);
707}
708
Damien Miller4f9f42a2003-05-10 19:28:02 +1000709void *
710mm_sshpam_init_ctx(Authctxt *authctxt)
711{
712 Buffer m;
713 int success;
714
715 debug3("%s", __func__);
716 buffer_init(&m);
717 buffer_put_cstring(&m, authctxt->user);
718 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_INIT_CTX, &m);
719 debug3("%s: waiting for MONITOR_ANS_PAM_INIT_CTX", __func__);
720 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_INIT_CTX, &m);
721 success = buffer_get_int(&m);
722 if (success == 0) {
723 debug3("%s: pam_init_ctx failed", __func__);
724 buffer_free(&m);
725 return (NULL);
726 }
727 buffer_free(&m);
728 return (authctxt);
729}
730
731int
732mm_sshpam_query(void *ctx, char **name, char **info,
733 u_int *num, char ***prompts, u_int **echo_on)
734{
735 Buffer m;
736 int i, ret;
737
738 debug3("%s", __func__);
739 buffer_init(&m);
740 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_QUERY, &m);
741 debug3("%s: waiting for MONITOR_ANS_PAM_QUERY", __func__);
742 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_QUERY, &m);
743 ret = buffer_get_int(&m);
744 debug3("%s: pam_query returned %d", __func__, ret);
745 *name = buffer_get_string(&m, NULL);
746 *info = buffer_get_string(&m, NULL);
747 *num = buffer_get_int(&m);
748 *prompts = xmalloc((*num + 1) * sizeof(char *));
749 *echo_on = xmalloc((*num + 1) * sizeof(u_int));
750 for (i = 0; i < *num; ++i) {
751 (*prompts)[i] = buffer_get_string(&m, NULL);
752 (*echo_on)[i] = buffer_get_int(&m);
753 }
754 buffer_free(&m);
755 return (ret);
756}
757
758int
759mm_sshpam_respond(void *ctx, u_int num, char **resp)
760{
761 Buffer m;
762 int i, ret;
763
764 debug3("%s", __func__);
765 buffer_init(&m);
766 buffer_put_int(&m, num);
767 for (i = 0; i < num; ++i)
768 buffer_put_cstring(&m, resp[i]);
769 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_RESPOND, &m);
770 debug3("%s: waiting for MONITOR_ANS_PAM_RESPOND", __func__);
771 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_RESPOND, &m);
772 ret = buffer_get_int(&m);
773 debug3("%s: pam_respond returned %d", __func__, ret);
774 buffer_free(&m);
775 return (ret);
776}
777
778void
779mm_sshpam_free_ctx(void *ctxtp)
780{
781 Buffer m;
782
783 debug3("%s", __func__);
784 buffer_init(&m);
785 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_FREE_CTX, &m);
786 debug3("%s: waiting for MONITOR_ANS_PAM_FREE_CTX", __func__);
787 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_FREE_CTX, &m);
788 buffer_free(&m);
789}
Damien Miller79418552002-04-23 20:28:48 +1000790#endif /* USE_PAM */
791
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000792/* Request process termination */
793
794void
795mm_terminate(void)
796{
797 Buffer m;
798
799 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000800 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_TERM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000801 buffer_free(&m);
802}
803
804int
805mm_ssh1_session_key(BIGNUM *num)
806{
807 int rsafail;
808 Buffer m;
809
810 buffer_init(&m);
811 buffer_put_bignum2(&m, num);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000812 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSKEY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000813
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000814 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SESSKEY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000815
816 rsafail = buffer_get_int(&m);
817 buffer_get_bignum2(&m, num);
818
819 buffer_free(&m);
820
821 return (rsafail);
822}
823
824static void
825mm_chall_setup(char **name, char **infotxt, u_int *numprompts,
826 char ***prompts, u_int **echo_on)
827{
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000828 *name = xstrdup("");
829 *infotxt = xstrdup("");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000830 *numprompts = 1;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000831 *prompts = xmalloc(*numprompts * sizeof(char *));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000832 *echo_on = xmalloc(*numprompts * sizeof(u_int));
833 (*echo_on)[0] = 0;
834}
835
836int
837mm_bsdauth_query(void *ctx, char **name, char **infotxt,
838 u_int *numprompts, char ***prompts, u_int **echo_on)
839{
840 Buffer m;
Damien Millerb7df3af2003-02-24 11:55:46 +1100841 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000842 char *challenge;
843
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000844 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000845
846 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000847 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHQUERY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000848
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000849 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_BSDAUTHQUERY,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000850 &m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100851 success = buffer_get_int(&m);
852 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000853 debug3("%s: no challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000854 buffer_free(&m);
855 return (-1);
856 }
857
858 /* Get the challenge, and format the response */
859 challenge = buffer_get_string(&m, NULL);
860 buffer_free(&m);
861
862 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
863 (*prompts)[0] = challenge;
864
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000865 debug3("%s: received challenge: %s", __func__, challenge);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000866
867 return (0);
868}
869
870int
871mm_bsdauth_respond(void *ctx, u_int numresponses, char **responses)
872{
873 Buffer m;
874 int authok;
875
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000876 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000877 if (numresponses != 1)
878 return (-1);
879
880 buffer_init(&m);
881 buffer_put_cstring(&m, responses[0]);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000882 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHRESPOND, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000883
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000884 mm_request_receive_expect(pmonitor->m_recvfd,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885 MONITOR_ANS_BSDAUTHRESPOND, &m);
886
887 authok = buffer_get_int(&m);
888 buffer_free(&m);
889
890 return ((authok == 0) ? -1 : 0);
891}
892
893int
894mm_skey_query(void *ctx, char **name, char **infotxt,
895 u_int *numprompts, char ***prompts, u_int **echo_on)
896{
897 Buffer m;
Damien Millerb7df3af2003-02-24 11:55:46 +1100898 int len;
899 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000900 char *p, *challenge;
901
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000902 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000903
904 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000905 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYQUERY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000906
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000907 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SKEYQUERY,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000908 &m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100909 success = buffer_get_int(&m);
910 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000911 debug3("%s: no challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000912 buffer_free(&m);
913 return (-1);
914 }
915
916 /* Get the challenge, and format the response */
917 challenge = buffer_get_string(&m, NULL);
918 buffer_free(&m);
919
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000920 debug3("%s: received challenge: %s", __func__, challenge);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000921
922 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
923
924 len = strlen(challenge) + strlen(SKEY_PROMPT) + 1;
925 p = xmalloc(len);
926 strlcpy(p, challenge, len);
927 strlcat(p, SKEY_PROMPT, len);
928 (*prompts)[0] = p;
929 xfree(challenge);
930
931 return (0);
932}
933
934int
935mm_skey_respond(void *ctx, u_int numresponses, char **responses)
936{
937 Buffer m;
938 int authok;
939
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000940 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000941 if (numresponses != 1)
942 return (-1);
943
944 buffer_init(&m);
945 buffer_put_cstring(&m, responses[0]);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000946 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYRESPOND, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000947
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000948 mm_request_receive_expect(pmonitor->m_recvfd,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000949 MONITOR_ANS_SKEYRESPOND, &m);
950
951 authok = buffer_get_int(&m);
952 buffer_free(&m);
953
954 return ((authok == 0) ? -1 : 0);
955}
956
957void
958mm_ssh1_session_id(u_char session_id[16])
959{
960 Buffer m;
961 int i;
962
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000963 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000964
965 buffer_init(&m);
966 for (i = 0; i < 16; i++)
967 buffer_put_char(&m, session_id[i]);
968
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000969 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSID, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000970 buffer_free(&m);
971}
972
973int
974mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
975{
976 Buffer m;
977 Key *key;
978 u_char *blob;
979 u_int blen;
Damien Miller06ebedf2003-02-24 12:03:38 +1100980 int allowed = 0, have_forced = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000981
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000982 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000983
984 buffer_init(&m);
985 buffer_put_bignum2(&m, client_n);
986
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000987 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSAKEYALLOWED, &m);
988 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSAKEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000989
990 allowed = buffer_get_int(&m);
991
Damien Miller06ebedf2003-02-24 12:03:38 +1100992 /* fake forced command */
993 auth_clear_options();
994 have_forced = buffer_get_int(&m);
995 forced_command = have_forced ? xstrdup("true") : NULL;
996
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000997 if (allowed && rkey != NULL) {
998 blob = buffer_get_string(&m, &blen);
999 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001000 fatal("%s: key_from_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001001 *rkey = key;
1002 xfree(blob);
1003 }
1004 mm_send_debug(&m);
1005 buffer_free(&m);
1006
1007 return (allowed);
1008}
1009
1010BIGNUM *
1011mm_auth_rsa_generate_challenge(Key *key)
1012{
1013 Buffer m;
1014 BIGNUM *challenge;
1015 u_char *blob;
1016 u_int blen;
1017
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001018 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001019
1020 if ((challenge = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001021 fatal("%s: BN_new failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001022
1023 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
1024 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001025 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001026 key->type = KEY_RSA1;
1027
1028 buffer_init(&m);
1029 buffer_put_string(&m, blob, blen);
1030 xfree(blob);
1031
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001032 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSACHALLENGE, &m);
1033 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSACHALLENGE, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001034
1035 buffer_get_bignum2(&m, challenge);
1036 buffer_free(&m);
1037
1038 return (challenge);
1039}
1040
1041int
1042mm_auth_rsa_verify_response(Key *key, BIGNUM *p, u_char response[16])
1043{
1044 Buffer m;
1045 u_char *blob;
1046 u_int blen;
1047 int success = 0;
1048
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001049 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001050
1051 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
1052 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +00001053 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001054 key->type = KEY_RSA1;
1055
1056 buffer_init(&m);
1057 buffer_put_string(&m, blob, blen);
1058 buffer_put_string(&m, response, 16);
1059 xfree(blob);
1060
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001061 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSARESPONSE, &m);
1062 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSARESPONSE, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001063
1064 success = buffer_get_int(&m);
1065 buffer_free(&m);
1066
1067 return (success);
1068}
Damien Miller25162f22002-09-12 09:47:29 +10001069
1070#ifdef KRB5
1071int
1072mm_auth_krb5(void *ctx, void *argp, char **userp, void *resp)
1073{
1074 krb5_data *tkt, *reply;
1075 Buffer m;
1076 int success;
1077
1078 debug3("%s entering", __func__);
1079 tkt = (krb5_data *) argp;
1080 reply = (krb5_data *) resp;
1081
1082 buffer_init(&m);
1083 buffer_put_string(&m, tkt->data, tkt->length);
1084
1085 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB5, &m);
1086 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB5, &m);
1087
1088 success = buffer_get_int(&m);
1089 if (success) {
1090 u_int len;
1091
1092 *userp = buffer_get_string(&m, NULL);
1093 reply->data = buffer_get_string(&m, &len);
1094 reply->length = len;
1095 } else {
1096 memset(reply, 0, sizeof(*reply));
1097 *userp = NULL;
1098 }
1099
1100 buffer_free(&m);
1101 return (success);
1102}
1103#endif