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