]> andersk Git - gssapi-openssh.git/blob - openssh/monitor.c
Initial revision
[gssapi-openssh.git] / openssh / monitor.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.c,v 1.55 2004/02/05 05:37:17 dtucker Exp $");
29
30 #include <openssl/dh.h>
31
32 #ifdef SKEY
33 #include <skey.h>
34 #endif
35
36 #include "ssh.h"
37 #include "auth.h"
38 #include "kex.h"
39 #include "dh.h"
40 #ifdef TARGET_OS_MAC    /* XXX Broken krb5 headers on Mac */
41 #undef TARGET_OS_MAC
42 #include "zlib.h"
43 #define TARGET_OS_MAC 1
44 #else
45 #include "zlib.h"
46 #endif
47 #include "packet.h"
48 #include "auth-options.h"
49 #include "sshpty.h"
50 #include "channels.h"
51 #include "session.h"
52 #include "sshlogin.h"
53 #include "canohost.h"
54 #include "log.h"
55 #include "servconf.h"
56 #include "monitor.h"
57 #include "monitor_mm.h"
58 #include "monitor_wrap.h"
59 #include "monitor_fdpass.h"
60 #include "xmalloc.h"
61 #include "misc.h"
62 #include "buffer.h"
63 #include "bufaux.h"
64 #include "compat.h"
65 #include "ssh2.h"
66 #include "mpaux.h"
67
68 #ifdef GSSAPI
69 #include "ssh-gss.h"
70 static Gssctxt *gsscontext = NULL;
71 #endif
72
73 /* Imports */
74 extern ServerOptions options;
75 extern u_int utmp_len;
76 extern Newkeys *current_keys[];
77 extern z_stream incoming_stream;
78 extern z_stream outgoing_stream;
79 extern u_char session_id[];
80 extern Buffer input, output;
81 extern Buffer auth_debug;
82 extern int auth_debug_init;
83
84 /* State exported from the child */
85
86 struct {
87         z_stream incoming;
88         z_stream outgoing;
89         u_char *keyin;
90         u_int keyinlen;
91         u_char *keyout;
92         u_int keyoutlen;
93         u_char *ivin;
94         u_int ivinlen;
95         u_char *ivout;
96         u_int ivoutlen;
97         u_char *ssh1key;
98         u_int ssh1keylen;
99         int ssh1cipher;
100         int ssh1protoflags;
101         u_char *input;
102         u_int ilen;
103         u_char *output;
104         u_int olen;
105 } child_state;
106
107 /* Functions on the monitor that answer unprivileged requests */
108
109 int mm_answer_moduli(int, Buffer *);
110 int mm_answer_sign(int, Buffer *);
111 int mm_answer_pwnamallow(int, Buffer *);
112 int mm_answer_auth2_read_banner(int, Buffer *);
113 int mm_answer_authserv(int, Buffer *);
114 int mm_answer_authpassword(int, Buffer *);
115 int mm_answer_bsdauthquery(int, Buffer *);
116 int mm_answer_bsdauthrespond(int, Buffer *);
117 int mm_answer_skeyquery(int, Buffer *);
118 int mm_answer_skeyrespond(int, Buffer *);
119 int mm_answer_keyallowed(int, Buffer *);
120 int mm_answer_keyverify(int, Buffer *);
121 int mm_answer_pty(int, Buffer *);
122 int mm_answer_pty_cleanup(int, Buffer *);
123 int mm_answer_term(int, Buffer *);
124 int mm_answer_rsa_keyallowed(int, Buffer *);
125 int mm_answer_rsa_challenge(int, Buffer *);
126 int mm_answer_rsa_response(int, Buffer *);
127 int mm_answer_sesskey(int, Buffer *);
128 int mm_answer_sessid(int, Buffer *);
129
130 #ifdef USE_PAM
131 int mm_answer_pam_start(int, Buffer *);
132 int mm_answer_pam_account(int, Buffer *);
133 int mm_answer_pam_init_ctx(int, Buffer *);
134 int mm_answer_pam_query(int, Buffer *);
135 int mm_answer_pam_respond(int, Buffer *);
136 int mm_answer_pam_free_ctx(int, Buffer *);
137 #endif
138
139 #ifdef GSSAPI
140 int mm_answer_gss_setup_ctx(int, Buffer *);
141 int mm_answer_gss_accept_ctx(int, Buffer *);
142 int mm_answer_gss_userok(int, Buffer *);
143 int mm_answer_gss_checkmic(int, Buffer *);
144 #endif
145
146 #ifdef GSSAPI
147 int mm_answer_gss_setup_ctx(int, Buffer *);
148 int mm_answer_gss_accept_ctx(int, Buffer *);
149 int mm_answer_gss_userok(int, Buffer *);
150 int mm_answer_gss_sign(int, Buffer *);
151 int mm_answer_gss_error(int, Buffer *);
152 int mm_answer_gss_indicate_mechs(int, Buffer *);
153 int mm_answer_gss_localname(int, Buffer *);
154 #endif
155
156 static Authctxt *authctxt;
157 static BIGNUM *ssh1_challenge = NULL;   /* used for ssh1 rsa auth */
158
159 /* local state for key verify */
160 static u_char *key_blob = NULL;
161 static u_int key_bloblen = 0;
162 static int key_blobtype = MM_NOKEY;
163 static char *hostbased_cuser = NULL;
164 static char *hostbased_chost = NULL;
165 static char *auth_method = "unknown";
166 static u_int session_id2_len = 0;
167 static u_char *session_id2 = NULL;
168 static pid_t monitor_child_pid;
169
170 struct mon_table {
171         enum monitor_reqtype type;
172         int flags;
173         int (*f)(int, Buffer *);
174 };
175
176 #define MON_ISAUTH      0x0004  /* Required for Authentication */
177 #define MON_AUTHDECIDE  0x0008  /* Decides Authentication */
178 #define MON_ONCE        0x0010  /* Disable after calling */
179
180 #define MON_AUTH        (MON_ISAUTH|MON_AUTHDECIDE)
181
182 #define MON_PERMIT      0x1000  /* Request is permitted */
183
184 struct mon_table mon_dispatch_proto20[] = {
185     {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
186     {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
187     {MONITOR_REQ_PWNAM, MON_AUTH, mm_answer_pwnamallow},
188     {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
189     {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
190     {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
191 #ifdef USE_PAM
192     {MONITOR_REQ_PAM_START, MON_ISAUTH, mm_answer_pam_start},
193     {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
194     {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
195     {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
196     {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
197     {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
198 #endif
199 #ifdef BSD_AUTH
200     {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
201     {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH,mm_answer_bsdauthrespond},
202 #endif
203 #ifdef SKEY
204     {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
205     {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
206 #endif
207     {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
208     {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
209 #ifdef GSSAPI
210     {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
211     {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
212     {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
213     {MONITOR_REQ_GSSSIGN, MON_ONCE, mm_answer_gss_sign},
214     {MONITOR_REQ_GSSERR, MON_ISAUTH | MON_ONCE, mm_answer_gss_error},
215     {MONITOR_REQ_GSSMECHS, MON_ISAUTH, mm_answer_gss_indicate_mechs},
216     {MONITOR_REQ_GSSLOCALNAME, MON_ISAUTH, mm_answer_gss_localname},
217     {MONITOR_REQ_GSSCHECKMIC, MON_ISAUTH, mm_answer_gss_checkmic},
218 #endif
219     {0, 0, NULL}
220 };
221
222 struct mon_table mon_dispatch_postauth20[] = {
223 #ifdef GSSAPI
224     {MONITOR_REQ_GSSSETUP, 0, mm_answer_gss_setup_ctx},
225     {MONITOR_REQ_GSSSTEP, 0, mm_answer_gss_accept_ctx},
226     {MONITOR_REQ_GSSSIGN, 0, mm_answer_gss_sign},
227     {MONITOR_REQ_GSSERR, 0, mm_answer_gss_error},
228     {MONITOR_REQ_GSSMECHS, 0, mm_answer_gss_indicate_mechs},
229 #endif
230     {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
231     {MONITOR_REQ_SIGN, 0, mm_answer_sign},
232     {MONITOR_REQ_PTY, 0, mm_answer_pty},
233     {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
234     {MONITOR_REQ_TERM, 0, mm_answer_term},
235     {0, 0, NULL}
236 };
237
238 struct mon_table mon_dispatch_proto15[] = {
239     {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
240     {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
241     {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
242     {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
243     {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH, mm_answer_rsa_keyallowed},
244     {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
245     {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
246     {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
247 #ifdef BSD_AUTH
248     {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
249     {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH,mm_answer_bsdauthrespond},
250 #endif
251 #ifdef SKEY
252     {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
253     {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
254 #endif
255 #ifdef GSSAPI
256     {MONITOR_REQ_GSSSETUP, MON_ISAUTH, mm_answer_gss_setup_ctx},
257     {MONITOR_REQ_GSSSTEP, MON_ISAUTH, mm_answer_gss_accept_ctx},
258     {MONITOR_REQ_GSSSIGN, MON_ONCE, mm_answer_gss_sign},
259     {MONITOR_REQ_GSSUSEROK, MON_AUTH, mm_answer_gss_userok},
260     {MONITOR_REQ_GSSMECHS, MON_ISAUTH, mm_answer_gss_indicate_mechs},
261 #endif
262 #ifdef USE_PAM
263     {MONITOR_REQ_PAM_START, MON_ISAUTH, mm_answer_pam_start},
264     {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account},
265     {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx},
266     {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query},
267     {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond},
268     {MONITOR_REQ_PAM_FREE_CTX, MON_ONCE|MON_AUTHDECIDE, mm_answer_pam_free_ctx},
269 #endif
270     {0, 0, NULL}
271 };
272
273 struct mon_table mon_dispatch_postauth15[] = {
274     {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
275     {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
276     {MONITOR_REQ_TERM, 0, mm_answer_term},
277     {0, 0, NULL}
278 };
279
280 struct mon_table *mon_dispatch;
281
282 /* Specifies if a certain message is allowed at the moment */
283
284 static void
285 monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
286 {
287         while (ent->f != NULL) {
288                 if (ent->type == type) {
289                         ent->flags &= ~MON_PERMIT;
290                         ent->flags |= permit ? MON_PERMIT : 0;
291                         return;
292                 }
293                 ent++;
294         }
295 }
296
297 static void
298 monitor_permit_authentications(int permit)
299 {
300         struct mon_table *ent = mon_dispatch;
301
302         while (ent->f != NULL) {
303                 if (ent->flags & MON_AUTH) {
304                         ent->flags &= ~MON_PERMIT;
305                         ent->flags |= permit ? MON_PERMIT : 0;
306                 }
307                 ent++;
308         }
309 }
310
311 void
312 monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
313 {
314         struct mon_table *ent;
315         int authenticated = 0;
316
317         debug3("preauth child monitor started");
318
319         authctxt = _authctxt;
320         memset(authctxt, 0, sizeof(*authctxt));
321
322         if (compat20) {
323                 mon_dispatch = mon_dispatch_proto20;
324
325                 /* Permit requests for moduli and signatures */
326                 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
327                 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
328 #ifdef GSSAPI           
329                 /* and for the GSSAPI key exchange */
330                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSETUP, 1);
331                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSERR, 1);
332                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSMECHS, 1);
333 #endif
334         } else {
335                 mon_dispatch = mon_dispatch_proto15;
336
337                 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
338         }
339
340         /* The first few requests do not require asynchronous access */
341         while (!authenticated) {
342                 authenticated = monitor_read(pmonitor, mon_dispatch, &ent);
343                 if (authenticated) {
344                         if (!(ent->flags & MON_AUTHDECIDE))
345                                 fatal("%s: unexpected authentication from %d",
346                                     __func__, ent->type);
347                         if (authctxt->pw->pw_uid == 0 &&
348                             !auth_root_allowed(auth_method))
349                                 authenticated = 0;
350 #ifdef USE_PAM
351                         /* PAM needs to perform account checks after auth */
352                         if (options.use_pam && authenticated) {
353                                 Buffer m;
354
355                                 buffer_init(&m);
356                                 mm_request_receive_expect(pmonitor->m_sendfd,
357                                     MONITOR_REQ_PAM_ACCOUNT, &m);
358                                 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
359                                 buffer_free(&m);
360                         }
361 #endif
362                 }
363
364                 if (ent->flags & MON_AUTHDECIDE) {
365                         auth_log(authctxt, authenticated, auth_method,
366                             compat20 ? " ssh2" : "");
367                         if (!authenticated)
368                                 authctxt->failures++;
369                 }
370         }
371
372         if (!authctxt->valid)
373                 fatal("%s: authenticated invalid user", __func__);
374
375         debug("%s: %s has been authenticated by privileged process",
376             __func__, authctxt->user);
377
378         mm_get_keystate(pmonitor);
379 }
380
381 static void
382 monitor_set_child_handler(pid_t pid)
383 {
384         monitor_child_pid = pid;
385 }
386
387 static void
388 monitor_child_handler(int signal)
389 {
390         kill(monitor_child_pid, signal);
391 }
392
393 void
394 monitor_child_postauth(struct monitor *pmonitor)
395 {
396         monitor_set_child_handler(pmonitor->m_pid);
397         signal(SIGHUP, &monitor_child_handler);
398         signal(SIGTERM, &monitor_child_handler);
399
400         if (compat20) {
401                 mon_dispatch = mon_dispatch_postauth20;
402
403                 /* Permit requests for moduli and signatures */
404                 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
405                 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
406                 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
407
408 #ifdef GSSAPI
409                 /* and for the GSSAPI key exchange */
410                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSMECHS,1);
411                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSETUP,1);
412                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSERR,1);
413 #endif
414
415         } else {
416                 mon_dispatch = mon_dispatch_postauth15;
417                 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
418         }
419 #ifdef GSSAPI           
420         monitor_permit(mon_dispatch, MONITOR_REQ_GSSERR, 1);
421 #endif
422         if (!no_pty_flag) {
423                 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
424                 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
425         }
426
427         for (;;)
428                 monitor_read(pmonitor, mon_dispatch, NULL);
429 }
430
431 void
432 monitor_sync(struct monitor *pmonitor)
433 {
434         if (options.compression) {
435                 /* The member allocation is not visible, so sync it */
436                 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
437         }
438 }
439
440 int
441 monitor_read(struct monitor *pmonitor, struct mon_table *ent,
442     struct mon_table **pent)
443 {
444         Buffer m;
445         int ret;
446         u_char type;
447
448         buffer_init(&m);
449
450         mm_request_receive(pmonitor->m_sendfd, &m);
451         type = buffer_get_char(&m);
452
453         debug3("%s: checking request %d", __func__, type);
454
455         while (ent->f != NULL) {
456                 if (ent->type == type)
457                         break;
458                 ent++;
459         }
460
461         if (ent->f != NULL) {
462                 if (!(ent->flags & MON_PERMIT))
463                         fatal("%s: unpermitted request %d", __func__,
464                             type);
465                 ret = (*ent->f)(pmonitor->m_sendfd, &m);
466                 buffer_free(&m);
467
468                 /* The child may use this request only once, disable it */
469                 if (ent->flags & MON_ONCE) {
470                         debug2("%s: %d used once, disabling now", __func__,
471                             type);
472                         ent->flags &= ~MON_PERMIT;
473                 }
474
475                 if (pent != NULL)
476                         *pent = ent;
477
478                 return ret;
479         }
480
481         fatal("%s: unsupported request: %d", __func__, type);
482
483         /* NOTREACHED */
484         return (-1);
485 }
486
487 /* allowed key state */
488 static int
489 monitor_allowed_key(u_char *blob, u_int bloblen)
490 {
491         /* make sure key is allowed */
492         if (key_blob == NULL || key_bloblen != bloblen ||
493             memcmp(key_blob, blob, key_bloblen))
494                 return (0);
495         return (1);
496 }
497
498 static void
499 monitor_reset_key_state(void)
500 {
501         /* reset state */
502         if (key_blob != NULL)
503                 xfree(key_blob);
504         if (hostbased_cuser != NULL)
505                 xfree(hostbased_cuser);
506         if (hostbased_chost != NULL)
507                 xfree(hostbased_chost);
508         key_blob = NULL;
509         key_bloblen = 0;
510         key_blobtype = MM_NOKEY;
511         hostbased_cuser = NULL;
512         hostbased_chost = NULL;
513 }
514
515 int
516 mm_answer_moduli(int socket, Buffer *m)
517 {
518         DH *dh;
519         int min, want, max;
520
521         min = buffer_get_int(m);
522         want = buffer_get_int(m);
523         max = buffer_get_int(m);
524
525         debug3("%s: got parameters: %d %d %d",
526             __func__, min, want, max);
527         /* We need to check here, too, in case the child got corrupted */
528         if (max < min || want < min || max < want)
529                 fatal("%s: bad parameters: %d %d %d",
530                     __func__, min, want, max);
531
532         buffer_clear(m);
533
534         dh = choose_dh(min, want, max);
535         if (dh == NULL) {
536                 buffer_put_char(m, 0);
537                 return (0);
538         } else {
539                 /* Send first bignum */
540                 buffer_put_char(m, 1);
541                 buffer_put_bignum2(m, dh->p);
542                 buffer_put_bignum2(m, dh->g);
543
544                 DH_free(dh);
545         }
546         mm_request_send(socket, MONITOR_ANS_MODULI, m);
547         return (0);
548 }
549
550 int
551 mm_answer_sign(int socket, Buffer *m)
552 {
553         Key *key;
554         u_char *p;
555         u_char *signature;
556         u_int siglen, datlen;
557         int keyid;
558
559         debug3("%s", __func__);
560
561         keyid = buffer_get_int(m);
562         p = buffer_get_string(m, &datlen);
563
564         if (datlen != 20)
565                 fatal("%s: data length incorrect: %u", __func__, datlen);
566
567         /* save session id, it will be passed on the first call */
568         if (session_id2_len == 0) {
569                 session_id2_len = datlen;
570                 session_id2 = xmalloc(session_id2_len);
571                 memcpy(session_id2, p, session_id2_len);
572         }
573
574         if ((key = get_hostkey_by_index(keyid)) == NULL)
575                 fatal("%s: no hostkey from index %d", __func__, keyid);
576         if (key_sign(key, &signature, &siglen, p, datlen) < 0)
577                 fatal("%s: key_sign failed", __func__);
578
579         debug3("%s: signature %p(%u)", __func__, signature, siglen);
580
581         buffer_clear(m);
582         buffer_put_string(m, signature, siglen);
583
584         xfree(p);
585         xfree(signature);
586
587         mm_request_send(socket, MONITOR_ANS_SIGN, m);
588
589         /* Turn on permissions for getpwnam */
590         monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
591
592         return (0);
593 }
594
595 /* Retrieves the password entry and also checks if the user is permitted */
596
597 int
598 mm_answer_pwnamallow(int socket, Buffer *m)
599 {
600         char *login;
601         struct passwd *pwent;
602         int allowed = 0;
603
604         debug3("%s", __func__);
605
606         login = buffer_get_string(m, NULL);
607
608         pwent = getpwnamallow(login);
609
610         if (authctxt->user) xfree(authctxt->user);
611         authctxt->user = xstrdup(login);
612         setproctitle("%s [priv]", pwent ? login : "unknown");
613         xfree(login);
614
615         buffer_clear(m);
616
617         if (pwent == NULL) {
618                 buffer_put_char(m, 0);
619                 authctxt->pw = fakepw();
620                 goto out;
621         }
622
623         allowed = 1;
624         authctxt->pw = pwent;
625         authctxt->valid = 1;
626
627         buffer_put_char(m, 1);
628         buffer_put_string(m, pwent, sizeof(struct passwd));
629         buffer_put_cstring(m, pwent->pw_name);
630         buffer_put_cstring(m, "*");
631         buffer_put_cstring(m, pwent->pw_gecos);
632 #ifdef HAVE_PW_CLASS_IN_PASSWD
633         buffer_put_cstring(m, pwent->pw_class);
634 #endif
635         buffer_put_cstring(m, pwent->pw_dir);
636         buffer_put_cstring(m, pwent->pw_shell);
637
638  out:
639         debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
640         mm_request_send(socket, MONITOR_ANS_PWNAM, m);
641
642         /* For SSHv1 allow authentication now */
643         if (!compat20)
644                 monitor_permit_authentications(1);
645         else {
646                 /* Allow service/style information on the auth context */
647                 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
648                 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
649         }
650
651 #ifdef USE_PAM
652         if (options.use_pam)
653                 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
654 #endif
655
656         return (0);
657 }
658
659 int mm_answer_auth2_read_banner(int socket, Buffer *m)
660 {
661         char *banner;
662
663         buffer_clear(m);
664         banner = auth2_read_banner();
665         buffer_put_cstring(m, banner != NULL ? banner : "");
666         mm_request_send(socket, MONITOR_ANS_AUTH2_READ_BANNER, m);
667
668         if (banner != NULL)
669                 xfree(banner);
670
671         return (0);
672 }
673
674 int
675 mm_answer_authserv(int socket, Buffer *m)
676 {
677         monitor_permit_authentications(1);
678
679         authctxt->service = buffer_get_string(m, NULL);
680         authctxt->style = buffer_get_string(m, NULL);
681         debug3("%s: service=%s, style=%s",
682             __func__, authctxt->service, authctxt->style);
683
684         if (strlen(authctxt->style) == 0) {
685                 xfree(authctxt->style);
686                 authctxt->style = NULL;
687         }
688
689         return (0);
690 }
691
692 int
693 mm_answer_authpassword(int socket, Buffer *m)
694 {
695         static int call_count;
696         char *passwd;
697         int authenticated;
698         u_int plen;
699
700         passwd = buffer_get_string(m, &plen);
701         /* Only authenticate if the context is valid */
702         authenticated = options.password_authentication &&
703             auth_password(authctxt, passwd);
704         memset(passwd, 0, strlen(passwd));
705         xfree(passwd);
706
707         buffer_clear(m);
708         buffer_put_int(m, authenticated);
709
710         debug3("%s: sending result %d", __func__, authenticated);
711         mm_request_send(socket, MONITOR_ANS_AUTHPASSWORD, m);
712
713         call_count++;
714         if (plen == 0 && call_count == 1)
715                 auth_method = "none";
716         else
717                 auth_method = "password";
718
719         /* Causes monitor loop to terminate if authenticated */
720         return (authenticated);
721 }
722
723 #ifdef BSD_AUTH
724 int
725 mm_answer_bsdauthquery(int socket, Buffer *m)
726 {
727         char *name, *infotxt;
728         u_int numprompts;
729         u_int *echo_on;
730         char **prompts;
731         u_int success;
732
733         success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
734             &prompts, &echo_on) < 0 ? 0 : 1;
735
736         buffer_clear(m);
737         buffer_put_int(m, success);
738         if (success)
739                 buffer_put_cstring(m, prompts[0]);
740
741         debug3("%s: sending challenge success: %u", __func__, success);
742         mm_request_send(socket, MONITOR_ANS_BSDAUTHQUERY, m);
743
744         if (success) {
745                 xfree(name);
746                 xfree(infotxt);
747                 xfree(prompts);
748                 xfree(echo_on);
749         }
750
751         return (0);
752 }
753
754 int
755 mm_answer_bsdauthrespond(int socket, Buffer *m)
756 {
757         char *response;
758         int authok;
759
760         if (authctxt->as == 0)
761                 fatal("%s: no bsd auth session", __func__);
762
763         response = buffer_get_string(m, NULL);
764         authok = options.challenge_response_authentication &&
765             auth_userresponse(authctxt->as, response, 0);
766         authctxt->as = NULL;
767         debug3("%s: <%s> = <%d>", __func__, response, authok);
768         xfree(response);
769
770         buffer_clear(m);
771         buffer_put_int(m, authok);
772
773         debug3("%s: sending authenticated: %d", __func__, authok);
774         mm_request_send(socket, MONITOR_ANS_BSDAUTHRESPOND, m);
775
776         auth_method = "bsdauth";
777
778         return (authok != 0);
779 }
780 #endif
781
782 #ifdef SKEY
783 int
784 mm_answer_skeyquery(int socket, Buffer *m)
785 {
786         struct skey skey;
787         char challenge[1024];
788         u_int success;
789
790         success = _compat_skeychallenge(&skey, authctxt->user, challenge,
791             sizeof(challenge)) < 0 ? 0 : 1;
792
793         buffer_clear(m);
794         buffer_put_int(m, success);
795         if (success)
796                 buffer_put_cstring(m, challenge);
797
798         debug3("%s: sending challenge success: %u", __func__, success);
799         mm_request_send(socket, MONITOR_ANS_SKEYQUERY, m);
800
801         return (0);
802 }
803
804 int
805 mm_answer_skeyrespond(int socket, Buffer *m)
806 {
807         char *response;
808         int authok;
809
810         response = buffer_get_string(m, NULL);
811
812         authok = (options.challenge_response_authentication &&
813             authctxt->valid &&
814             skey_haskey(authctxt->pw->pw_name) == 0 &&
815             skey_passcheck(authctxt->pw->pw_name, response) != -1);
816
817         xfree(response);
818
819         buffer_clear(m);
820         buffer_put_int(m, authok);
821
822         debug3("%s: sending authenticated: %d", __func__, authok);
823         mm_request_send(socket, MONITOR_ANS_SKEYRESPOND, m);
824
825         auth_method = "skey";
826
827         return (authok != 0);
828 }
829 #endif
830
831 #ifdef USE_PAM
832 int
833 mm_answer_pam_start(int socket, Buffer *m)
834 {
835         if (!options.use_pam)
836                 fatal("UsePAM not set, but ended up in %s anyway", __func__);
837
838         start_pam(authctxt);
839
840         monitor_permit(mon_dispatch, MONITOR_REQ_PAM_ACCOUNT, 1);
841
842         return (0);
843 }
844
845 int
846 mm_answer_pam_account(int socket, Buffer *m)
847 {
848         u_int ret;
849
850         if (!options.use_pam)
851                 fatal("UsePAM not set, but ended up in %s anyway", __func__);
852
853         ret = do_pam_account();
854
855         buffer_put_int(m, ret);
856
857         mm_request_send(socket, MONITOR_ANS_PAM_ACCOUNT, m);
858
859         return (ret);
860 }
861
862 static void *sshpam_ctxt, *sshpam_authok;
863 extern KbdintDevice sshpam_device;
864
865 int
866 mm_answer_pam_init_ctx(int socket, Buffer *m)
867 {
868
869         debug3("%s", __func__);
870         authctxt->user = buffer_get_string(m, NULL);
871         sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
872         sshpam_authok = NULL;
873         buffer_clear(m);
874         if (sshpam_ctxt != NULL) {
875                 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
876                 buffer_put_int(m, 1);
877         } else {
878                 buffer_put_int(m, 0);
879         }
880         mm_request_send(socket, MONITOR_ANS_PAM_INIT_CTX, m);
881         return (0);
882 }
883
884 int
885 mm_answer_pam_query(int socket, Buffer *m)
886 {
887         char *name, *info, **prompts;
888         u_int num, *echo_on;
889         int i, ret;
890
891         debug3("%s", __func__);
892         sshpam_authok = NULL;
893         ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
894         if (ret == 0 && num == 0)
895                 sshpam_authok = sshpam_ctxt;
896         if (num > 1 || name == NULL || info == NULL)
897                 ret = -1;
898         buffer_clear(m);
899         buffer_put_int(m, ret);
900         buffer_put_cstring(m, name);
901         xfree(name);
902         buffer_put_cstring(m, info);
903         xfree(info);
904         buffer_put_int(m, num);
905         for (i = 0; i < num; ++i) {
906                 buffer_put_cstring(m, prompts[i]);
907                 xfree(prompts[i]);
908                 buffer_put_int(m, echo_on[i]);
909         }
910         if (prompts != NULL)
911                 xfree(prompts);
912         if (echo_on != NULL)
913                 xfree(echo_on);
914         mm_request_send(socket, MONITOR_ANS_PAM_QUERY, m);
915         return (0);
916 }
917
918 int
919 mm_answer_pam_respond(int socket, Buffer *m)
920 {
921         char **resp;
922         u_int num;
923         int i, ret;
924
925         debug3("%s", __func__);
926         sshpam_authok = NULL;
927         num = buffer_get_int(m);
928         if (num > 0) {
929                 resp = xmalloc(num * sizeof(char *));
930                 for (i = 0; i < num; ++i)
931                         resp[i] = buffer_get_string(m, NULL);
932                 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
933                 for (i = 0; i < num; ++i)
934                         xfree(resp[i]);
935                 xfree(resp);
936         } else {
937                 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
938         }
939         buffer_clear(m);
940         buffer_put_int(m, ret);
941         mm_request_send(socket, MONITOR_ANS_PAM_RESPOND, m);
942         auth_method = "keyboard-interactive/pam";
943         if (ret == 0)
944                 sshpam_authok = sshpam_ctxt;
945         return (0);
946 }
947
948 int
949 mm_answer_pam_free_ctx(int socket, Buffer *m)
950 {
951
952         debug3("%s", __func__);
953         (sshpam_device.free_ctx)(sshpam_ctxt);
954         buffer_clear(m);
955         mm_request_send(socket, MONITOR_ANS_PAM_FREE_CTX, m);
956         return (sshpam_authok == sshpam_ctxt);
957 }
958 #endif
959
960 static void
961 mm_append_debug(Buffer *m)
962 {
963         if (auth_debug_init && buffer_len(&auth_debug)) {
964                 debug3("%s: Appending debug messages for child", __func__);
965                 buffer_append(m, buffer_ptr(&auth_debug),
966                     buffer_len(&auth_debug));
967                 buffer_clear(&auth_debug);
968         }
969 }
970
971 int
972 mm_answer_keyallowed(int socket, Buffer *m)
973 {
974         Key *key;
975         char *cuser, *chost;
976         u_char *blob;
977         u_int bloblen;
978         enum mm_keytype type = 0;
979         int allowed = 0;
980
981         debug3("%s entering", __func__);
982
983         type = buffer_get_int(m);
984         cuser = buffer_get_string(m, NULL);
985         chost = buffer_get_string(m, NULL);
986         blob = buffer_get_string(m, &bloblen);
987
988         key = key_from_blob(blob, bloblen);
989
990         if ((compat20 && type == MM_RSAHOSTKEY) ||
991             (!compat20 && type != MM_RSAHOSTKEY))
992                 fatal("%s: key type and protocol mismatch", __func__);
993
994         debug3("%s: key_from_blob: %p", __func__, key);
995
996         if (key != NULL && authctxt->valid) {
997                 switch(type) {
998                 case MM_USERKEY:
999                         allowed = options.pubkey_authentication &&
1000                             user_key_allowed(authctxt->pw, key);
1001                         break;
1002                 case MM_HOSTKEY:
1003                         allowed = options.hostbased_authentication &&
1004                             hostbased_key_allowed(authctxt->pw,
1005                             cuser, chost, key);
1006                         break;
1007                 case MM_RSAHOSTKEY:
1008                         key->type = KEY_RSA1; /* XXX */
1009                         allowed = options.rhosts_rsa_authentication &&
1010                             auth_rhosts_rsa_key_allowed(authctxt->pw,
1011                             cuser, chost, key);
1012                         break;
1013                 default:
1014                         fatal("%s: unknown key type %d", __func__, type);
1015                         break;
1016                 }
1017         }
1018         if (key != NULL)
1019                 key_free(key);
1020
1021         /* clear temporarily storage (used by verify) */
1022         monitor_reset_key_state();
1023
1024         if (allowed) {
1025                 /* Save temporarily for comparison in verify */
1026                 key_blob = blob;
1027                 key_bloblen = bloblen;
1028                 key_blobtype = type;
1029                 hostbased_cuser = cuser;
1030                 hostbased_chost = chost;
1031         }
1032
1033         debug3("%s: key %p is %s",
1034             __func__, key, allowed ? "allowed" : "disallowed");
1035
1036         buffer_clear(m);
1037         buffer_put_int(m, allowed);
1038         buffer_put_int(m, forced_command != NULL);
1039
1040         mm_append_debug(m);
1041
1042         mm_request_send(socket, MONITOR_ANS_KEYALLOWED, m);
1043
1044         if (type == MM_RSAHOSTKEY)
1045                 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1046
1047         return (0);
1048 }
1049
1050 static int
1051 monitor_valid_userblob(u_char *data, u_int datalen)
1052 {
1053         Buffer b;
1054         char *p;
1055         u_int len;
1056         int fail = 0;
1057
1058         buffer_init(&b);
1059         buffer_append(&b, data, datalen);
1060
1061         if (datafellows & SSH_OLD_SESSIONID) {
1062                 p = buffer_ptr(&b);
1063                 len = buffer_len(&b);
1064                 if ((session_id2 == NULL) ||
1065                     (len < session_id2_len) ||
1066                     (memcmp(p, session_id2, session_id2_len) != 0))
1067                         fail++;
1068                 buffer_consume(&b, session_id2_len);
1069         } else {
1070                 p = buffer_get_string(&b, &len);
1071                 if ((session_id2 == NULL) ||
1072                     (len != session_id2_len) ||
1073                     (memcmp(p, session_id2, session_id2_len) != 0))
1074                         fail++;
1075                 xfree(p);
1076         }
1077         if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1078                 fail++;
1079         p = buffer_get_string(&b, NULL);
1080         if (strcmp(authctxt->user, p) != 0) {
1081                 logit("wrong user name passed to monitor: expected %s != %.100s",
1082                     authctxt->user, p);
1083                 fail++;
1084         }
1085         xfree(p);
1086         buffer_skip_string(&b);
1087         if (datafellows & SSH_BUG_PKAUTH) {
1088                 if (!buffer_get_char(&b))
1089                         fail++;
1090         } else {
1091                 p = buffer_get_string(&b, NULL);
1092                 if (strcmp("publickey", p) != 0)
1093                         fail++;
1094                 xfree(p);
1095                 if (!buffer_get_char(&b))
1096                         fail++;
1097                 buffer_skip_string(&b);
1098         }
1099         buffer_skip_string(&b);
1100         if (buffer_len(&b) != 0)
1101                 fail++;
1102         buffer_free(&b);
1103         return (fail == 0);
1104 }
1105
1106 static int
1107 monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1108     char *chost)
1109 {
1110         Buffer b;
1111         char *p;
1112         u_int len;
1113         int fail = 0;
1114
1115         buffer_init(&b);
1116         buffer_append(&b, data, datalen);
1117
1118         p = buffer_get_string(&b, &len);
1119         if ((session_id2 == NULL) ||
1120             (len != session_id2_len) ||
1121             (memcmp(p, session_id2, session_id2_len) != 0))
1122                 fail++;
1123         xfree(p);
1124
1125         if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1126                 fail++;
1127         p = buffer_get_string(&b, NULL);
1128         if (strcmp(authctxt->user, p) != 0) {
1129                 logit("wrong user name passed to monitor: expected %s != %.100s",
1130                     authctxt->user, p);
1131                 fail++;
1132         }
1133         xfree(p);
1134         buffer_skip_string(&b); /* service */
1135         p = buffer_get_string(&b, NULL);
1136         if (strcmp(p, "hostbased") != 0)
1137                 fail++;
1138         xfree(p);
1139         buffer_skip_string(&b); /* pkalg */
1140         buffer_skip_string(&b); /* pkblob */
1141
1142         /* verify client host, strip trailing dot if necessary */
1143         p = buffer_get_string(&b, NULL);
1144         if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1145                 p[len - 1] = '\0';
1146         if (strcmp(p, chost) != 0)
1147                 fail++;
1148         xfree(p);
1149
1150         /* verify client user */
1151         p = buffer_get_string(&b, NULL);
1152         if (strcmp(p, cuser) != 0)
1153                 fail++;
1154         xfree(p);
1155
1156         if (buffer_len(&b) != 0)
1157                 fail++;
1158         buffer_free(&b);
1159         return (fail == 0);
1160 }
1161
1162 int
1163 mm_answer_keyverify(int socket, Buffer *m)
1164 {
1165         Key *key;
1166         u_char *signature, *data, *blob;
1167         u_int signaturelen, datalen, bloblen;
1168         int verified = 0;
1169         int valid_data = 0;
1170
1171         blob = buffer_get_string(m, &bloblen);
1172         signature = buffer_get_string(m, &signaturelen);
1173         data = buffer_get_string(m, &datalen);
1174
1175         if (hostbased_cuser == NULL || hostbased_chost == NULL ||
1176           !monitor_allowed_key(blob, bloblen))
1177                 fatal("%s: bad key, not previously allowed", __func__);
1178
1179         key = key_from_blob(blob, bloblen);
1180         if (key == NULL)
1181                 fatal("%s: bad public key blob", __func__);
1182
1183         switch (key_blobtype) {
1184         case MM_USERKEY:
1185                 valid_data = monitor_valid_userblob(data, datalen);
1186                 break;
1187         case MM_HOSTKEY:
1188                 valid_data = monitor_valid_hostbasedblob(data, datalen,
1189                     hostbased_cuser, hostbased_chost);
1190                 break;
1191         default:
1192                 valid_data = 0;
1193                 break;
1194         }
1195         if (!valid_data)
1196                 fatal("%s: bad signature data blob", __func__);
1197
1198         verified = key_verify(key, signature, signaturelen, data, datalen);
1199         debug3("%s: key %p signature %s",
1200             __func__, key, verified ? "verified" : "unverified");
1201
1202         key_free(key);
1203         xfree(blob);
1204         xfree(signature);
1205         xfree(data);
1206
1207         auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1208
1209         monitor_reset_key_state();
1210
1211         buffer_clear(m);
1212         buffer_put_int(m, verified);
1213         mm_request_send(socket, MONITOR_ANS_KEYVERIFY, m);
1214
1215         return (verified);
1216 }
1217
1218 static void
1219 mm_record_login(Session *s, struct passwd *pw)
1220 {
1221         socklen_t fromlen;
1222         struct sockaddr_storage from;
1223
1224         /*
1225          * Get IP address of client. If the connection is not a socket, let
1226          * the address be 0.0.0.0.
1227          */
1228         memset(&from, 0, sizeof(from));
1229         fromlen = sizeof(from);
1230         if (packet_connection_is_on_socket()) {
1231                 if (getpeername(packet_get_connection_in(),
1232                         (struct sockaddr *) & from, &fromlen) < 0) {
1233                         debug("getpeername: %.100s", strerror(errno));
1234                         cleanup_exit(255);
1235                 }
1236         }
1237         /* Record that there was a login on that tty from the remote host. */
1238         record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
1239             get_remote_name_or_ip(utmp_len, options.use_dns),
1240             (struct sockaddr *)&from, fromlen);
1241 }
1242
1243 static void
1244 mm_session_close(Session *s)
1245 {
1246         debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
1247         if (s->ttyfd != -1) {
1248                 debug3("%s: tty %s ptyfd %d",  __func__, s->tty, s->ptyfd);
1249                 session_pty_cleanup2(s);
1250         }
1251         s->used = 0;
1252 }
1253
1254 int
1255 mm_answer_pty(int socket, Buffer *m)
1256 {
1257         extern struct monitor *pmonitor;
1258         Session *s;
1259         int res, fd0;
1260
1261         debug3("%s entering", __func__);
1262
1263         buffer_clear(m);
1264         s = session_new();
1265         if (s == NULL)
1266                 goto error;
1267         s->authctxt = authctxt;
1268         s->pw = authctxt->pw;
1269         s->pid = pmonitor->m_pid;
1270         res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1271         if (res == 0)
1272                 goto error;
1273         pty_setowner(authctxt->pw, s->tty);
1274
1275         buffer_put_int(m, 1);
1276         buffer_put_cstring(m, s->tty);
1277         mm_request_send(socket, MONITOR_ANS_PTY, m);
1278
1279         mm_send_fd(socket, s->ptyfd);
1280         mm_send_fd(socket, s->ttyfd);
1281
1282         /* We need to trick ttyslot */
1283         if (dup2(s->ttyfd, 0) == -1)
1284                 fatal("%s: dup2", __func__);
1285
1286         mm_record_login(s, authctxt->pw);
1287
1288         /* Now we can close the file descriptor again */
1289         close(0);
1290
1291         /* make sure nothing uses fd 0 */
1292         if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
1293                 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
1294         if (fd0 != 0)
1295                 error("%s: fd0 %d != 0", __func__, fd0);
1296
1297         /* slave is not needed */
1298         close(s->ttyfd);
1299         s->ttyfd = s->ptyfd;
1300         /* no need to dup() because nobody closes ptyfd */
1301         s->ptymaster = s->ptyfd;
1302
1303         debug3("%s: tty %s ptyfd %d",  __func__, s->tty, s->ttyfd);
1304
1305         return (0);
1306
1307  error:
1308         if (s != NULL)
1309                 mm_session_close(s);
1310         buffer_put_int(m, 0);
1311         mm_request_send(socket, MONITOR_ANS_PTY, m);
1312         return (0);
1313 }
1314
1315 int
1316 mm_answer_pty_cleanup(int socket, Buffer *m)
1317 {
1318         Session *s;
1319         char *tty;
1320
1321         debug3("%s entering", __func__);
1322
1323         tty = buffer_get_string(m, NULL);
1324         if ((s = session_by_tty(tty)) != NULL)
1325                 mm_session_close(s);
1326         buffer_clear(m);
1327         xfree(tty);
1328         return (0);
1329 }
1330
1331 int
1332 mm_answer_sesskey(int socket, Buffer *m)
1333 {
1334         BIGNUM *p;
1335         int rsafail;
1336
1337         /* Turn off permissions */
1338         monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
1339
1340         if ((p = BN_new()) == NULL)
1341                 fatal("%s: BN_new", __func__);
1342
1343         buffer_get_bignum2(m, p);
1344
1345         rsafail = ssh1_session_key(p);
1346
1347         buffer_clear(m);
1348         buffer_put_int(m, rsafail);
1349         buffer_put_bignum2(m, p);
1350
1351         BN_clear_free(p);
1352
1353         mm_request_send(socket, MONITOR_ANS_SESSKEY, m);
1354
1355         /* Turn on permissions for sessid passing */
1356         monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1357
1358         return (0);
1359 }
1360
1361 int
1362 mm_answer_sessid(int socket, Buffer *m)
1363 {
1364         int i;
1365
1366         debug3("%s entering", __func__);
1367
1368         if (buffer_len(m) != 16)
1369                 fatal("%s: bad ssh1 session id", __func__);
1370         for (i = 0; i < 16; i++)
1371                 session_id[i] = buffer_get_char(m);
1372
1373         /* Turn on permissions for getpwnam */
1374         monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1375
1376         return (0);
1377 }
1378
1379 int
1380 mm_answer_rsa_keyallowed(int socket, Buffer *m)
1381 {
1382         BIGNUM *client_n;
1383         Key *key = NULL;
1384         u_char *blob = NULL;
1385         u_int blen = 0;
1386         int allowed = 0;
1387
1388         debug3("%s entering", __func__);
1389
1390         if (options.rsa_authentication && authctxt->valid) {
1391                 if ((client_n = BN_new()) == NULL)
1392                         fatal("%s: BN_new", __func__);
1393                 buffer_get_bignum2(m, client_n);
1394                 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1395                 BN_clear_free(client_n);
1396         }
1397         buffer_clear(m);
1398         buffer_put_int(m, allowed);
1399         buffer_put_int(m, forced_command != NULL);
1400
1401         /* clear temporarily storage (used by generate challenge) */
1402         monitor_reset_key_state();
1403
1404         if (allowed && key != NULL) {
1405                 key->type = KEY_RSA;    /* cheat for key_to_blob */
1406                 if (key_to_blob(key, &blob, &blen) == 0)
1407                         fatal("%s: key_to_blob failed", __func__);
1408                 buffer_put_string(m, blob, blen);
1409
1410                 /* Save temporarily for comparison in verify */
1411                 key_blob = blob;
1412                 key_bloblen = blen;
1413                 key_blobtype = MM_RSAUSERKEY;
1414         }
1415         if (key != NULL)
1416                 key_free(key);
1417
1418         mm_append_debug(m);
1419
1420         mm_request_send(socket, MONITOR_ANS_RSAKEYALLOWED, m);
1421
1422         monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1423         monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1424         return (0);
1425 }
1426
1427 int
1428 mm_answer_rsa_challenge(int socket, Buffer *m)
1429 {
1430         Key *key = NULL;
1431         u_char *blob;
1432         u_int blen;
1433
1434         debug3("%s entering", __func__);
1435
1436         if (!authctxt->valid)
1437                 fatal("%s: authctxt not valid", __func__);
1438         blob = buffer_get_string(m, &blen);
1439         if (!monitor_allowed_key(blob, blen))
1440                 fatal("%s: bad key, not previously allowed", __func__);
1441         if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1442                 fatal("%s: key type mismatch", __func__);
1443         if ((key = key_from_blob(blob, blen)) == NULL)
1444                 fatal("%s: received bad key", __func__);
1445
1446         if (ssh1_challenge)
1447                 BN_clear_free(ssh1_challenge);
1448         ssh1_challenge = auth_rsa_generate_challenge(key);
1449
1450         buffer_clear(m);
1451         buffer_put_bignum2(m, ssh1_challenge);
1452
1453         debug3("%s sending reply", __func__);
1454         mm_request_send(socket, MONITOR_ANS_RSACHALLENGE, m);
1455
1456         monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
1457
1458         xfree(blob);
1459         key_free(key);
1460         return (0);
1461 }
1462
1463 int
1464 mm_answer_rsa_response(int socket, Buffer *m)
1465 {
1466         Key *key = NULL;
1467         u_char *blob, *response;
1468         u_int blen, len;
1469         int success;
1470
1471         debug3("%s entering", __func__);
1472
1473         if (!authctxt->valid)
1474                 fatal("%s: authctxt not valid", __func__);
1475         if (ssh1_challenge == NULL)
1476                 fatal("%s: no ssh1_challenge", __func__);
1477
1478         blob = buffer_get_string(m, &blen);
1479         if (!monitor_allowed_key(blob, blen))
1480                 fatal("%s: bad key, not previously allowed", __func__);
1481         if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1482                 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
1483         if ((key = key_from_blob(blob, blen)) == NULL)
1484                 fatal("%s: received bad key", __func__);
1485         response = buffer_get_string(m, &len);
1486         if (len != 16)
1487                 fatal("%s: received bad response to challenge", __func__);
1488         success = auth_rsa_verify_response(key, ssh1_challenge, response);
1489
1490         xfree(blob);
1491         key_free(key);
1492         xfree(response);
1493
1494         auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1495
1496         /* reset state */
1497         BN_clear_free(ssh1_challenge);
1498         ssh1_challenge = NULL;
1499         monitor_reset_key_state();
1500
1501         buffer_clear(m);
1502         buffer_put_int(m, success);
1503         mm_request_send(socket, MONITOR_ANS_RSARESPONSE, m);
1504
1505         return (success);
1506 }
1507
1508 int
1509 mm_answer_term(int socket, Buffer *req)
1510 {
1511         extern struct monitor *pmonitor;
1512         int res, status;
1513
1514         debug3("%s: tearing down sessions", __func__);
1515
1516         /* The child is terminating */
1517         session_destroy_all(&mm_session_close);
1518
1519         while (waitpid(pmonitor->m_pid, &status, 0) == -1)
1520                 if (errno != EINTR)
1521                         exit(1);
1522
1523         res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1524
1525         /* Terminate process */
1526         exit (res);
1527 }
1528
1529 void
1530 monitor_apply_keystate(struct monitor *pmonitor)
1531 {
1532         if (compat20) {
1533                 set_newkeys(MODE_IN);
1534                 set_newkeys(MODE_OUT);
1535         } else {
1536                 packet_set_protocol_flags(child_state.ssh1protoflags);
1537                 packet_set_encryption_key(child_state.ssh1key,
1538                     child_state.ssh1keylen, child_state.ssh1cipher);
1539                 xfree(child_state.ssh1key);
1540         }
1541
1542         /* for rc4 and other stateful ciphers */
1543         packet_set_keycontext(MODE_OUT, child_state.keyout);
1544         xfree(child_state.keyout);
1545         packet_set_keycontext(MODE_IN, child_state.keyin);
1546         xfree(child_state.keyin);
1547
1548         if (!compat20) {
1549                 packet_set_iv(MODE_OUT, child_state.ivout);
1550                 xfree(child_state.ivout);
1551                 packet_set_iv(MODE_IN, child_state.ivin);
1552                 xfree(child_state.ivin);
1553         }
1554
1555         memcpy(&incoming_stream, &child_state.incoming,
1556             sizeof(incoming_stream));
1557         memcpy(&outgoing_stream, &child_state.outgoing,
1558             sizeof(outgoing_stream));
1559
1560         /* Update with new address */
1561         if (options.compression)
1562                 mm_init_compression(pmonitor->m_zlib);
1563
1564         /* Network I/O buffers */
1565         /* XXX inefficient for large buffers, need: buffer_init_from_string */
1566         buffer_clear(&input);
1567         buffer_append(&input, child_state.input, child_state.ilen);
1568         memset(child_state.input, 0, child_state.ilen);
1569         xfree(child_state.input);
1570
1571         buffer_clear(&output);
1572         buffer_append(&output, child_state.output, child_state.olen);
1573         memset(child_state.output, 0, child_state.olen);
1574         xfree(child_state.output);
1575 }
1576
1577 static Kex *
1578 mm_get_kex(Buffer *m)
1579 {
1580         Kex *kex;
1581         void *blob;
1582         u_int bloblen;
1583
1584         kex = xmalloc(sizeof(*kex));
1585         memset(kex, 0, sizeof(*kex));
1586         kex->session_id = buffer_get_string(m, &kex->session_id_len);
1587         if ((session_id2 == NULL) ||
1588             (kex->session_id_len != session_id2_len) ||
1589             (memcmp(kex->session_id, session_id2, session_id2_len) != 0))
1590                 fatal("mm_get_get: internal error: bad session id");
1591         kex->we_need = buffer_get_int(m);
1592         kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1593         kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1594 #ifdef GSSAPI
1595         kex->kex[KEX_GSS_GRP1_SHA1] = kexgss_server;
1596 #endif
1597         kex->server = 1;
1598         kex->hostkey_type = buffer_get_int(m);
1599         kex->kex_type = buffer_get_int(m);
1600         blob = buffer_get_string(m, &bloblen);
1601         buffer_init(&kex->my);
1602         buffer_append(&kex->my, blob, bloblen);
1603         xfree(blob);
1604         blob = buffer_get_string(m, &bloblen);
1605         buffer_init(&kex->peer);
1606         buffer_append(&kex->peer, blob, bloblen);
1607         xfree(blob);
1608         kex->done = 1;
1609         kex->flags = buffer_get_int(m);
1610         kex->client_version_string = buffer_get_string(m, NULL);
1611         kex->server_version_string = buffer_get_string(m, NULL);
1612         kex->load_host_key=&get_hostkey_by_type;
1613         kex->host_key_index=&get_hostkey_index;
1614
1615         return (kex);
1616 }
1617
1618 /* This function requries careful sanity checking */
1619
1620 void
1621 mm_get_keystate(struct monitor *pmonitor)
1622 {
1623         Buffer m;
1624         u_char *blob, *p;
1625         u_int bloblen, plen;
1626         u_int32_t seqnr, packets;
1627         u_int64_t blocks;
1628
1629         debug3("%s: Waiting for new keys", __func__);
1630
1631         buffer_init(&m);
1632         mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
1633         if (!compat20) {
1634                 child_state.ssh1protoflags = buffer_get_int(&m);
1635                 child_state.ssh1cipher = buffer_get_int(&m);
1636                 child_state.ssh1key = buffer_get_string(&m,
1637                     &child_state.ssh1keylen);
1638                 child_state.ivout = buffer_get_string(&m,
1639                     &child_state.ivoutlen);
1640                 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1641                 goto skip;
1642         } else {
1643                 /* Get the Kex for rekeying */
1644                 *pmonitor->m_pkex = mm_get_kex(&m);
1645         }
1646
1647         blob = buffer_get_string(&m, &bloblen);
1648         current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
1649         xfree(blob);
1650
1651         debug3("%s: Waiting for second key", __func__);
1652         blob = buffer_get_string(&m, &bloblen);
1653         current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
1654         xfree(blob);
1655
1656         /* Now get sequence numbers for the packets */
1657         seqnr = buffer_get_int(&m);
1658         blocks = buffer_get_int64(&m);
1659         packets = buffer_get_int(&m);
1660         packet_set_state(MODE_OUT, seqnr, blocks, packets);
1661         seqnr = buffer_get_int(&m);
1662         blocks = buffer_get_int64(&m);
1663         packets = buffer_get_int(&m);
1664         packet_set_state(MODE_IN, seqnr, blocks, packets);
1665
1666  skip:
1667         /* Get the key context */
1668         child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1669         child_state.keyin  = buffer_get_string(&m, &child_state.keyinlen);
1670
1671         debug3("%s: Getting compression state", __func__);
1672         /* Get compression state */
1673         p = buffer_get_string(&m, &plen);
1674         if (plen != sizeof(child_state.outgoing))
1675                 fatal("%s: bad request size", __func__);
1676         memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1677         xfree(p);
1678
1679         p = buffer_get_string(&m, &plen);
1680         if (plen != sizeof(child_state.incoming))
1681                 fatal("%s: bad request size", __func__);
1682         memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1683         xfree(p);
1684
1685         /* Network I/O buffers */
1686         debug3("%s: Getting Network I/O buffers", __func__);
1687         child_state.input = buffer_get_string(&m, &child_state.ilen);
1688         child_state.output = buffer_get_string(&m, &child_state.olen);
1689
1690         buffer_free(&m);
1691 }
1692
1693
1694 /* Allocation functions for zlib */
1695 void *
1696 mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1697 {
1698         size_t len = (size_t) size * ncount;
1699         void *address;
1700
1701         if (len == 0 || ncount > SIZE_T_MAX / size)
1702                 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1703
1704         address = mm_malloc(mm, len);
1705
1706         return (address);
1707 }
1708
1709 void
1710 mm_zfree(struct mm_master *mm, void *address)
1711 {
1712         mm_free(mm, address);
1713 }
1714
1715 void
1716 mm_init_compression(struct mm_master *mm)
1717 {
1718         outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1719         outgoing_stream.zfree = (free_func)mm_zfree;
1720         outgoing_stream.opaque = mm;
1721
1722         incoming_stream.zalloc = (alloc_func)mm_zalloc;
1723         incoming_stream.zfree = (free_func)mm_zfree;
1724         incoming_stream.opaque = mm;
1725 }
1726
1727 /* XXX */
1728
1729 #define FD_CLOSEONEXEC(x) do { \
1730         if (fcntl(x, F_SETFD, 1) == -1) \
1731                 fatal("fcntl(%d, F_SETFD)", x); \
1732 } while (0)
1733
1734 static void
1735 monitor_socketpair(int *pair)
1736 {
1737 #ifdef HAVE_SOCKETPAIR
1738         if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
1739                 fatal("%s: socketpair", __func__);
1740 #else
1741         fatal("%s: UsePrivilegeSeparation=yes not supported",
1742             __func__);
1743 #endif
1744         FD_CLOSEONEXEC(pair[0]);
1745         FD_CLOSEONEXEC(pair[1]);
1746 }
1747
1748 #define MM_MEMSIZE      65536
1749
1750 struct monitor *
1751 monitor_init(void)
1752 {
1753         struct monitor *mon;
1754         int pair[2];
1755
1756         mon = xmalloc(sizeof(*mon));
1757
1758         mon->m_pid = 0;
1759         monitor_socketpair(pair);
1760
1761         mon->m_recvfd = pair[0];
1762         mon->m_sendfd = pair[1];
1763
1764         /* Used to share zlib space across processes */
1765         if (options.compression) {
1766                 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1767                 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
1768
1769                 /* Compression needs to share state across borders */
1770                 mm_init_compression(mon->m_zlib);
1771         }
1772
1773         return mon;
1774 }
1775
1776 void
1777 monitor_reinit(struct monitor *mon)
1778 {
1779         int pair[2];
1780
1781         monitor_socketpair(pair);
1782
1783         mon->m_recvfd = pair[0];
1784         mon->m_sendfd = pair[1];
1785 }
1786
1787 #ifdef GSSAPI
1788 int
1789 mm_answer_gss_setup_ctx(int socket, Buffer *m)
1790 {
1791         gss_OID_desc oid;
1792         OM_uint32 major;
1793         u_int len;
1794
1795         oid.elements = buffer_get_string(m, &len);
1796         oid.length = len;
1797
1798         major = ssh_gssapi_server_ctx(&gsscontext, &oid);
1799
1800         xfree(oid.elements);
1801
1802         buffer_clear(m);
1803         buffer_put_int(m, major);
1804
1805         mm_request_send(socket,MONITOR_ANS_GSSSETUP, m);
1806
1807         /* Now we have a context, enable the step */
1808         monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1809
1810         return (0);
1811 }
1812
1813 int
1814 mm_answer_gss_accept_ctx(int socket, Buffer *m)
1815 {
1816         gss_buffer_desc in;
1817         gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
1818         OM_uint32 major,minor;
1819         OM_uint32 flags = 0; /* GSI needs this */
1820         u_int len;
1821
1822         in.value = buffer_get_string(m, &len);
1823         in.length = len;
1824         major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
1825         xfree(in.value);
1826
1827         buffer_clear(m);
1828         buffer_put_int(m, major);
1829         buffer_put_string(m, out.value, out.length);
1830         buffer_put_int(m, flags);
1831         mm_request_send(socket, MONITOR_ANS_GSSSTEP, m);
1832
1833         gss_release_buffer(&minor, &out);
1834
1835         if (major==GSS_S_COMPLETE) {
1836                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1837                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
1838                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSIGN, 1);
1839                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
1840         }
1841         return (0);
1842 }
1843
1844 int
1845 mm_answer_gss_checkmic(int socket, Buffer *m)
1846 {
1847         gss_buffer_desc gssbuf, mic;
1848         OM_uint32 ret;
1849         u_int len;
1850
1851         gssbuf.value = buffer_get_string(m, &len);
1852         gssbuf.length = len;
1853         mic.value = buffer_get_string(m, &len);
1854         mic.length = len;
1855
1856         ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
1857
1858         xfree(gssbuf.value);
1859         xfree(mic.value);
1860
1861         buffer_clear(m);
1862         buffer_put_int(m, ret);
1863
1864         mm_request_send(socket, MONITOR_ANS_GSSCHECKMIC, m);
1865
1866         if (!GSS_ERROR(ret))
1867                 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
1868
1869         return (0);
1870 }
1871
1872 int
1873 mm_answer_gss_userok(int socket, Buffer *m)
1874 {
1875         int authenticated;
1876
1877         authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1878
1879         buffer_clear(m);
1880         buffer_put_int(m, authenticated);
1881
1882         debug3("%s: sending result %d", __func__, authenticated);
1883         mm_request_send(socket, MONITOR_ANS_GSSUSEROK, m);
1884
1885         auth_method="gssapi-with-mic";
1886
1887         /* Monitor loop will terminate if authenticated */
1888         return (authenticated);
1889 }
1890
1891 int
1892 mm_answer_gss_sign(int socket, Buffer *m) {
1893         gss_buffer_desc data,hash;
1894         OM_uint32 major,minor;
1895         u_int len;
1896
1897         data.value = buffer_get_string(m, &len);
1898         data.length = len;
1899         if (data.length != 20)
1900                 fatal("%s: data length incorrect: %d", __func__,
1901                       (int)data.length);
1902
1903         /* Save the session ID - only first time round */
1904         if (session_id2_len == 0) {
1905                 session_id2_len=data.length;
1906                 session_id2 = xmalloc(session_id2_len);
1907                 memcpy(session_id2, data.value, session_id2_len);
1908         }
1909         major=ssh_gssapi_sign(gsscontext, &data, &hash);
1910
1911         xfree(data.value);
1912
1913         buffer_clear(m);
1914         buffer_put_int(m, major);
1915         buffer_put_string(m, hash.value, hash.length);
1916
1917         mm_request_send(socket,MONITOR_ANS_GSSSIGN,m);
1918
1919         gss_release_buffer(&minor,&hash);
1920
1921         /* Turn on permissions for getpwnam */
1922         monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1923         
1924         return(0);
1925 }
1926
1927 int
1928 mm_answer_gss_error(int socket, Buffer *m) {
1929         OM_uint32 major,minor;
1930         char *msg;
1931
1932         msg=ssh_gssapi_last_error(gsscontext,&major,&minor);
1933         buffer_clear(m);
1934         buffer_put_int(m,major);
1935         buffer_put_int(m,minor);
1936         buffer_put_cstring(m,msg);
1937
1938         mm_request_send(socket,MONITOR_ANS_GSSERR,m);
1939
1940         xfree(msg);
1941         
1942         return(0);
1943 }
1944
1945 int
1946 mm_answer_gss_indicate_mechs(int socket, Buffer *m) {
1947         OM_uint32 major,minor;
1948         gss_OID_set mech_set;
1949         int i;
1950
1951         major=gss_indicate_mechs(&minor, &mech_set);
1952
1953         buffer_clear(m);
1954         buffer_put_int(m, major);
1955         buffer_put_int(m, mech_set->count);
1956         for (i=0; i < mech_set->count; i++) {
1957             buffer_put_string(m, mech_set->elements[i].elements,
1958                               mech_set->elements[i].length);
1959         }
1960
1961 #if !defined(MECHGLUE) /* mechglue memory management bug ??? */
1962         gss_release_oid_set(&minor,&mech_set);
1963 #endif
1964         
1965         mm_request_send(socket,MONITOR_ANS_GSSMECHS,m);
1966
1967         return(0);
1968 }
1969
1970 int
1971 mm_answer_gss_localname(int socket, Buffer *m) {
1972         char *name;
1973
1974         ssh_gssapi_localname(&name);
1975
1976         buffer_clear(m);
1977         if (name) {
1978             buffer_put_cstring(m, name);
1979             debug3("%s: sending result %s", __func__, name);
1980             xfree(name);
1981         } else {
1982             buffer_put_cstring(m, "");
1983             debug3("%s: sending result \"\"", __func__);
1984         }
1985
1986         mm_request_send(socket, MONITOR_ANS_GSSLOCALNAME, m);
1987
1988         return(0);
1989 }
1990 #endif /* GSSAPI */
This page took 0.191314 seconds and 5 git commands to generate.