blob: 183ae8d0ef364d5539c332d698f9915c9ce8706d [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"
Damien Millerb1ecd9c2003-04-09 20:51:24 +100028RCSID("$OpenBSD: monitor_wrap.c,v 1.26 2003/04/07 08:29:57 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"
50
51#include "auth.h"
52#include "channels.h"
53#include "session.h"
54
55/* Imports */
56extern int compat20;
57extern Newkeys *newkeys[];
58extern z_stream incoming_stream;
59extern z_stream outgoing_stream;
Ben Lindstrom7339b2a2002-05-15 16:25:01 +000060extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000061extern Buffer input, output;
62
63void
64mm_request_send(int socket, enum monitor_reqtype type, Buffer *m)
65{
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000066 u_int mlen = buffer_len(m);
Ben Lindstromb1bdc5a2002-07-04 00:09:26 +000067 u_char buf[5];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000068
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000069 debug3("%s entering: type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070
71 PUT_32BIT(buf, mlen + 1);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000072 buf[4] = (u_char) type; /* 1st byte of payload is mesg-type */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000073 if (atomicio(write, socket, buf, sizeof(buf)) != sizeof(buf))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000074 fatal("%s: write", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000075 if (atomicio(write, socket, buffer_ptr(m), mlen) != mlen)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000076 fatal("%s: write", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000077}
78
79void
80mm_request_receive(int socket, Buffer *m)
81{
82 u_char buf[4];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000083 u_int msg_len;
Ben Lindstromb1bdc5a2002-07-04 00:09:26 +000084 ssize_t res;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000085
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000086 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087
88 res = atomicio(read, socket, buf, sizeof(buf));
89 if (res != sizeof(buf)) {
90 if (res == 0)
91 fatal_cleanup();
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000092 fatal("%s: read: %ld", __func__, (long)res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000093 }
94 msg_len = GET_32BIT(buf);
95 if (msg_len > 256 * 1024)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000096 fatal("%s: read: bad msg_len %d", __func__, msg_len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000097 buffer_clear(m);
98 buffer_append_space(m, msg_len);
99 res = atomicio(read, socket, buffer_ptr(m), msg_len);
100 if (res != msg_len)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000101 fatal("%s: read: %ld != msg_len", __func__, (long)res);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000102}
103
104void
105mm_request_receive_expect(int socket, enum monitor_reqtype type, Buffer *m)
106{
107 u_char rtype;
108
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000109 debug3("%s entering: type %d", __func__, type);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000110
111 mm_request_receive(socket, m);
112 rtype = buffer_get_char(m);
113 if (rtype != type)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000114 fatal("%s: read: rtype %d != type %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115 rtype, type);
116}
117
118DH *
119mm_choose_dh(int min, int nbits, int max)
120{
121 BIGNUM *p, *g;
122 int success = 0;
123 Buffer m;
124
125 buffer_init(&m);
126 buffer_put_int(&m, min);
127 buffer_put_int(&m, nbits);
128 buffer_put_int(&m, max);
129
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000130 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_MODULI, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000131
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000132 debug3("%s: waiting for MONITOR_ANS_MODULI", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000133 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_MODULI, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000134
135 success = buffer_get_char(&m);
136 if (success == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000137 fatal("%s: MONITOR_ANS_MODULI failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000138
139 if ((p = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000140 fatal("%s: BN_new failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000141 if ((g = 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 buffer_get_bignum2(&m, p);
144 buffer_get_bignum2(&m, g);
145
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000146 debug3("%s: remaining %d", __func__, buffer_len(&m));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000147 buffer_free(&m);
148
149 return (dh_new_group(g, p));
150}
151
152int
153mm_key_sign(Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen)
154{
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000155 Kex *kex = *pmonitor->m_pkex;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000156 Buffer m;
157
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000158 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000159
160 buffer_init(&m);
161 buffer_put_int(&m, kex->host_key_index(key));
162 buffer_put_string(&m, data, datalen);
163
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000164 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SIGN, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000165
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000166 debug3("%s: waiting for MONITOR_ANS_SIGN", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000167 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SIGN, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000168 *sigp = buffer_get_string(&m, lenp);
169 buffer_free(&m);
170
171 return (0);
172}
173
174struct passwd *
175mm_getpwnamallow(const char *login)
176{
177 Buffer m;
178 struct passwd *pw;
179 u_int pwlen;
180
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000181 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000182
183 buffer_init(&m);
184 buffer_put_cstring(&m, login);
185
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000186 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PWNAM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000187
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000188 debug3("%s: waiting for MONITOR_ANS_PWNAM", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000189 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PWNAM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000190
191 if (buffer_get_char(&m) == 0) {
192 buffer_free(&m);
193 return (NULL);
194 }
195 pw = buffer_get_string(&m, &pwlen);
196 if (pwlen != sizeof(struct passwd))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000197 fatal("%s: struct passwd size mismatch", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000198 pw->pw_name = buffer_get_string(&m, NULL);
199 pw->pw_passwd = buffer_get_string(&m, NULL);
200 pw->pw_gecos = buffer_get_string(&m, NULL);
Kevin Steves7e147602002-03-22 18:07:17 +0000201#ifdef HAVE_PW_CLASS_IN_PASSWD
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000202 pw->pw_class = buffer_get_string(&m, NULL);
Kevin Steves7e147602002-03-22 18:07:17 +0000203#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204 pw->pw_dir = buffer_get_string(&m, NULL);
205 pw->pw_shell = buffer_get_string(&m, NULL);
206 buffer_free(&m);
207
208 return (pw);
209}
210
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000211char *mm_auth2_read_banner(void)
Damien Miller5ad9fd92002-05-13 11:07:41 +1000212{
213 Buffer m;
214 char *banner;
215
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000216 debug3("%s entering", __func__);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000217
218 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000219 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTH2_READ_BANNER, &m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000220 buffer_clear(&m);
221
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000222 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTH2_READ_BANNER, &m);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000223 banner = buffer_get_string(&m, NULL);
224 buffer_free(&m);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000225
Damien Miller5ad9fd92002-05-13 11:07:41 +1000226 return (banner);
227}
228
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000229/* Inform the privileged process about service and style */
230
231void
232mm_inform_authserv(char *service, char *style)
233{
234 Buffer m;
235
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000236 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000237
238 buffer_init(&m);
239 buffer_put_cstring(&m, service);
240 buffer_put_cstring(&m, style ? style : "");
241
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000242 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243
244 buffer_free(&m);
245}
246
247/* Do the password authentication */
248int
249mm_auth_password(Authctxt *authctxt, char *password)
250{
251 Buffer m;
252 int authenticated = 0;
253
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000254 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000255
256 buffer_init(&m);
257 buffer_put_cstring(&m, password);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000258 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHPASSWORD, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000259
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000260 debug3("%s: waiting for MONITOR_ANS_AUTHPASSWORD", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000261 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTHPASSWORD, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000262
263 authenticated = buffer_get_int(&m);
264
265 buffer_free(&m);
266
267 debug3("%s: user %sauthenticated",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000268 __func__, authenticated ? "" : "not ");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000269 return (authenticated);
270}
271
272int
273mm_user_key_allowed(struct passwd *pw, Key *key)
274{
275 return (mm_key_allowed(MM_USERKEY, NULL, NULL, key));
276}
277
278int
279mm_hostbased_key_allowed(struct passwd *pw, char *user, char *host,
280 Key *key)
281{
282 return (mm_key_allowed(MM_HOSTKEY, user, host, key));
283}
284
285int
286mm_auth_rhosts_rsa_key_allowed(struct passwd *pw, char *user,
287 char *host, Key *key)
288{
289 int ret;
290
291 key->type = KEY_RSA; /* XXX hack for key_to_blob */
292 ret = mm_key_allowed(MM_RSAHOSTKEY, user, host, key);
293 key->type = KEY_RSA1;
294 return (ret);
295}
296
297static void
298mm_send_debug(Buffer *m)
299{
300 char *msg;
301
302 while (buffer_len(m)) {
303 msg = buffer_get_string(m, NULL);
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000304 debug3("%s: Sending debug: %s", __func__, msg);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000305 packet_send_debug("%s", msg);
306 xfree(msg);
307 }
308}
309
310int
311mm_key_allowed(enum mm_keytype type, char *user, char *host, Key *key)
312{
313 Buffer m;
314 u_char *blob;
315 u_int len;
Damien Miller06ebedf2003-02-24 12:03:38 +1100316 int allowed = 0, have_forced = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000317
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000318 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000319
320 /* Convert the key to a blob and the pass it over */
321 if (!key_to_blob(key, &blob, &len))
322 return (0);
323
324 buffer_init(&m);
325 buffer_put_int(&m, type);
326 buffer_put_cstring(&m, user ? user : "");
327 buffer_put_cstring(&m, host ? host : "");
328 buffer_put_string(&m, blob, len);
329 xfree(blob);
330
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000331 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000332
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000333 debug3("%s: waiting for MONITOR_ANS_KEYALLOWED", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000334 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000335
336 allowed = buffer_get_int(&m);
337
Damien Miller06ebedf2003-02-24 12:03:38 +1100338 /* fake forced command */
339 auth_clear_options();
340 have_forced = buffer_get_int(&m);
341 forced_command = have_forced ? xstrdup("true") : NULL;
342
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000343 /* Send potential debug messages */
344 mm_send_debug(&m);
345
346 buffer_free(&m);
347
348 return (allowed);
349}
350
351/*
352 * This key verify needs to send the key type along, because the
353 * privileged parent makes the decision if the key is allowed
354 * for authentication.
355 */
356
357int
358mm_key_verify(Key *key, u_char *sig, u_int siglen, u_char *data, u_int datalen)
359{
360 Buffer m;
361 u_char *blob;
362 u_int len;
363 int verified = 0;
364
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000365 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000366
367 /* Convert the key to a blob and the pass it over */
368 if (!key_to_blob(key, &blob, &len))
369 return (0);
370
371 buffer_init(&m);
372 buffer_put_string(&m, blob, len);
373 buffer_put_string(&m, sig, siglen);
374 buffer_put_string(&m, data, datalen);
375 xfree(blob);
376
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000377 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000378
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000379 debug3("%s: waiting for MONITOR_ANS_KEYVERIFY", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000380 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYVERIFY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000381
382 verified = buffer_get_int(&m);
383
384 buffer_free(&m);
385
386 return (verified);
387}
388
389/* Export key state after authentication */
390Newkeys *
391mm_newkeys_from_blob(u_char *blob, int blen)
392{
393 Buffer b;
394 u_int len;
395 Newkeys *newkey = NULL;
396 Enc *enc;
397 Mac *mac;
398 Comp *comp;
399
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000400 debug3("%s: %p(%d)", __func__, blob, blen);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000401#ifdef DEBUG_PK
402 dump_base64(stderr, blob, blen);
403#endif
404 buffer_init(&b);
405 buffer_append(&b, blob, blen);
406
407 newkey = xmalloc(sizeof(*newkey));
408 enc = &newkey->enc;
409 mac = &newkey->mac;
410 comp = &newkey->comp;
411
412 /* Enc structure */
413 enc->name = buffer_get_string(&b, NULL);
414 buffer_get(&b, &enc->cipher, sizeof(enc->cipher));
415 enc->enabled = buffer_get_int(&b);
416 enc->block_size = buffer_get_int(&b);
417 enc->key = buffer_get_string(&b, &enc->key_len);
418 enc->iv = buffer_get_string(&b, &len);
419 if (len != enc->block_size)
Ben Lindstrom08512492002-06-27 00:23:02 +0000420 fatal("%s: bad ivlen: expected %u != %u", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000421 enc->block_size, len);
422
423 if (enc->name == NULL || cipher_by_name(enc->name) != enc->cipher)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000424 fatal("%s: bad cipher name %s or pointer %p", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000425 enc->name, enc->cipher);
426
427 /* Mac structure */
428 mac->name = buffer_get_string(&b, NULL);
429 if (mac->name == NULL || mac_init(mac, mac->name) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000430 fatal("%s: can not init mac %s", __func__, mac->name);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000431 mac->enabled = buffer_get_int(&b);
432 mac->key = buffer_get_string(&b, &len);
433 if (len > mac->key_len)
Ben Lindstrom08512492002-06-27 00:23:02 +0000434 fatal("%s: bad mac key length: %u > %d", __func__, len,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000435 mac->key_len);
436 mac->key_len = len;
437
438 /* Comp structure */
439 comp->type = buffer_get_int(&b);
440 comp->enabled = buffer_get_int(&b);
441 comp->name = buffer_get_string(&b, NULL);
442
443 len = buffer_len(&b);
444 if (len != 0)
Ben Lindstrom08512492002-06-27 00:23:02 +0000445 error("newkeys_from_blob: remaining bytes in blob %u", len);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000446 buffer_free(&b);
447 return (newkey);
448}
449
450int
451mm_newkeys_to_blob(int mode, u_char **blobp, u_int *lenp)
452{
453 Buffer b;
454 int len;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000455 Enc *enc;
456 Mac *mac;
457 Comp *comp;
458 Newkeys *newkey = newkeys[mode];
459
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000460 debug3("%s: converting %p", __func__, newkey);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000461
462 if (newkey == NULL) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000463 error("%s: newkey == NULL", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000464 return 0;
465 }
466 enc = &newkey->enc;
467 mac = &newkey->mac;
468 comp = &newkey->comp;
469
470 buffer_init(&b);
471 /* Enc structure */
472 buffer_put_cstring(&b, enc->name);
473 /* The cipher struct is constant and shared, you export pointer */
474 buffer_append(&b, &enc->cipher, sizeof(enc->cipher));
475 buffer_put_int(&b, enc->enabled);
476 buffer_put_int(&b, enc->block_size);
477 buffer_put_string(&b, enc->key, enc->key_len);
478 packet_get_keyiv(mode, enc->iv, enc->block_size);
479 buffer_put_string(&b, enc->iv, enc->block_size);
480
481 /* Mac structure */
482 buffer_put_cstring(&b, mac->name);
483 buffer_put_int(&b, mac->enabled);
484 buffer_put_string(&b, mac->key, mac->key_len);
485
486 /* Comp structure */
487 buffer_put_int(&b, comp->type);
488 buffer_put_int(&b, comp->enabled);
489 buffer_put_cstring(&b, comp->name);
490
491 len = buffer_len(&b);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000492 if (lenp != NULL)
493 *lenp = len;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +0000494 if (blobp != NULL) {
495 *blobp = xmalloc(len);
496 memcpy(*blobp, buffer_ptr(&b), len);
497 }
498 memset(buffer_ptr(&b), 0, len);
499 buffer_free(&b);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000500 return len;
501}
502
503static void
504mm_send_kex(Buffer *m, Kex *kex)
505{
506 buffer_put_string(m, kex->session_id, kex->session_id_len);
507 buffer_put_int(m, kex->we_need);
508 buffer_put_int(m, kex->hostkey_type);
509 buffer_put_int(m, kex->kex_type);
510 buffer_put_string(m, buffer_ptr(&kex->my), buffer_len(&kex->my));
511 buffer_put_string(m, buffer_ptr(&kex->peer), buffer_len(&kex->peer));
512 buffer_put_int(m, kex->flags);
513 buffer_put_cstring(m, kex->client_version_string);
514 buffer_put_cstring(m, kex->server_version_string);
515}
516
517void
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000518mm_send_keystate(struct monitor *pmonitor)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000519{
520 Buffer m;
521 u_char *blob, *p;
522 u_int bloblen, plen;
Damien Millera5539d22003-04-09 20:50:06 +1000523 u_int32_t seqnr, packets;
524 u_int64_t blocks;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000525
526 buffer_init(&m);
527
528 if (!compat20) {
529 u_char iv[24];
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000530 u_char *key;
531 u_int ivlen, keylen;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000532
533 buffer_put_int(&m, packet_get_protocol_flags());
534
535 buffer_put_int(&m, packet_get_ssh1_cipher());
536
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000537 debug3("%s: Sending ssh1 KEY+IV", __func__);
538 keylen = packet_get_encryption_key(NULL);
539 key = xmalloc(keylen+1); /* add 1 if keylen == 0 */
540 keylen = packet_get_encryption_key(key);
541 buffer_put_string(&m, key, keylen);
542 memset(key, 0, keylen);
543 xfree(key);
544
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000545 ivlen = packet_get_keyiv_len(MODE_OUT);
546 packet_get_keyiv(MODE_OUT, iv, ivlen);
547 buffer_put_string(&m, iv, ivlen);
548 ivlen = packet_get_keyiv_len(MODE_OUT);
549 packet_get_keyiv(MODE_IN, iv, ivlen);
550 buffer_put_string(&m, iv, ivlen);
551 goto skip;
552 } else {
553 /* Kex for rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000554 mm_send_kex(&m, *pmonitor->m_pkex);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000555 }
556
557 debug3("%s: Sending new keys: %p %p",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000558 __func__, newkeys[MODE_OUT], newkeys[MODE_IN]);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000559
560 /* Keys from Kex */
561 if (!mm_newkeys_to_blob(MODE_OUT, &blob, &bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000562 fatal("%s: conversion of newkeys failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000563
564 buffer_put_string(&m, blob, bloblen);
565 xfree(blob);
566
567 if (!mm_newkeys_to_blob(MODE_IN, &blob, &bloblen))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000568 fatal("%s: conversion of newkeys failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000569
570 buffer_put_string(&m, blob, bloblen);
571 xfree(blob);
572
Damien Millera5539d22003-04-09 20:50:06 +1000573 packet_get_state(MODE_OUT, &seqnr, &blocks, &packets);
574 buffer_put_int(&m, seqnr);
575 buffer_put_int64(&m, blocks);
576 buffer_put_int(&m, packets);
Damien Millerb1ecd9c2003-04-09 20:51:24 +1000577 packet_get_state(MODE_IN, &seqnr, &blocks, &packets);
Damien Millera5539d22003-04-09 20:50:06 +1000578 buffer_put_int(&m, seqnr);
579 buffer_put_int64(&m, blocks);
580 buffer_put_int(&m, packets);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000581
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000582 debug3("%s: New keys have been sent", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000583 skip:
584 /* More key context */
585 plen = packet_get_keycontext(MODE_OUT, NULL);
586 p = xmalloc(plen+1);
587 packet_get_keycontext(MODE_OUT, p);
588 buffer_put_string(&m, p, plen);
589 xfree(p);
590
591 plen = packet_get_keycontext(MODE_IN, NULL);
592 p = xmalloc(plen+1);
593 packet_get_keycontext(MODE_IN, p);
594 buffer_put_string(&m, p, plen);
595 xfree(p);
596
597 /* Compression state */
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000598 debug3("%s: Sending compression state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000599 buffer_put_string(&m, &outgoing_stream, sizeof(outgoing_stream));
600 buffer_put_string(&m, &incoming_stream, sizeof(incoming_stream));
601
602 /* Network I/O buffers */
603 buffer_put_string(&m, buffer_ptr(&input), buffer_len(&input));
604 buffer_put_string(&m, buffer_ptr(&output), buffer_len(&output));
605
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000606 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYEXPORT, &m);
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000607 debug3("%s: Finished sending state", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000608
609 buffer_free(&m);
610}
611
612int
613mm_pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
614{
615 Buffer m;
Damien Millera10f5612002-09-12 09:49:15 +1000616 char *p;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000617 int success = 0;
618
619 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000620 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000621
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000622 debug3("%s: waiting for MONITOR_ANS_PTY", __func__);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000623 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PTY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000624
625 success = buffer_get_int(&m);
626 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000627 debug3("%s: pty alloc failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000628 buffer_free(&m);
629 return (0);
630 }
631 p = buffer_get_string(&m, NULL);
632 buffer_free(&m);
633
634 strlcpy(namebuf, p, namebuflen); /* Possible truncation */
635 xfree(p);
636
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000637 *ptyfd = mm_receive_fd(pmonitor->m_recvfd);
638 *ttyfd = mm_receive_fd(pmonitor->m_recvfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000639
640 /* Success */
641 return (1);
642}
643
644void
645mm_session_pty_cleanup2(void *session)
646{
647 Session *s = session;
648 Buffer m;
649
650 if (s->ttyfd == -1)
651 return;
652 buffer_init(&m);
653 buffer_put_cstring(&m, s->tty);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000654 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTYCLEANUP, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000655 buffer_free(&m);
656
657 /* closed dup'ed master */
658 if (close(s->ptymaster) < 0)
659 error("close(s->ptymaster): %s", strerror(errno));
660
661 /* unlink pty from session */
662 s->ttyfd = -1;
663}
664
Damien Miller79418552002-04-23 20:28:48 +1000665#ifdef USE_PAM
666void
667mm_start_pam(char *user)
668{
669 Buffer m;
670
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000671 debug3("%s entering", __func__);
Damien Miller79418552002-04-23 20:28:48 +1000672
673 buffer_init(&m);
674 buffer_put_cstring(&m, user);
675
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000676 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_START, &m);
Damien Miller79418552002-04-23 20:28:48 +1000677
678 buffer_free(&m);
679}
680#endif /* USE_PAM */
681
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000682/* Request process termination */
683
684void
685mm_terminate(void)
686{
687 Buffer m;
688
689 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000690 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_TERM, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000691 buffer_free(&m);
692}
693
694int
695mm_ssh1_session_key(BIGNUM *num)
696{
697 int rsafail;
698 Buffer m;
699
700 buffer_init(&m);
701 buffer_put_bignum2(&m, num);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000702 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSKEY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000703
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000704 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SESSKEY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000705
706 rsafail = buffer_get_int(&m);
707 buffer_get_bignum2(&m, num);
708
709 buffer_free(&m);
710
711 return (rsafail);
712}
713
714static void
715mm_chall_setup(char **name, char **infotxt, u_int *numprompts,
716 char ***prompts, u_int **echo_on)
717{
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000718 *name = xstrdup("");
719 *infotxt = xstrdup("");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000720 *numprompts = 1;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000721 *prompts = xmalloc(*numprompts * sizeof(char *));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000722 *echo_on = xmalloc(*numprompts * sizeof(u_int));
723 (*echo_on)[0] = 0;
724}
725
726int
727mm_bsdauth_query(void *ctx, char **name, char **infotxt,
728 u_int *numprompts, char ***prompts, u_int **echo_on)
729{
730 Buffer m;
Damien Millerb7df3af2003-02-24 11:55:46 +1100731 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000732 char *challenge;
733
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000734 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000735
736 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000737 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHQUERY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000738
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000739 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_BSDAUTHQUERY,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000740 &m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100741 success = buffer_get_int(&m);
742 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000743 debug3("%s: no challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000744 buffer_free(&m);
745 return (-1);
746 }
747
748 /* Get the challenge, and format the response */
749 challenge = buffer_get_string(&m, NULL);
750 buffer_free(&m);
751
752 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
753 (*prompts)[0] = challenge;
754
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000755 debug3("%s: received challenge: %s", __func__, challenge);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756
757 return (0);
758}
759
760int
761mm_bsdauth_respond(void *ctx, u_int numresponses, char **responses)
762{
763 Buffer m;
764 int authok;
765
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000766 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000767 if (numresponses != 1)
768 return (-1);
769
770 buffer_init(&m);
771 buffer_put_cstring(&m, responses[0]);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000772 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHRESPOND, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000773
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000774 mm_request_receive_expect(pmonitor->m_recvfd,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000775 MONITOR_ANS_BSDAUTHRESPOND, &m);
776
777 authok = buffer_get_int(&m);
778 buffer_free(&m);
779
780 return ((authok == 0) ? -1 : 0);
781}
782
783int
784mm_skey_query(void *ctx, char **name, char **infotxt,
785 u_int *numprompts, char ***prompts, u_int **echo_on)
786{
787 Buffer m;
Damien Millerb7df3af2003-02-24 11:55:46 +1100788 int len;
789 u_int success;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000790 char *p, *challenge;
791
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000792 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000793
794 buffer_init(&m);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000795 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYQUERY, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000796
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000797 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SKEYQUERY,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000798 &m);
Damien Millerb7df3af2003-02-24 11:55:46 +1100799 success = buffer_get_int(&m);
800 if (success == 0) {
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000801 debug3("%s: no challenge", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000802 buffer_free(&m);
803 return (-1);
804 }
805
806 /* Get the challenge, and format the response */
807 challenge = buffer_get_string(&m, NULL);
808 buffer_free(&m);
809
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000810 debug3("%s: received challenge: %s", __func__, challenge);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000811
812 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
813
814 len = strlen(challenge) + strlen(SKEY_PROMPT) + 1;
815 p = xmalloc(len);
816 strlcpy(p, challenge, len);
817 strlcat(p, SKEY_PROMPT, len);
818 (*prompts)[0] = p;
819 xfree(challenge);
820
821 return (0);
822}
823
824int
825mm_skey_respond(void *ctx, u_int numresponses, char **responses)
826{
827 Buffer m;
828 int authok;
829
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000830 debug3("%s: entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000831 if (numresponses != 1)
832 return (-1);
833
834 buffer_init(&m);
835 buffer_put_cstring(&m, responses[0]);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000836 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYRESPOND, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000837
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000838 mm_request_receive_expect(pmonitor->m_recvfd,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000839 MONITOR_ANS_SKEYRESPOND, &m);
840
841 authok = buffer_get_int(&m);
842 buffer_free(&m);
843
844 return ((authok == 0) ? -1 : 0);
845}
846
847void
848mm_ssh1_session_id(u_char session_id[16])
849{
850 Buffer m;
851 int i;
852
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000853 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000854
855 buffer_init(&m);
856 for (i = 0; i < 16; i++)
857 buffer_put_char(&m, session_id[i]);
858
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000859 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSID, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000860 buffer_free(&m);
861}
862
863int
864mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
865{
866 Buffer m;
867 Key *key;
868 u_char *blob;
869 u_int blen;
Damien Miller06ebedf2003-02-24 12:03:38 +1100870 int allowed = 0, have_forced = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000871
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000872 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000873
874 buffer_init(&m);
875 buffer_put_bignum2(&m, client_n);
876
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000877 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSAKEYALLOWED, &m);
878 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSAKEYALLOWED, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000879
880 allowed = buffer_get_int(&m);
881
Damien Miller06ebedf2003-02-24 12:03:38 +1100882 /* fake forced command */
883 auth_clear_options();
884 have_forced = buffer_get_int(&m);
885 forced_command = have_forced ? xstrdup("true") : NULL;
886
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000887 if (allowed && rkey != NULL) {
888 blob = buffer_get_string(&m, &blen);
889 if ((key = key_from_blob(blob, blen)) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000890 fatal("%s: key_from_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000891 *rkey = key;
892 xfree(blob);
893 }
894 mm_send_debug(&m);
895 buffer_free(&m);
896
897 return (allowed);
898}
899
900BIGNUM *
901mm_auth_rsa_generate_challenge(Key *key)
902{
903 Buffer m;
904 BIGNUM *challenge;
905 u_char *blob;
906 u_int blen;
907
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000908 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000909
910 if ((challenge = BN_new()) == NULL)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000911 fatal("%s: BN_new failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000912
913 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
914 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000915 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000916 key->type = KEY_RSA1;
917
918 buffer_init(&m);
919 buffer_put_string(&m, blob, blen);
920 xfree(blob);
921
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000922 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSACHALLENGE, &m);
923 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSACHALLENGE, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000924
925 buffer_get_bignum2(&m, challenge);
926 buffer_free(&m);
927
928 return (challenge);
929}
930
931int
932mm_auth_rsa_verify_response(Key *key, BIGNUM *p, u_char response[16])
933{
934 Buffer m;
935 u_char *blob;
936 u_int blen;
937 int success = 0;
938
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000939 debug3("%s entering", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000940
941 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
942 if (key_to_blob(key, &blob, &blen) == 0)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000943 fatal("%s: key_to_blob failed", __func__);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000944 key->type = KEY_RSA1;
945
946 buffer_init(&m);
947 buffer_put_string(&m, blob, blen);
948 buffer_put_string(&m, response, 16);
949 xfree(blob);
950
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000951 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSARESPONSE, &m);
952 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSARESPONSE, &m);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000953
954 success = buffer_get_int(&m);
955 buffer_free(&m);
956
957 return (success);
958}
Damien Miller25162f22002-09-12 09:47:29 +1000959
Damien Millerd94e5492002-09-27 13:25:58 +1000960#ifdef KRB4
961int
962mm_auth_krb4(Authctxt *authctxt, void *_auth, char **client, void *_reply)
963{
964 KTEXT auth, reply;
965 Buffer m;
966 u_int rlen;
967 int success = 0;
968 char *p;
969
970 debug3("%s entering", __func__);
971 auth = _auth;
972 reply = _reply;
973
974 buffer_init(&m);
975 buffer_put_string(&m, auth->dat, auth->length);
976
977 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB4, &m);
978 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB4, &m);
979
980 success = buffer_get_int(&m);
981 if (success) {
982 *client = buffer_get_string(&m, NULL);
983 p = buffer_get_string(&m, &rlen);
984 if (rlen >= MAX_KTXT_LEN)
985 fatal("%s: reply from monitor too large", __func__);
986 reply->length = rlen;
987 memcpy(reply->dat, p, rlen);
988 memset(p, 0, rlen);
989 xfree(p);
990 }
991 buffer_free(&m);
Ben Lindstrom93576d92002-12-23 02:06:19 +0000992 return (success);
Damien Millerd94e5492002-09-27 13:25:58 +1000993}
994#endif
995
Damien Miller25162f22002-09-12 09:47:29 +1000996#ifdef KRB5
997int
998mm_auth_krb5(void *ctx, void *argp, char **userp, void *resp)
999{
1000 krb5_data *tkt, *reply;
1001 Buffer m;
1002 int success;
1003
1004 debug3("%s entering", __func__);
1005 tkt = (krb5_data *) argp;
1006 reply = (krb5_data *) resp;
1007
1008 buffer_init(&m);
1009 buffer_put_string(&m, tkt->data, tkt->length);
1010
1011 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB5, &m);
1012 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB5, &m);
1013
1014 success = buffer_get_int(&m);
1015 if (success) {
1016 u_int len;
1017
1018 *userp = buffer_get_string(&m, NULL);
1019 reply->data = buffer_get_string(&m, &len);
1020 reply->length = len;
1021 } else {
1022 memset(reply, 0, sizeof(*reply));
1023 *userp = NULL;
1024 }
1025
1026 buffer_free(&m);
1027 return (success);
1028}
1029#endif