]> andersk Git - openssh.git/blob - monitor_wrap.c
- deraadt@cvs.openbsd.org 2003/06/28 16:23:06
[openssh.git] / monitor_wrap.c
1 /*
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"
28 RCSID("$OpenBSD: monitor_wrap.c,v 1.27 2003/06/28 16:23:06 deraadt Exp $");
29
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"
37 #include "auth-options.h"
38 #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 #include "servconf.h"
51
52 #include "auth.h"
53 #include "channels.h"
54 #include "session.h"
55
56 /* Imports */
57 extern int compat20;
58 extern Newkeys *newkeys[];
59 extern z_stream incoming_stream;
60 extern z_stream outgoing_stream;
61 extern struct monitor *pmonitor;
62 extern Buffer input, output;
63 extern ServerOptions options;
64
65 void
66 mm_request_send(int socket, enum monitor_reqtype type, Buffer *m)
67 {
68         u_int mlen = buffer_len(m);
69         u_char buf[5];
70
71         debug3("%s entering: type %d", __func__, type);
72
73         PUT_32BIT(buf, mlen + 1);
74         buf[4] = (u_char) type;         /* 1st byte of payload is mesg-type */
75         if (atomicio(vwrite, socket, buf, sizeof(buf)) != sizeof(buf))
76                 fatal("%s: write", __func__);
77         if (atomicio(vwrite, socket, buffer_ptr(m), mlen) != mlen)
78                 fatal("%s: write", __func__);
79 }
80
81 void
82 mm_request_receive(int socket, Buffer *m)
83 {
84         u_char buf[4];
85         u_int msg_len;
86         ssize_t res;
87
88         debug3("%s entering", __func__);
89
90         res = atomicio(read, socket, buf, sizeof(buf));
91         if (res != sizeof(buf)) {
92                 if (res == 0)
93                         fatal_cleanup();
94                 fatal("%s: read: %ld", __func__, (long)res);
95         }
96         msg_len = GET_32BIT(buf);
97         if (msg_len > 256 * 1024)
98                 fatal("%s: read: bad msg_len %d", __func__, msg_len);
99         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)
103                 fatal("%s: read: %ld != msg_len", __func__, (long)res);
104 }
105
106 void
107 mm_request_receive_expect(int socket, enum monitor_reqtype type, Buffer *m)
108 {
109         u_char rtype;
110
111         debug3("%s entering: type %d", __func__, type);
112
113         mm_request_receive(socket, m);
114         rtype = buffer_get_char(m);
115         if (rtype != type)
116                 fatal("%s: read: rtype %d != type %d", __func__,
117                     rtype, type);
118 }
119
120 DH *
121 mm_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
132         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_MODULI, &m);
133
134         debug3("%s: waiting for MONITOR_ANS_MODULI", __func__);
135         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_MODULI, &m);
136
137         success = buffer_get_char(&m);
138         if (success == 0)
139                 fatal("%s: MONITOR_ANS_MODULI failed", __func__);
140
141         if ((p = BN_new()) == NULL)
142                 fatal("%s: BN_new failed", __func__);
143         if ((g = BN_new()) == NULL)
144                 fatal("%s: BN_new failed", __func__);
145         buffer_get_bignum2(&m, p);
146         buffer_get_bignum2(&m, g);
147
148         debug3("%s: remaining %d", __func__, buffer_len(&m));
149         buffer_free(&m);
150
151         return (dh_new_group(g, p));
152 }
153
154 int
155 mm_key_sign(Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen)
156 {
157         Kex *kex = *pmonitor->m_pkex;
158         Buffer m;
159
160         debug3("%s entering", __func__);
161
162         buffer_init(&m);
163         buffer_put_int(&m, kex->host_key_index(key));
164         buffer_put_string(&m, data, datalen);
165
166         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SIGN, &m);
167
168         debug3("%s: waiting for MONITOR_ANS_SIGN", __func__);
169         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SIGN, &m);
170         *sigp  = buffer_get_string(&m, lenp);
171         buffer_free(&m);
172
173         return (0);
174 }
175
176 struct passwd *
177 mm_getpwnamallow(const char *login)
178 {
179         Buffer m;
180         struct passwd *pw;
181         u_int pwlen;
182
183         debug3("%s entering", __func__);
184
185         buffer_init(&m);
186         buffer_put_cstring(&m, login);
187
188         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PWNAM, &m);
189
190         debug3("%s: waiting for MONITOR_ANS_PWNAM", __func__);
191         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PWNAM, &m);
192
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))
199                 fatal("%s: struct passwd size mismatch", __func__);
200         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);
203 #ifdef HAVE_PW_CLASS_IN_PASSWD
204         pw->pw_class = buffer_get_string(&m, NULL);
205 #endif
206         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
213 char *mm_auth2_read_banner(void)
214 {
215         Buffer m;
216         char *banner;
217
218         debug3("%s entering", __func__);
219
220         buffer_init(&m);
221         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTH2_READ_BANNER, &m);
222         buffer_clear(&m);
223
224         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTH2_READ_BANNER, &m);
225         banner = buffer_get_string(&m, NULL);
226         buffer_free(&m);
227
228         return (banner);
229 }
230
231 /* Inform the privileged process about service and style */
232
233 void
234 mm_inform_authserv(char *service, char *style)
235 {
236         Buffer m;
237
238         debug3("%s entering", __func__);
239
240         buffer_init(&m);
241         buffer_put_cstring(&m, service);
242         buffer_put_cstring(&m, style ? style : "");
243
244         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m);
245
246         buffer_free(&m);
247 }
248
249 /* Do the password authentication */
250 int
251 mm_auth_password(Authctxt *authctxt, char *password)
252 {
253         Buffer m;
254         int authenticated = 0;
255
256         debug3("%s entering", __func__);
257
258         buffer_init(&m);
259         buffer_put_cstring(&m, password);
260         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHPASSWORD, &m);
261
262         debug3("%s: waiting for MONITOR_ANS_AUTHPASSWORD", __func__);
263         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTHPASSWORD, &m);
264
265         authenticated = buffer_get_int(&m);
266
267         buffer_free(&m);
268
269         debug3("%s: user %sauthenticated",
270             __func__, authenticated ? "" : "not ");
271         return (authenticated);
272 }
273
274 int
275 mm_user_key_allowed(struct passwd *pw, Key *key)
276 {
277         return (mm_key_allowed(MM_USERKEY, NULL, NULL, key));
278 }
279
280 int
281 mm_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
287 int
288 mm_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
299 static void
300 mm_send_debug(Buffer *m)
301 {
302         char *msg;
303
304         while (buffer_len(m)) {
305                 msg = buffer_get_string(m, NULL);
306                 debug3("%s: Sending debug: %s", __func__, msg);
307                 packet_send_debug("%s", msg);
308                 xfree(msg);
309         }
310 }
311
312 int
313 mm_key_allowed(enum mm_keytype type, char *user, char *host, Key *key)
314 {
315         Buffer m;
316         u_char *blob;
317         u_int len;
318         int allowed = 0, have_forced = 0;
319
320         debug3("%s entering", __func__);
321
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
333         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYALLOWED, &m);
334
335         debug3("%s: waiting for MONITOR_ANS_KEYALLOWED", __func__);
336         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYALLOWED, &m);
337
338         allowed = buffer_get_int(&m);
339
340         /* fake forced command */
341         auth_clear_options();
342         have_forced = buffer_get_int(&m);
343         forced_command = have_forced ? xstrdup("true") : NULL;
344
345         /* 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
359 int
360 mm_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
367         debug3("%s entering", __func__);
368
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
379         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m);
380
381         debug3("%s: waiting for MONITOR_ANS_KEYVERIFY", __func__);
382         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYVERIFY, &m);
383
384         verified = buffer_get_int(&m);
385
386         buffer_free(&m);
387
388         return (verified);
389 }
390
391 /* Export key state after authentication */
392 Newkeys *
393 mm_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
402         debug3("%s: %p(%d)", __func__, blob, blen);
403 #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)
422                 fatal("%s: bad ivlen: expected %u != %u", __func__,
423                     enc->block_size, len);
424
425         if (enc->name == NULL || cipher_by_name(enc->name) != enc->cipher)
426                 fatal("%s: bad cipher name %s or pointer %p", __func__,
427                     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)
432                 fatal("%s: can not init mac %s", __func__, mac->name);
433         mac->enabled = buffer_get_int(&b);
434         mac->key = buffer_get_string(&b, &len);
435         if (len > mac->key_len)
436                 fatal("%s: bad mac key length: %u > %d", __func__, len,
437                     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)
447                 error("newkeys_from_blob: remaining bytes in blob %u", len);
448         buffer_free(&b);
449         return (newkey);
450 }
451
452 int
453 mm_newkeys_to_blob(int mode, u_char **blobp, u_int *lenp)
454 {
455         Buffer b;
456         int len;
457         Enc *enc;
458         Mac *mac;
459         Comp *comp;
460         Newkeys *newkey = newkeys[mode];
461
462         debug3("%s: converting %p", __func__, newkey);
463
464         if (newkey == NULL) {
465                 error("%s: newkey == NULL", __func__);
466                 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);
494         if (lenp != NULL)
495                 *lenp = len;
496         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);
502         return len;
503 }
504
505 static void
506 mm_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
519 void
520 mm_send_keystate(struct monitor *pmonitor)
521 {
522         Buffer m;
523         u_char *blob, *p;
524         u_int bloblen, plen;
525         u_int32_t seqnr, packets;
526         u_int64_t blocks;
527
528         buffer_init(&m);
529
530         if (!compat20) {
531                 u_char iv[24];
532                 u_char *key;
533                 u_int ivlen, keylen;
534
535                 buffer_put_int(&m, packet_get_protocol_flags());
536
537                 buffer_put_int(&m, packet_get_ssh1_cipher());
538
539                 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
547                 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 */
556                 mm_send_kex(&m, *pmonitor->m_pkex);
557         }
558
559         debug3("%s: Sending new keys: %p %p",
560             __func__, newkeys[MODE_OUT], newkeys[MODE_IN]);
561
562         /* Keys from Kex */
563         if (!mm_newkeys_to_blob(MODE_OUT, &blob, &bloblen))
564                 fatal("%s: conversion of newkeys failed", __func__);
565
566         buffer_put_string(&m, blob, bloblen);
567         xfree(blob);
568
569         if (!mm_newkeys_to_blob(MODE_IN, &blob, &bloblen))
570                 fatal("%s: conversion of newkeys failed", __func__);
571
572         buffer_put_string(&m, blob, bloblen);
573         xfree(blob);
574
575         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);
579         packet_get_state(MODE_IN, &seqnr, &blocks, &packets);
580         buffer_put_int(&m, seqnr);
581         buffer_put_int64(&m, blocks);
582         buffer_put_int(&m, packets);
583
584         debug3("%s: New keys have been sent", __func__);
585  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 */
600         debug3("%s: Sending compression state", __func__);
601         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
608         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYEXPORT, &m);
609         debug3("%s: Finished sending state", __func__);
610
611         buffer_free(&m);
612 }
613
614 int
615 mm_pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
616 {
617         Buffer m;
618         char *p;
619         int success = 0;
620
621         buffer_init(&m);
622         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTY, &m);
623
624         debug3("%s: waiting for MONITOR_ANS_PTY", __func__);
625         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PTY, &m);
626
627         success = buffer_get_int(&m);
628         if (success == 0) {
629                 debug3("%s: pty alloc failed", __func__);
630                 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
639         *ptyfd = mm_receive_fd(pmonitor->m_recvfd);
640         *ttyfd = mm_receive_fd(pmonitor->m_recvfd);
641
642         /* Success */
643         return (1);
644 }
645
646 void
647 mm_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);
656         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTYCLEANUP, &m);
657         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
667 #ifdef USE_PAM
668 void
669 mm_start_pam(char *user)
670 {
671         Buffer m;
672
673         debug3("%s entering", __func__);
674         if (!options.use_pam)
675                 fatal("UsePAM=no, but ended up in %s anyway", __func__);
676
677         buffer_init(&m);
678         buffer_put_cstring(&m, user);
679
680         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_START, &m);
681
682         buffer_free(&m);
683 }
684
685 void *
686 mm_sshpam_init_ctx(Authctxt *authctxt)
687 {
688         Buffer m;
689         int success;
690
691         debug3("%s", __func__);
692         buffer_init(&m);
693         buffer_put_cstring(&m, authctxt->user);
694         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_INIT_CTX, &m);
695         debug3("%s: waiting for MONITOR_ANS_PAM_INIT_CTX", __func__);
696         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_INIT_CTX, &m);
697         success = buffer_get_int(&m);
698         if (success == 0) {
699                 debug3("%s: pam_init_ctx failed", __func__);
700                 buffer_free(&m);
701                 return (NULL);
702         }
703         buffer_free(&m);
704         return (authctxt);
705 }
706
707 int
708 mm_sshpam_query(void *ctx, char **name, char **info,
709     u_int *num, char ***prompts, u_int **echo_on)
710 {
711         Buffer m;
712         int i, ret;
713
714         debug3("%s", __func__);
715         buffer_init(&m);
716         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_QUERY, &m);
717         debug3("%s: waiting for MONITOR_ANS_PAM_QUERY", __func__);
718         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_QUERY, &m);
719         ret = buffer_get_int(&m);
720         debug3("%s: pam_query returned %d", __func__, ret);
721         *name = buffer_get_string(&m, NULL);
722         *info = buffer_get_string(&m, NULL);
723         *num = buffer_get_int(&m);
724         *prompts = xmalloc((*num + 1) * sizeof(char *));
725         *echo_on = xmalloc((*num + 1) * sizeof(u_int));
726         for (i = 0; i < *num; ++i) {
727                 (*prompts)[i] = buffer_get_string(&m, NULL);
728                 (*echo_on)[i] = buffer_get_int(&m);
729         }
730         buffer_free(&m);
731         return (ret);
732 }
733
734 int
735 mm_sshpam_respond(void *ctx, u_int num, char **resp)
736 {
737         Buffer m;
738         int i, ret;
739
740         debug3("%s", __func__);
741         buffer_init(&m);
742         buffer_put_int(&m, num);
743         for (i = 0; i < num; ++i)
744                 buffer_put_cstring(&m, resp[i]);
745         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_RESPOND, &m);
746         debug3("%s: waiting for MONITOR_ANS_PAM_RESPOND", __func__);
747         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_RESPOND, &m);
748         ret = buffer_get_int(&m);
749         debug3("%s: pam_respond returned %d", __func__, ret);
750         buffer_free(&m);
751         return (ret);
752 }
753
754 void
755 mm_sshpam_free_ctx(void *ctxtp)
756 {
757         Buffer m;
758
759         debug3("%s", __func__);
760         buffer_init(&m);
761         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_FREE_CTX, &m);
762         debug3("%s: waiting for MONITOR_ANS_PAM_FREE_CTX", __func__);
763         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_FREE_CTX, &m);
764         buffer_free(&m);
765 }
766 #endif /* USE_PAM */
767
768 /* Request process termination */
769
770 void
771 mm_terminate(void)
772 {
773         Buffer m;
774
775         buffer_init(&m);
776         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_TERM, &m);
777         buffer_free(&m);
778 }
779
780 int
781 mm_ssh1_session_key(BIGNUM *num)
782 {
783         int rsafail;
784         Buffer m;
785
786         buffer_init(&m);
787         buffer_put_bignum2(&m, num);
788         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSKEY, &m);
789
790         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SESSKEY, &m);
791
792         rsafail = buffer_get_int(&m);
793         buffer_get_bignum2(&m, num);
794
795         buffer_free(&m);
796
797         return (rsafail);
798 }
799
800 static void
801 mm_chall_setup(char **name, char **infotxt, u_int *numprompts,
802     char ***prompts, u_int **echo_on)
803 {
804         *name = xstrdup("");
805         *infotxt = xstrdup("");
806         *numprompts = 1;
807         *prompts = xmalloc(*numprompts * sizeof(char *));
808         *echo_on = xmalloc(*numprompts * sizeof(u_int));
809         (*echo_on)[0] = 0;
810 }
811
812 int
813 mm_bsdauth_query(void *ctx, char **name, char **infotxt,
814    u_int *numprompts, char ***prompts, u_int **echo_on)
815 {
816         Buffer m;
817         u_int success;
818         char *challenge;
819
820         debug3("%s: entering", __func__);
821
822         buffer_init(&m);
823         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHQUERY, &m);
824
825         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_BSDAUTHQUERY,
826             &m);
827         success = buffer_get_int(&m);
828         if (success == 0) {
829                 debug3("%s: no challenge", __func__);
830                 buffer_free(&m);
831                 return (-1);
832         }
833
834         /* Get the challenge, and format the response */
835         challenge  = buffer_get_string(&m, NULL);
836         buffer_free(&m);
837
838         mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
839         (*prompts)[0] = challenge;
840
841         debug3("%s: received challenge: %s", __func__, challenge);
842
843         return (0);
844 }
845
846 int
847 mm_bsdauth_respond(void *ctx, u_int numresponses, char **responses)
848 {
849         Buffer m;
850         int authok;
851
852         debug3("%s: entering", __func__);
853         if (numresponses != 1)
854                 return (-1);
855
856         buffer_init(&m);
857         buffer_put_cstring(&m, responses[0]);
858         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHRESPOND, &m);
859
860         mm_request_receive_expect(pmonitor->m_recvfd,
861             MONITOR_ANS_BSDAUTHRESPOND, &m);
862
863         authok = buffer_get_int(&m);
864         buffer_free(&m);
865
866         return ((authok == 0) ? -1 : 0);
867 }
868
869 int
870 mm_skey_query(void *ctx, char **name, char **infotxt,
871    u_int *numprompts, char ***prompts, u_int **echo_on)
872 {
873         Buffer m;
874         int len;
875         u_int success;
876         char *p, *challenge;
877
878         debug3("%s: entering", __func__);
879
880         buffer_init(&m);
881         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYQUERY, &m);
882
883         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SKEYQUERY,
884             &m);
885         success = buffer_get_int(&m);
886         if (success == 0) {
887                 debug3("%s: no challenge", __func__);
888                 buffer_free(&m);
889                 return (-1);
890         }
891
892         /* Get the challenge, and format the response */
893         challenge  = buffer_get_string(&m, NULL);
894         buffer_free(&m);
895
896         debug3("%s: received challenge: %s", __func__, challenge);
897
898         mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
899
900         len = strlen(challenge) + strlen(SKEY_PROMPT) + 1;
901         p = xmalloc(len);
902         strlcpy(p, challenge, len);
903         strlcat(p, SKEY_PROMPT, len);
904         (*prompts)[0] = p;
905         xfree(challenge);
906
907         return (0);
908 }
909
910 int
911 mm_skey_respond(void *ctx, u_int numresponses, char **responses)
912 {
913         Buffer m;
914         int authok;
915
916         debug3("%s: entering", __func__);
917         if (numresponses != 1)
918                 return (-1);
919
920         buffer_init(&m);
921         buffer_put_cstring(&m, responses[0]);
922         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYRESPOND, &m);
923
924         mm_request_receive_expect(pmonitor->m_recvfd,
925             MONITOR_ANS_SKEYRESPOND, &m);
926
927         authok = buffer_get_int(&m);
928         buffer_free(&m);
929
930         return ((authok == 0) ? -1 : 0);
931 }
932
933 void
934 mm_ssh1_session_id(u_char session_id[16])
935 {
936         Buffer m;
937         int i;
938
939         debug3("%s entering", __func__);
940
941         buffer_init(&m);
942         for (i = 0; i < 16; i++)
943                 buffer_put_char(&m, session_id[i]);
944
945         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSID, &m);
946         buffer_free(&m);
947 }
948
949 int
950 mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
951 {
952         Buffer m;
953         Key *key;
954         u_char *blob;
955         u_int blen;
956         int allowed = 0, have_forced = 0;
957
958         debug3("%s entering", __func__);
959
960         buffer_init(&m);
961         buffer_put_bignum2(&m, client_n);
962
963         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSAKEYALLOWED, &m);
964         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSAKEYALLOWED, &m);
965
966         allowed = buffer_get_int(&m);
967
968         /* fake forced command */
969         auth_clear_options();
970         have_forced = buffer_get_int(&m);
971         forced_command = have_forced ? xstrdup("true") : NULL;
972
973         if (allowed && rkey != NULL) {
974                 blob = buffer_get_string(&m, &blen);
975                 if ((key = key_from_blob(blob, blen)) == NULL)
976                         fatal("%s: key_from_blob failed", __func__);
977                 *rkey = key;
978                 xfree(blob);
979         }
980         mm_send_debug(&m);
981         buffer_free(&m);
982
983         return (allowed);
984 }
985
986 BIGNUM *
987 mm_auth_rsa_generate_challenge(Key *key)
988 {
989         Buffer m;
990         BIGNUM *challenge;
991         u_char *blob;
992         u_int blen;
993
994         debug3("%s entering", __func__);
995
996         if ((challenge = BN_new()) == NULL)
997                 fatal("%s: BN_new failed", __func__);
998
999         key->type = KEY_RSA;    /* XXX cheat for key_to_blob */
1000         if (key_to_blob(key, &blob, &blen) == 0)
1001                 fatal("%s: key_to_blob failed", __func__);
1002         key->type = KEY_RSA1;
1003
1004         buffer_init(&m);
1005         buffer_put_string(&m, blob, blen);
1006         xfree(blob);
1007
1008         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSACHALLENGE, &m);
1009         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSACHALLENGE, &m);
1010
1011         buffer_get_bignum2(&m, challenge);
1012         buffer_free(&m);
1013
1014         return (challenge);
1015 }
1016
1017 int
1018 mm_auth_rsa_verify_response(Key *key, BIGNUM *p, u_char response[16])
1019 {
1020         Buffer m;
1021         u_char *blob;
1022         u_int blen;
1023         int success = 0;
1024
1025         debug3("%s entering", __func__);
1026
1027         key->type = KEY_RSA;    /* XXX cheat for key_to_blob */
1028         if (key_to_blob(key, &blob, &blen) == 0)
1029                 fatal("%s: key_to_blob failed", __func__);
1030         key->type = KEY_RSA1;
1031
1032         buffer_init(&m);
1033         buffer_put_string(&m, blob, blen);
1034         buffer_put_string(&m, response, 16);
1035         xfree(blob);
1036
1037         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSARESPONSE, &m);
1038         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSARESPONSE, &m);
1039
1040         success = buffer_get_int(&m);
1041         buffer_free(&m);
1042
1043         return (success);
1044 }
1045
1046 #ifdef KRB4
1047 int
1048 mm_auth_krb4(Authctxt *authctxt, void *_auth, char **client, void *_reply)
1049 {
1050         KTEXT auth, reply;
1051         Buffer m;
1052         u_int rlen;
1053         int success = 0;
1054         char *p;
1055
1056         debug3("%s entering", __func__);
1057         auth = _auth;
1058         reply = _reply;
1059
1060         buffer_init(&m);
1061         buffer_put_string(&m, auth->dat, auth->length);
1062
1063         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB4, &m);
1064         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB4, &m);
1065
1066         success = buffer_get_int(&m);
1067         if (success) {
1068                 *client = buffer_get_string(&m, NULL);
1069                 p = buffer_get_string(&m, &rlen);
1070                 if (rlen >= MAX_KTXT_LEN)
1071                         fatal("%s: reply from monitor too large", __func__);
1072                 reply->length = rlen;
1073                 memcpy(reply->dat, p, rlen);
1074                 memset(p, 0, rlen);
1075                 xfree(p);
1076         }
1077         buffer_free(&m);
1078         return (success);
1079 }
1080 #endif
1081
1082 #ifdef KRB5
1083 int
1084 mm_auth_krb5(void *ctx, void *argp, char **userp, void *resp)
1085 {
1086         krb5_data *tkt, *reply;
1087         Buffer m;
1088         int success;
1089
1090         debug3("%s entering", __func__);
1091         tkt = (krb5_data *) argp;
1092         reply = (krb5_data *) resp;
1093
1094         buffer_init(&m);
1095         buffer_put_string(&m, tkt->data, tkt->length);
1096
1097         mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB5, &m);
1098         mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB5, &m);
1099
1100         success = buffer_get_int(&m);
1101         if (success) {
1102                 u_int len;
1103
1104                 *userp = buffer_get_string(&m, NULL);
1105                 reply->data = buffer_get_string(&m, &len);
1106                 reply->length = len;
1107         } else {
1108                 memset(reply, 0, sizeof(*reply));
1109                 *userp = NULL;
1110         }
1111
1112         buffer_free(&m);
1113         return (success);
1114 }
1115 #endif
This page took 1.763385 seconds and 5 git commands to generate.