]> git.ozlabs.org Git - ppp.git/blob - pppd/chap.c
Corrected version of MPPE kernel support (Frank Cusack)
[ppp.git] / pppd / chap.c
1 /*
2  * chap_ms.c - Challenge Handshake Authentication Protocol.
3  *
4  * Copyright (c) 1993 The Australian National University.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted
8  * provided that the above copyright notice and this paragraph are
9  * duplicated in all such forms and that any documentation,
10  * advertising materials, and other materials related to such
11  * distribution and use acknowledge that the software was developed
12  * by the Australian National University.  The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * Copyright (c) 1991 Gregory M. Christy.
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms are permitted
23  * provided that the above copyright notice and this paragraph are
24  * duplicated in all such forms and that any documentation,
25  * advertising materials, and other materials related to such
26  * distribution and use acknowledge that the software was developed
27  * by Gregory M. Christy.  The name of the author may not be used to
28  * endorse or promote products derived from this software without
29  * specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
32  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
33  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
34  */
35
36 #define RCSID   "$Id: chap.c,v 1.30 2002/04/02 13:54:59 dfs Exp $"
37
38 /*
39  * TODO:
40  */
41
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <sys/types.h>
46 #include <sys/time.h>
47
48 #include "pppd.h"
49 #include "chap.h"
50 #include "md5.h"
51 #ifdef CHAPMS
52 #include "chap_ms.h"
53 #endif
54
55 /* Hook for a plugin to say if we can possibly authenticate a peer using CHAP */
56 int (*chap_check_hook) __P((void)) = NULL;
57
58 /* Hook for a plugin to get the CHAP password for authenticating us */
59 int (*chap_passwd_hook) __P((char *user, char *passwd)) = NULL;
60
61 /* Hook for a plugin to validate CHAP challenge */
62 int (*chap_auth_hook) __P((char *user,
63                            u_char *remmd,
64                            int remmd_len,
65                            chap_state *cstate)) = NULL;
66
67 static const char rcsid[] = RCSID;
68
69 #ifdef CHAPMS
70 /* For MPPE debug */
71 /* Use "[]|}{?/><,`!2&&(" (sans quotes) for RFC 3079 MS-CHAPv2 test value */
72 static char *mschap_challenge = NULL;
73 /* Use "!@\#$%^&*()_+:3|~" (sans quotes, backslash is to escape #) for ... */
74 static char *mschap2_peer_challenge = NULL;
75 #endif
76
77 /*
78  * Command-line options.
79  */
80 static option_t chap_option_list[] = {
81     { "chap-restart", o_int, &chap[0].timeouttime,
82       "Set timeout for CHAP", OPT_PRIO },
83     { "chap-max-challenge", o_int, &chap[0].max_transmits,
84       "Set max #xmits for challenge", OPT_PRIO },
85     { "chap-interval", o_int, &chap[0].chal_interval,
86       "Set interval for rechallenge", OPT_PRIO },
87 #ifdef MSLANMAN
88     { "ms-lanman", o_bool, &ms_lanman,
89       "Use LanMan passwd when using MS-CHAP", 1 },
90 #endif
91 #ifdef DEBUGMPPEKEY
92     { "mschap-challenge", o_string, &mschap_challenge,
93       "specify CHAP challenge" },
94     { "mschap2-peer-challenge", o_string, &mschap2_peer_challenge,
95       "specify CHAP peer challenge" },
96 #endif
97     { NULL }
98 };
99
100 /*
101  * Protocol entry points.
102  */
103 static void ChapInit __P((int));
104 static void ChapLowerUp __P((int));
105 static void ChapLowerDown __P((int));
106 static void ChapInput __P((int, u_char *, int));
107 static void ChapProtocolReject __P((int));
108 static int  ChapPrintPkt __P((u_char *, int,
109                               void (*) __P((void *, char *, ...)), void *));
110
111 struct protent chap_protent = {
112     PPP_CHAP,
113     ChapInit,
114     ChapInput,
115     ChapProtocolReject,
116     ChapLowerUp,
117     ChapLowerDown,
118     NULL,
119     NULL,
120     ChapPrintPkt,
121     NULL,
122     1,
123     "CHAP",
124     NULL,
125     chap_option_list,
126     NULL,
127     NULL,
128     NULL
129 };
130
131 chap_state chap[NUM_PPP];               /* CHAP state; one for each unit */
132
133 static void ChapChallengeTimeout __P((void *));
134 static void ChapResponseTimeout __P((void *));
135 static void ChapReceiveChallenge __P((chap_state *, u_char *, int, int));
136 static void ChapRechallenge __P((void *));
137 static void ChapReceiveResponse __P((chap_state *, u_char *, int, int));
138 static void ChapReceiveSuccess __P((chap_state *, u_char *, int, int));
139 static void ChapReceiveFailure __P((chap_state *, u_char *, int, int));
140 static void ChapSendStatus __P((chap_state *, int));
141 static void ChapSendChallenge __P((chap_state *));
142 static void ChapSendResponse __P((chap_state *));
143 static void ChapGenChallenge __P((chap_state *));
144
145 extern double drand48 __P((void));
146 extern void srand48 __P((long));
147
148 /*
149  * ChapInit - Initialize a CHAP unit.
150  */
151 static void
152 ChapInit(unit)
153     int unit;
154 {
155     chap_state *cstate = &chap[unit];
156
157     BZERO(cstate, sizeof(*cstate));
158     cstate->unit = unit;
159     cstate->clientstate = CHAPCS_INITIAL;
160     cstate->serverstate = CHAPSS_INITIAL;
161     cstate->timeouttime = CHAP_DEFTIMEOUT;
162     cstate->max_transmits = CHAP_DEFTRANSMITS;
163     /* random number generator is initialized in magic_init */
164 }
165
166
167 /*
168  * ChapAuthWithPeer - Authenticate us with our peer (start client).
169  *
170  */
171 void
172 ChapAuthWithPeer(unit, our_name, digest)
173     int unit;
174     char *our_name;
175     int digest;
176 {
177     chap_state *cstate = &chap[unit];
178
179     cstate->resp_name = our_name;
180     cstate->resp_type = digest;
181
182     if (cstate->clientstate == CHAPCS_INITIAL ||
183         cstate->clientstate == CHAPCS_PENDING) {
184         /* lower layer isn't up - wait until later */
185         cstate->clientstate = CHAPCS_PENDING;
186         return;
187     }
188
189     /*
190      * We get here as a result of LCP coming up.
191      * So even if CHAP was open before, we will
192      * have to re-authenticate ourselves.
193      */
194     cstate->clientstate = CHAPCS_LISTEN;
195 }
196
197
198 /*
199  * ChapAuthPeer - Authenticate our peer (start server).
200  */
201 void
202 ChapAuthPeer(unit, our_name, digest)
203     int unit;
204     char *our_name;
205     int digest;
206 {
207     chap_state *cstate = &chap[unit];
208
209     cstate->chal_name = our_name;
210     cstate->chal_type = digest;
211
212     if (cstate->serverstate == CHAPSS_INITIAL ||
213         cstate->serverstate == CHAPSS_PENDING) {
214         /* lower layer isn't up - wait until later */
215         cstate->serverstate = CHAPSS_PENDING;
216         return;
217     }
218
219     ChapGenChallenge(cstate);
220     ChapSendChallenge(cstate);          /* crank it up dude! */
221     cstate->serverstate = CHAPSS_INITIAL_CHAL;
222 }
223
224
225 /*
226  * ChapChallengeTimeout - Timeout expired on sending challenge.
227  */
228 static void
229 ChapChallengeTimeout(arg)
230     void *arg;
231 {
232     chap_state *cstate = (chap_state *) arg;
233
234     /* if we aren't sending challenges, don't worry.  then again we */
235     /* probably shouldn't be here either */
236     if (cstate->serverstate != CHAPSS_INITIAL_CHAL &&
237         cstate->serverstate != CHAPSS_RECHALLENGE)
238         return;
239
240     if (cstate->chal_transmits >= cstate->max_transmits) {
241         /* give up on peer */
242         error("Peer failed to respond to CHAP challenge");
243         cstate->serverstate = CHAPSS_BADAUTH;
244         auth_peer_fail(cstate->unit, PPP_CHAP);
245         return;
246     }
247
248     ChapSendChallenge(cstate);          /* Re-send challenge */
249 }
250
251
252 /*
253  * ChapResponseTimeout - Timeout expired on sending response.
254  */
255 static void
256 ChapResponseTimeout(arg)
257     void *arg;
258 {
259     chap_state *cstate = (chap_state *) arg;
260
261     /* if we aren't sending a response, don't worry. */
262     if (cstate->clientstate != CHAPCS_RESPONSE)
263         return;
264
265     ChapSendResponse(cstate);           /* re-send response */
266 }
267
268
269 /*
270  * ChapRechallenge - Time to challenge the peer again.
271  */
272 static void
273 ChapRechallenge(arg)
274     void *arg;
275 {
276     chap_state *cstate = (chap_state *) arg;
277
278     /* if we aren't sending a response, don't worry. */
279     if (cstate->serverstate != CHAPSS_OPEN)
280         return;
281
282     ChapGenChallenge(cstate);
283     ChapSendChallenge(cstate);
284     cstate->serverstate = CHAPSS_RECHALLENGE;
285 }
286
287
288 /*
289  * ChapLowerUp - The lower layer is up.
290  *
291  * Start up if we have pending requests.
292  */
293 static void
294 ChapLowerUp(unit)
295     int unit;
296 {
297     chap_state *cstate = &chap[unit];
298
299     if (cstate->clientstate == CHAPCS_INITIAL)
300         cstate->clientstate = CHAPCS_CLOSED;
301     else if (cstate->clientstate == CHAPCS_PENDING)
302         cstate->clientstate = CHAPCS_LISTEN;
303
304     if (cstate->serverstate == CHAPSS_INITIAL)
305         cstate->serverstate = CHAPSS_CLOSED;
306     else if (cstate->serverstate == CHAPSS_PENDING) {
307         ChapGenChallenge(cstate);
308         ChapSendChallenge(cstate);
309         cstate->serverstate = CHAPSS_INITIAL_CHAL;
310     }
311 }
312
313
314 /*
315  * ChapLowerDown - The lower layer is down.
316  *
317  * Cancel all timeouts.
318  */
319 static void
320 ChapLowerDown(unit)
321     int unit;
322 {
323     chap_state *cstate = &chap[unit];
324
325     /* Timeout(s) pending?  Cancel if so. */
326     if (cstate->serverstate == CHAPSS_INITIAL_CHAL ||
327         cstate->serverstate == CHAPSS_RECHALLENGE)
328         UNTIMEOUT(ChapChallengeTimeout, cstate);
329     else if (cstate->serverstate == CHAPSS_OPEN
330              && cstate->chal_interval != 0)
331         UNTIMEOUT(ChapRechallenge, cstate);
332     if (cstate->clientstate == CHAPCS_RESPONSE)
333         UNTIMEOUT(ChapResponseTimeout, cstate);
334
335     cstate->clientstate = CHAPCS_INITIAL;
336     cstate->serverstate = CHAPSS_INITIAL;
337 }
338
339
340 /*
341  * ChapProtocolReject - Peer doesn't grok CHAP.
342  */
343 static void
344 ChapProtocolReject(unit)
345     int unit;
346 {
347     chap_state *cstate = &chap[unit];
348
349     if (cstate->serverstate != CHAPSS_INITIAL &&
350         cstate->serverstate != CHAPSS_CLOSED)
351         auth_peer_fail(unit, PPP_CHAP);
352     if (cstate->clientstate != CHAPCS_INITIAL &&
353         cstate->clientstate != CHAPCS_CLOSED)
354         auth_withpeer_fail(unit, PPP_CHAP);
355     ChapLowerDown(unit);                /* shutdown chap */
356 }
357
358
359 /*
360  * ChapInput - Input CHAP packet.
361  */
362 static void
363 ChapInput(unit, inpacket, packet_len)
364     int unit;
365     u_char *inpacket;
366     int packet_len;
367 {
368     chap_state *cstate = &chap[unit];
369     u_char *inp;
370     u_char code, id;
371     int len;
372
373     /*
374      * Parse header (code, id and length).
375      * If packet too short, drop it.
376      */
377     inp = inpacket;
378     if (packet_len < CHAP_HEADERLEN) {
379         CHAPDEBUG(("ChapInput: rcvd short header."));
380         return;
381     }
382     GETCHAR(code, inp);
383     GETCHAR(id, inp);
384     GETSHORT(len, inp);
385     if (len < CHAP_HEADERLEN) {
386         CHAPDEBUG(("ChapInput: rcvd illegal length."));
387         return;
388     }
389     if (len > packet_len) {
390         CHAPDEBUG(("ChapInput: rcvd short packet."));
391         return;
392     }
393     len -= CHAP_HEADERLEN;
394
395     /*
396      * Action depends on code (as in fact it usually does :-).
397      */
398     switch (code) {
399     case CHAP_CHALLENGE:
400         ChapReceiveChallenge(cstate, inp, id, len);
401         break;
402
403     case CHAP_RESPONSE:
404         ChapReceiveResponse(cstate, inp, id, len);
405         break;
406
407     case CHAP_FAILURE:
408         ChapReceiveFailure(cstate, inp, id, len);
409         break;
410
411     case CHAP_SUCCESS:
412         ChapReceiveSuccess(cstate, inp, id, len);
413         break;
414
415     default:                            /* Need code reject? */
416         warn("Unknown CHAP code (%d) received.", code);
417         break;
418     }
419 }
420
421
422 /*
423  * ChapReceiveChallenge - Receive Challenge and send Response.
424  */
425 static void
426 ChapReceiveChallenge(cstate, inp, id, len)
427     chap_state *cstate;
428     u_char *inp;
429     int id;
430     int len;
431 {
432     int rchallenge_len;
433     u_char *rchallenge;
434     int secret_len;
435     char secret[MAXSECRETLEN];
436     char rhostname[256];
437     MD5_CTX mdContext;
438     u_char hash[MD5_SIGNATURE_SIZE];
439
440     if (cstate->clientstate == CHAPCS_CLOSED ||
441         cstate->clientstate == CHAPCS_PENDING) {
442         CHAPDEBUG(("ChapReceiveChallenge: in state %d", cstate->clientstate));
443         return;
444     }
445
446     if (len < 2) {
447         CHAPDEBUG(("ChapReceiveChallenge: rcvd short packet."));
448         return;
449     }
450
451     GETCHAR(rchallenge_len, inp);
452     len -= sizeof (u_char) + rchallenge_len;    /* now name field length */
453     if (len < 0) {
454         CHAPDEBUG(("ChapReceiveChallenge: rcvd short packet."));
455         return;
456     }
457     rchallenge = inp;
458     INCPTR(rchallenge_len, inp);
459
460     if (len >= sizeof(rhostname))
461         len = sizeof(rhostname) - 1;
462     BCOPY(inp, rhostname, len);
463     rhostname[len] = '\000';
464
465     /* Microsoft doesn't send their name back in the PPP packet */
466     if (explicit_remote || (remote_name[0] != 0 && rhostname[0] == 0)) {
467         strlcpy(rhostname, remote_name, sizeof(rhostname));
468         CHAPDEBUG(("ChapReceiveChallenge: using '%q' as remote name",
469                    rhostname));
470     }
471
472     /* get secret for authenticating ourselves with the specified host */
473     if (!get_secret(cstate->unit, cstate->resp_name, rhostname,
474                     secret, &secret_len, 0)) {
475         secret_len = 0;         /* assume null secret if can't find one */
476         warn("No CHAP secret found for authenticating us to %q", rhostname);
477     }
478
479     /* cancel response send timeout if necessary */
480     if (cstate->clientstate == CHAPCS_RESPONSE)
481         UNTIMEOUT(ChapResponseTimeout, cstate);
482
483     cstate->resp_id = id;
484     cstate->resp_transmits = 0;
485
486     /*  generate MD based on negotiated type */
487     switch (cstate->resp_type) {
488
489     case CHAP_DIGEST_MD5:
490         MD5Init(&mdContext);
491         MD5Update(&mdContext, &cstate->resp_id, 1);
492         MD5Update(&mdContext, secret, secret_len);
493         MD5Update(&mdContext, rchallenge, rchallenge_len);
494         MD5Final(hash, &mdContext);
495         BCOPY(hash, cstate->response, MD5_SIGNATURE_SIZE);
496         cstate->resp_length = MD5_SIGNATURE_SIZE;
497         break;
498
499 #ifdef CHAPMS
500     case CHAP_MICROSOFT:
501         ChapMS(cstate, rchallenge, secret, secret_len,
502                (MS_ChapResponse *) cstate->response);
503         cstate->resp_length = MS_CHAP_RESPONSE_LEN;
504         break;
505
506     case CHAP_MICROSOFT_V2:
507         ChapMS2(cstate, rchallenge,
508                 mschap2_peer_challenge? mschap2_peer_challenge: NULL,
509                 cstate->resp_name, secret, secret_len,
510                 (MS_Chap2Response *) cstate->response, cstate->earesponse,
511                  MS_CHAP2_AUTHENTICATEE);
512         cstate->resp_length = MS_CHAP2_RESPONSE_LEN;
513         break;
514 #endif /* CHAPMS */
515
516     default:
517         CHAPDEBUG(("unknown digest type %d", cstate->resp_type));
518         return;
519     }
520
521     BZERO(secret, sizeof(secret));
522     ChapSendResponse(cstate);
523 }
524
525
526 /*
527  * ChapReceiveResponse - Receive and process response.
528  */
529 static void
530 ChapReceiveResponse(cstate, inp, id, len)
531     chap_state *cstate;
532     u_char *inp;
533     int id;
534     int len;
535 {
536     u_char *remmd, remmd_len;
537     int secret_len, old_state;
538     int code;
539     char rhostname[256];
540     MD5_CTX mdContext;
541     char secret[MAXSECRETLEN];
542     u_char hash[MD5_SIGNATURE_SIZE];
543
544     if (cstate->serverstate == CHAPSS_CLOSED ||
545         cstate->serverstate == CHAPSS_PENDING) {
546         CHAPDEBUG(("ChapReceiveResponse: in state %d", cstate->serverstate));
547         return;
548     }
549
550     if (id != cstate->chal_id)
551         return;                 /* doesn't match ID of last challenge */
552
553     /*
554      * If we have received a duplicate or bogus Response,
555      * we have to send the same answer (Success/Failure)
556      * as we did for the first Response we saw.
557      */
558     if (cstate->serverstate == CHAPSS_OPEN) {
559         ChapSendStatus(cstate, CHAP_SUCCESS);
560         return;
561     }
562     if (cstate->serverstate == CHAPSS_BADAUTH) {
563         ChapSendStatus(cstate, CHAP_FAILURE);
564         return;
565     }
566
567     if (len < 2) {
568         CHAPDEBUG(("ChapReceiveResponse: rcvd short packet."));
569         return;
570     }
571     GETCHAR(remmd_len, inp);            /* get length of MD */
572     remmd = inp;                        /* get pointer to MD */
573     INCPTR(remmd_len, inp);
574
575     len -= sizeof (u_char) + remmd_len;
576     if (len < 0) {
577         CHAPDEBUG(("ChapReceiveResponse: rcvd short packet."));
578         return;
579     }
580
581     UNTIMEOUT(ChapChallengeTimeout, cstate);
582
583     if (len >= sizeof(rhostname))
584         len = sizeof(rhostname) - 1;
585     BCOPY(inp, rhostname, len);
586     rhostname[len] = '\000';
587
588     /*
589      * Get secret for authenticating them with us,
590      * do the hash ourselves, and compare the result.
591      */
592     code = CHAP_FAILURE;
593
594     /* If a plugin will verify the response, let the plugin do it. */
595     if (chap_auth_hook) {
596         code = (*chap_auth_hook) ( (explicit_remote ? remote_name : rhostname),
597                                    remmd, (int) remmd_len,
598                                    cstate );
599     } else {
600         if (!get_secret(cstate->unit, (explicit_remote? remote_name: rhostname),
601                         cstate->chal_name, secret, &secret_len, 1)) {
602             warn("No CHAP secret found for authenticating %q", rhostname);
603         } else {
604
605             /*  generate MD based on negotiated type */
606             switch (cstate->chal_type) {
607
608             case CHAP_DIGEST_MD5:
609                 if (remmd_len != MD5_SIGNATURE_SIZE)
610                     break;                      /* not even the right length */
611                 MD5Init(&mdContext);
612                 MD5Update(&mdContext, &cstate->chal_id, 1);
613                 MD5Update(&mdContext, secret, secret_len);
614                 MD5Update(&mdContext, cstate->challenge, cstate->chal_len);
615                 MD5Final(hash, &mdContext);
616
617                 /* compare MDs and send the appropriate status */
618                 if (memcmp(hash, remmd, MD5_SIGNATURE_SIZE) == 0)
619                     code = CHAP_SUCCESS;        /* they are the same! */
620                 break;
621
622 #ifdef CHAPMS
623             case CHAP_MICROSOFT:
624             {
625                 int response_offset, response_size;
626                 MS_ChapResponse *rmd = (MS_ChapResponse *) remmd;
627                 MS_ChapResponse md;
628
629                 if (remmd_len != MS_CHAP_RESPONSE_LEN)
630                     break;                      /* not even the right length */
631
632                 /* Determine which part of response to verify against */
633                 if (rmd->UseNT[0]) {
634                     response_offset = offsetof(MS_ChapResponse, NTResp);
635                     response_size = sizeof(rmd->NTResp);
636                 } else {
637 #ifdef MSLANMAN
638                     response_offset = offsetof(MS_ChapResponse, LANManResp);
639                     response_size = sizeof(rmd->LANManResp);
640 #else
641                     /* Should really propagate this into the error packet. */
642                     notice("Peer request for LANMAN auth not supported");
643                     break;
644 #endif /* MSLANMAN */
645                 }
646
647                 /* Generate the expected response. */
648                 ChapMS(cstate, cstate->challenge, secret, secret_len, &md);
649
650                 /* compare MDs and send the appropriate status */
651                 if (memcmp(&md + response_offset,
652                            remmd + response_offset, response_size) == 0)
653                     code = CHAP_SUCCESS;        /* they are the same! */
654                 break;
655             }
656
657             case CHAP_MICROSOFT_V2:
658             {
659                 MS_Chap2Response *rmd = (MS_Chap2Response *) remmd;
660                 MS_Chap2Response md;
661
662                 if (remmd_len != MS_CHAP2_RESPONSE_LEN)
663                     break;                      /* not even the right length */
664
665                 /* Generate the expected response and our mutual auth. */
666                 ChapMS2(cstate, cstate->challenge, rmd->PeerChallenge,
667                         (explicit_remote? remote_name: rhostname),
668                         secret, secret_len, &md,
669                         cstate->saresponse, MS_CHAP2_AUTHENTICATOR);
670
671                 /* compare MDs and send the appropriate status */
672                 if (memcmp(md.NTResp, rmd->NTResp, sizeof(md.NTResp)) == 0)
673                     code = CHAP_SUCCESS;        /* yay! */
674                 break;
675             }
676 #endif /* CHAPMS */
677
678             default:
679                 CHAPDEBUG(("unknown digest type %d", cstate->chal_type));
680             }
681         }
682
683         BZERO(secret, sizeof(secret));
684     }
685     ChapSendStatus(cstate, code);
686
687     if (code == CHAP_SUCCESS) {
688         old_state = cstate->serverstate;
689         cstate->serverstate = CHAPSS_OPEN;
690         if (old_state == CHAPSS_INITIAL_CHAL) {
691             auth_peer_success(cstate->unit, PPP_CHAP, cstate->chal_type,
692                               rhostname, len);
693         }
694         if (cstate->chal_interval != 0)
695             TIMEOUT(ChapRechallenge, cstate, cstate->chal_interval);
696         notice("CHAP peer authentication succeeded for %q", rhostname);
697
698     } else {
699         error("CHAP peer authentication failed for remote host %q", rhostname);
700         cstate->serverstate = CHAPSS_BADAUTH;
701         auth_peer_fail(cstate->unit, PPP_CHAP);
702     }
703 }
704
705 /*
706  * ChapReceiveSuccess - Receive Success
707  */
708 static void
709 ChapReceiveSuccess(cstate, inp, id, len)
710     chap_state *cstate;
711     u_char *inp;
712     u_char id;
713     int len;
714 {
715
716     if (cstate->clientstate == CHAPCS_OPEN)
717         /* presumably an answer to a duplicate response */
718         return;
719
720     if (cstate->clientstate != CHAPCS_RESPONSE) {
721         /* don't know what this is */
722         CHAPDEBUG(("ChapReceiveSuccess: in state %d\n", cstate->clientstate));
723         return;
724     }
725
726     UNTIMEOUT(ChapResponseTimeout, cstate);
727
728 #ifdef CHAPMS
729     /*
730      * For MS-CHAPv2, we must verify that the peer knows our secret.
731      */
732     if (cstate->resp_type == CHAP_MICROSOFT_V2) {
733         if ((len >= MS_AUTH_RESPONSE_LENGTH + 2) && !strncmp(inp, "S=", 2)) {
734             inp += 2; len -= 2;
735             if (!memcmp(inp, cstate->earesponse, MS_AUTH_RESPONSE_LENGTH)) {
736                 /* Authenticator Response matches. */
737                 inp += MS_AUTH_RESPONSE_LENGTH; /* Eat it */
738                 len -= MS_AUTH_RESPONSE_LENGTH;
739                 if ((len >= 3) && !strncmp(inp, " M=", 3)) {
740                     inp += 3; len -= 3; /* Eat the delimiter */
741                 } else if (len) {
742                     /* Packet has extra text which does not begin " M=" */
743                     error("MS-CHAPv2 Success packet is badly formed.");
744                     auth_withpeer_fail(cstate->unit, PPP_CHAP);
745                 }
746             } else {
747                 /* Authenticator Response did not match expected. */
748                 error("MS-CHAPv2 mutual authentication failed.");
749                 auth_withpeer_fail(cstate->unit, PPP_CHAP);
750             }
751         } else {
752             /* Packet does not start with "S=" */
753             error("MS-CHAPv2 Success packet is badly formed.");
754             auth_withpeer_fail(cstate->unit, PPP_CHAP);
755         }
756     }
757 #endif
758
759     /*
760      * Print message.
761      */
762     if (len > 0)
763         PRINTMSG(inp, len);
764
765     cstate->clientstate = CHAPCS_OPEN;
766
767     auth_withpeer_success(cstate->unit, PPP_CHAP, cstate->resp_type);
768 }
769
770
771 /*
772  * ChapReceiveFailure - Receive failure.
773  */
774 static void
775 ChapReceiveFailure(cstate, inp, id, len)
776     chap_state *cstate;
777     u_char *inp;
778     u_char id;
779     int len;
780 {
781     u_char *msg;
782     u_char *p = inp;
783
784     if (cstate->clientstate != CHAPCS_RESPONSE) {
785         /* don't know what this is */
786         CHAPDEBUG(("ChapReceiveFailure: in state %d\n", cstate->clientstate));
787         return;
788     }
789
790 #ifdef CHAPMS
791     /* We want a null-terminated string for strxxx(). */
792     msg = malloc(len + 1);
793     if (!msg) {
794         p = NULL;
795         notice("Out of memory in ChapReceiveFailure");
796         goto print_msg;
797     }
798     BCOPY(inp, msg, len);
799     p = msg + len; *p = '\0'; p = msg;
800 #endif
801
802     UNTIMEOUT(ChapResponseTimeout, cstate);
803
804 #ifdef CHAPMS
805     if ((cstate->resp_type == CHAP_MICROSOFT_V2) ||
806         (cstate->resp_type == CHAP_MICROSOFT)) {
807         int error;
808
809         /*
810          * Deal with MS-CHAP formatted failure messages; just print the
811          * M=<message> part (if any).  For MS-CHAP we're not really supposed
812          * to use M=<message>, but it shouldn't hurt.  See ChapSendStatus().
813          */
814         if (!strncmp(p, "E=", 2))
815             error = (int) strtol(p, NULL, 10); /* Remember the error code. */
816         else
817             goto print_msg; /* Message is badly formatted. */
818
819         if (len && ((p = strstr(p, " M=")) != NULL)) {
820             /* M=<message> field found. */
821             p += 3;
822         } else {
823             /* No M=<message>; use the error code. */
824             switch(error) {
825             case MS_CHAP_ERROR_RESTRICTED_LOGON_HOURS:
826                 p = "Restricted logon hours";
827                 break;
828
829             case MS_CHAP_ERROR_ACCT_DISABLED:
830                 p = "Account disabled";
831                 break;
832
833             case MS_CHAP_ERROR_PASSWD_EXPIRED:
834                 p = "Password expired";
835                 break;
836
837             case MS_CHAP_ERROR_NO_DIALIN_PERMISSION:
838                 p = "No dialin permission";
839                 break;
840
841             case MS_CHAP_ERROR_AUTHENTICATION_FAILURE:
842                 p = "Authentication failure";
843                 break;
844
845             case MS_CHAP_ERROR_CHANGING_PASSWORD:
846                 /* Should never see this, we don't support Change Password. */
847                 p = "Error changing password";
848                 break;
849
850             default:
851                 free(msg);
852                 p = msg = malloc(len + 33);
853                 if (!msg) {
854                     notice("Out of memory in ChapReceiveFailure");
855                     goto print_msg;
856                 }
857                 slprintf(p, len + 33, "Unknown authentication failure: %.*s",
858                          len, inp);
859                 break;
860             }
861         }
862         len = strlen(p);
863     }
864 #endif
865
866     /*
867      * Print message.
868      */
869 print_msg:
870     if (len > 0 && p != NULL)
871         PRINTMSG(p, len);
872
873     error("CHAP authentication failed");
874     auth_withpeer_fail(cstate->unit, PPP_CHAP);
875 #ifdef CHAPMS
876     if (msg) free(msg);
877 #endif
878 }
879
880
881 /*
882  * ChapSendChallenge - Send an Authenticate challenge.
883  */
884 static void
885 ChapSendChallenge(cstate)
886     chap_state *cstate;
887 {
888     u_char *outp;
889     int chal_len, name_len;
890     int outlen;
891
892     chal_len = cstate->chal_len;
893     name_len = strlen(cstate->chal_name);
894     outlen = CHAP_HEADERLEN + sizeof (u_char) + chal_len + name_len;
895     outp = outpacket_buf;
896
897     MAKEHEADER(outp, PPP_CHAP);         /* paste in a CHAP header */
898
899     PUTCHAR(CHAP_CHALLENGE, outp);
900     PUTCHAR(cstate->chal_id, outp);
901     PUTSHORT(outlen, outp);
902
903     PUTCHAR(chal_len, outp);            /* put length of challenge */
904     BCOPY(cstate->challenge, outp, chal_len);
905     INCPTR(chal_len, outp);
906
907     BCOPY(cstate->chal_name, outp, name_len);   /* append hostname */
908
909     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
910
911     TIMEOUT(ChapChallengeTimeout, cstate, cstate->timeouttime);
912     ++cstate->chal_transmits;
913 }
914
915
916 /*
917  * ChapSendStatus - Send a status response (ack or nak).
918  * See RFC 2433 and RFC 2759 for MS-CHAP and MS-CHAPv2 message formats.
919  */
920 static void
921 ChapSendStatus(cstate, code)
922     chap_state *cstate;
923     int code;
924 {
925     u_char *outp;
926     int i, outlen, msglen;
927     char msg[256];
928     char *p, *q;
929
930     p = msg;
931     q = p + sizeof(msg); /* points 1 byte past msg */
932
933     if (code == CHAP_SUCCESS) {
934 #ifdef CHAPMS
935         if (cstate->chal_type == CHAP_MICROSOFT_V2) {
936             /*
937              * Success message must be formatted as
938              *     "S=<auth_string> M=<message>"
939              * where
940              *     <auth_string> is the Authenticator Response (mutual auth)
941              *     <message> is a text message
942              */
943             slprintf(p, q - p, "S=");
944             p += 2;
945             slprintf(p, q - p, "%s", cstate->saresponse);
946             p += strlen(cstate->saresponse);
947             slprintf(p, q - p, " M=");
948             p += 3;
949         }
950 #endif /* CHAPMS */
951
952         slprintf(p, q - p, "Welcome to %s.", hostname);
953     } else {
954 #ifdef CHAPMS
955         if ((cstate->chal_type == CHAP_MICROSOFT_V2) ||
956             (cstate->chal_type == CHAP_MICROSOFT)) {
957             /*
958              * Failure message must be formatted as
959              *     "E=e R=r C=c V=v M=m"
960              * where
961              *     e = error code (we use 691, ERROR_AUTHENTICATION_FAILURE)
962              *     r = retry (we use 1, ok to retry)
963              *     c = challenge to use for next response, we reuse previous
964              *     v = Change Password version supported, we use 0
965              *     m = text message
966              *
967              * The M=m part is only for MS-CHAPv2, but MS-CHAP should ignore
968              * any extra text according to RFC 2433.  So we'll go the easy
969              * (read: lazy) route and include it always.
970              */
971             slprintf(p, q - p, "E=691 R=1 C=");
972             p += 12;
973             for (i = 0; i < cstate->chal_len; i++)
974                 sprintf(p + i * 2, "%02X", cstate->challenge[i]);
975             p += cstate->chal_len * 2;
976             slprintf(p, q - p, " V=0 M=");
977             p += 7;
978         }
979 #endif /* CHAPMS */
980
981         slprintf(p, q - p, "I don't like you.  Go 'way.");
982     }
983     msglen = strlen(msg);
984
985     outlen = CHAP_HEADERLEN + msglen;
986     outp = outpacket_buf;
987
988     MAKEHEADER(outp, PPP_CHAP); /* paste in a header */
989
990     PUTCHAR(code, outp);
991     PUTCHAR(cstate->chal_id, outp);
992     PUTSHORT(outlen, outp);
993     BCOPY(msg, outp, msglen);
994     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
995 }
996
997 /*
998  * ChapGenChallenge is used to generate a pseudo-random challenge string of
999  * a pseudo-random length between min_len and max_len.  The challenge
1000  * string and its length are stored in *cstate, and various other fields of
1001  * *cstate are initialized.
1002  */
1003
1004 static void
1005 ChapGenChallenge(cstate)
1006     chap_state *cstate;
1007 {
1008     int chal_len = 0; /* Avoid compiler warning */
1009     u_char *ptr = cstate->challenge;
1010     int i;
1011
1012     switch (cstate->chal_type) {
1013     case CHAP_DIGEST_MD5:
1014         /*
1015          * pick a random challenge length between MIN_CHALLENGE_LENGTH and
1016          * MAX_CHALLENGE_LENGTH
1017          */
1018         chal_len = (unsigned) ((drand48() *
1019                                 (MAX_CHALLENGE_LENGTH - MIN_CHALLENGE_LENGTH)) +
1020                                 MIN_CHALLENGE_LENGTH);
1021         break;
1022
1023 #ifdef CHAPMS
1024     case CHAP_MICROSOFT:
1025         /* MS-CHAP is fixed to an 8 octet challenge. */
1026         chal_len = 8;
1027         break;
1028
1029     case CHAP_MICROSOFT_V2:
1030         /* MS-CHAPv2 is fixed to a 16 octet challenge. */
1031         chal_len = 16;
1032         break;
1033 #endif
1034     default:
1035         fatal("ChapGenChallenge: Unsupported challenge type %d",
1036               (int) cstate->chal_type);
1037         break;
1038     }
1039
1040     cstate->chal_len = chal_len;
1041     cstate->chal_id = ++cstate->id;
1042     cstate->chal_transmits = 0;
1043
1044 #ifdef CHAPMS
1045     if (mschap_challenge)
1046         for (i = 0; i < chal_len; i++)
1047             *ptr++ = mschap_challenge[i];
1048     else
1049 #endif
1050         /* generate a random string */
1051         for (i = 0; i < chal_len; i++)
1052             *ptr++ = (char) (drand48() * 0xff);
1053 }
1054
1055 /*
1056  * ChapSendResponse - send a response packet with values as specified
1057  * in *cstate.
1058  */
1059 /* ARGSUSED */
1060 static void
1061 ChapSendResponse(cstate)
1062     chap_state *cstate;
1063 {
1064     u_char *outp;
1065     int outlen, md_len, name_len;
1066
1067     md_len = cstate->resp_length;
1068     name_len = strlen(cstate->resp_name);
1069     outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len;
1070     outp = outpacket_buf;
1071
1072     MAKEHEADER(outp, PPP_CHAP);
1073
1074     PUTCHAR(CHAP_RESPONSE, outp);       /* we are a response */
1075     PUTCHAR(cstate->resp_id, outp);     /* copy id from challenge packet */
1076     PUTSHORT(outlen, outp);             /* packet length */
1077
1078     PUTCHAR(md_len, outp);              /* length of MD */
1079     BCOPY(cstate->response, outp, md_len);      /* copy MD to buffer */
1080     INCPTR(md_len, outp);
1081
1082     BCOPY(cstate->resp_name, outp, name_len); /* append our name */
1083
1084     /* send the packet */
1085     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
1086
1087     cstate->clientstate = CHAPCS_RESPONSE;
1088     TIMEOUT(ChapResponseTimeout, cstate, cstate->timeouttime);
1089     ++cstate->resp_transmits;
1090 }
1091
1092 /*
1093  * ChapPrintPkt - print the contents of a CHAP packet.
1094  */
1095 static char *ChapCodenames[] = {
1096     "Challenge", "Response", "Success", "Failure"
1097 };
1098
1099 static int
1100 ChapPrintPkt(p, plen, printer, arg)
1101     u_char *p;
1102     int plen;
1103     void (*printer) __P((void *, char *, ...));
1104     void *arg;
1105 {
1106     int code, id, len;
1107     int clen, nlen;
1108     u_char x;
1109
1110     if (plen < CHAP_HEADERLEN)
1111         return 0;
1112     GETCHAR(code, p);
1113     GETCHAR(id, p);
1114     GETSHORT(len, p);
1115     if (len < CHAP_HEADERLEN || len > plen)
1116         return 0;
1117
1118     if (code >= 1 && code <= sizeof(ChapCodenames) / sizeof(char *))
1119         printer(arg, " %s", ChapCodenames[code-1]);
1120     else
1121         printer(arg, " code=0x%x", code);
1122     printer(arg, " id=0x%x", id);
1123     len -= CHAP_HEADERLEN;
1124     switch (code) {
1125     case CHAP_CHALLENGE:
1126     case CHAP_RESPONSE:
1127         if (len < 1)
1128             break;
1129         clen = p[0];
1130         if (len < clen + 1)
1131             break;
1132         ++p;
1133         nlen = len - clen - 1;
1134         printer(arg, " <");
1135         for (; clen > 0; --clen) {
1136             GETCHAR(x, p);
1137             printer(arg, "%.2x", x);
1138         }
1139         printer(arg, ">, name = ");
1140         print_string((char *)p, nlen, printer, arg);
1141         break;
1142     case CHAP_FAILURE:
1143     case CHAP_SUCCESS:
1144         printer(arg, " ");
1145         print_string((char *)p, len, printer, arg);
1146         break;
1147     default:
1148         for (clen = len; clen > 0; --clen) {
1149             GETCHAR(x, p);
1150             printer(arg, " %.2x", x);
1151         }
1152     }
1153
1154     return len + CHAP_HEADERLEN;
1155 }