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