]> git.ozlabs.org Git - ppp.git/blob - pppd/chap.c
Corrected Linux MPPE kernel modules (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.31 2002/04/02 14:15:07 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((u_char *) &md + response_offset,
652                            (u_char *) remmd + response_offset,
653                            response_size) == 0)
654                     code = CHAP_SUCCESS;        /* they are the same! */
655                 break;
656             }
657
658             case CHAP_MICROSOFT_V2:
659             {
660                 MS_Chap2Response *rmd = (MS_Chap2Response *) remmd;
661                 MS_Chap2Response md;
662
663                 if (remmd_len != MS_CHAP2_RESPONSE_LEN)
664                     break;                      /* not even the right length */
665
666                 /* Generate the expected response and our mutual auth. */
667                 ChapMS2(cstate, cstate->challenge, rmd->PeerChallenge,
668                         (explicit_remote? remote_name: rhostname),
669                         secret, secret_len, &md,
670                         cstate->saresponse, MS_CHAP2_AUTHENTICATOR);
671
672                 /* compare MDs and send the appropriate status */
673                 if (memcmp(md.NTResp, rmd->NTResp, sizeof(md.NTResp)) == 0)
674                     code = CHAP_SUCCESS;        /* yay! */
675                 break;
676             }
677 #endif /* CHAPMS */
678
679             default:
680                 CHAPDEBUG(("unknown digest type %d", cstate->chal_type));
681             }
682         }
683
684         BZERO(secret, sizeof(secret));
685     }
686     ChapSendStatus(cstate, code);
687
688     if (code == CHAP_SUCCESS) {
689         old_state = cstate->serverstate;
690         cstate->serverstate = CHAPSS_OPEN;
691         if (old_state == CHAPSS_INITIAL_CHAL) {
692             auth_peer_success(cstate->unit, PPP_CHAP, cstate->chal_type,
693                               rhostname, len);
694         }
695         if (cstate->chal_interval != 0)
696             TIMEOUT(ChapRechallenge, cstate, cstate->chal_interval);
697         notice("CHAP peer authentication succeeded for %q", rhostname);
698
699     } else {
700         error("CHAP peer authentication failed for remote host %q", rhostname);
701         cstate->serverstate = CHAPSS_BADAUTH;
702         auth_peer_fail(cstate->unit, PPP_CHAP);
703     }
704 }
705
706 /*
707  * ChapReceiveSuccess - Receive Success
708  */
709 static void
710 ChapReceiveSuccess(cstate, inp, id, len)
711     chap_state *cstate;
712     u_char *inp;
713     u_char id;
714     int len;
715 {
716
717     if (cstate->clientstate == CHAPCS_OPEN)
718         /* presumably an answer to a duplicate response */
719         return;
720
721     if (cstate->clientstate != CHAPCS_RESPONSE) {
722         /* don't know what this is */
723         CHAPDEBUG(("ChapReceiveSuccess: in state %d\n", cstate->clientstate));
724         return;
725     }
726
727     UNTIMEOUT(ChapResponseTimeout, cstate);
728
729 #ifdef CHAPMS
730     /*
731      * For MS-CHAPv2, we must verify that the peer knows our secret.
732      */
733     if (cstate->resp_type == CHAP_MICROSOFT_V2) {
734         if ((len >= MS_AUTH_RESPONSE_LENGTH + 2) && !strncmp(inp, "S=", 2)) {
735             inp += 2; len -= 2;
736             if (!memcmp(inp, cstate->earesponse, MS_AUTH_RESPONSE_LENGTH)) {
737                 /* Authenticator Response matches. */
738                 inp += MS_AUTH_RESPONSE_LENGTH; /* Eat it */
739                 len -= MS_AUTH_RESPONSE_LENGTH;
740                 if ((len >= 3) && !strncmp(inp, " M=", 3)) {
741                     inp += 3; len -= 3; /* Eat the delimiter */
742                 } else if (len) {
743                     /* Packet has extra text which does not begin " M=" */
744                     error("MS-CHAPv2 Success packet is badly formed.");
745                     auth_withpeer_fail(cstate->unit, PPP_CHAP);
746                 }
747             } else {
748                 /* Authenticator Response did not match expected. */
749                 error("MS-CHAPv2 mutual authentication failed.");
750                 auth_withpeer_fail(cstate->unit, PPP_CHAP);
751             }
752         } else {
753             /* Packet does not start with "S=" */
754             error("MS-CHAPv2 Success packet is badly formed.");
755             auth_withpeer_fail(cstate->unit, PPP_CHAP);
756         }
757     }
758 #endif
759
760     /*
761      * Print message.
762      */
763     if (len > 0)
764         PRINTMSG(inp, len);
765
766     cstate->clientstate = CHAPCS_OPEN;
767
768     auth_withpeer_success(cstate->unit, PPP_CHAP, cstate->resp_type);
769 }
770
771
772 /*
773  * ChapReceiveFailure - Receive failure.
774  */
775 static void
776 ChapReceiveFailure(cstate, inp, id, len)
777     chap_state *cstate;
778     u_char *inp;
779     u_char id;
780     int len;
781 {
782     u_char *msg;
783     u_char *p = inp;
784
785     if (cstate->clientstate != CHAPCS_RESPONSE) {
786         /* don't know what this is */
787         CHAPDEBUG(("ChapReceiveFailure: in state %d\n", cstate->clientstate));
788         return;
789     }
790
791 #ifdef CHAPMS
792     /* We want a null-terminated string for strxxx(). */
793     msg = malloc(len + 1);
794     if (!msg) {
795         p = NULL;
796         notice("Out of memory in ChapReceiveFailure");
797         goto print_msg;
798     }
799     BCOPY(inp, msg, len);
800     p = msg + len; *p = '\0'; p = msg;
801 #endif
802
803     UNTIMEOUT(ChapResponseTimeout, cstate);
804
805 #ifdef CHAPMS
806     if ((cstate->resp_type == CHAP_MICROSOFT_V2) ||
807         (cstate->resp_type == CHAP_MICROSOFT)) {
808         int error;
809
810         /*
811          * Deal with MS-CHAP formatted failure messages; just print the
812          * M=<message> part (if any).  For MS-CHAP we're not really supposed
813          * to use M=<message>, but it shouldn't hurt.  See ChapSendStatus().
814          */
815         if (!strncmp(p, "E=", 2))
816             error = (int) strtol(p, NULL, 10); /* Remember the error code. */
817         else
818             goto print_msg; /* Message is badly formatted. */
819
820         if (len && ((p = strstr(p, " M=")) != NULL)) {
821             /* M=<message> field found. */
822             p += 3;
823         } else {
824             /* No M=<message>; use the error code. */
825             switch(error) {
826             case MS_CHAP_ERROR_RESTRICTED_LOGON_HOURS:
827                 p = "Restricted logon hours";
828                 break;
829
830             case MS_CHAP_ERROR_ACCT_DISABLED:
831                 p = "Account disabled";
832                 break;
833
834             case MS_CHAP_ERROR_PASSWD_EXPIRED:
835                 p = "Password expired";
836                 break;
837
838             case MS_CHAP_ERROR_NO_DIALIN_PERMISSION:
839                 p = "No dialin permission";
840                 break;
841
842             case MS_CHAP_ERROR_AUTHENTICATION_FAILURE:
843                 p = "Authentication failure";
844                 break;
845
846             case MS_CHAP_ERROR_CHANGING_PASSWORD:
847                 /* Should never see this, we don't support Change Password. */
848                 p = "Error changing password";
849                 break;
850
851             default:
852                 free(msg);
853                 p = msg = malloc(len + 33);
854                 if (!msg) {
855                     notice("Out of memory in ChapReceiveFailure");
856                     goto print_msg;
857                 }
858                 slprintf(p, len + 33, "Unknown authentication failure: %.*s",
859                          len, inp);
860                 break;
861             }
862         }
863         len = strlen(p);
864     }
865 #endif
866
867     /*
868      * Print message.
869      */
870 print_msg:
871     if (len > 0 && p != NULL)
872         PRINTMSG(p, len);
873
874     error("CHAP authentication failed");
875     auth_withpeer_fail(cstate->unit, PPP_CHAP);
876 #ifdef CHAPMS
877     if (msg) free(msg);
878 #endif
879 }
880
881
882 /*
883  * ChapSendChallenge - Send an Authenticate challenge.
884  */
885 static void
886 ChapSendChallenge(cstate)
887     chap_state *cstate;
888 {
889     u_char *outp;
890     int chal_len, name_len;
891     int outlen;
892
893     chal_len = cstate->chal_len;
894     name_len = strlen(cstate->chal_name);
895     outlen = CHAP_HEADERLEN + sizeof (u_char) + chal_len + name_len;
896     outp = outpacket_buf;
897
898     MAKEHEADER(outp, PPP_CHAP);         /* paste in a CHAP header */
899
900     PUTCHAR(CHAP_CHALLENGE, outp);
901     PUTCHAR(cstate->chal_id, outp);
902     PUTSHORT(outlen, outp);
903
904     PUTCHAR(chal_len, outp);            /* put length of challenge */
905     BCOPY(cstate->challenge, outp, chal_len);
906     INCPTR(chal_len, outp);
907
908     BCOPY(cstate->chal_name, outp, name_len);   /* append hostname */
909
910     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
911
912     TIMEOUT(ChapChallengeTimeout, cstate, cstate->timeouttime);
913     ++cstate->chal_transmits;
914 }
915
916
917 /*
918  * ChapSendStatus - Send a status response (ack or nak).
919  * See RFC 2433 and RFC 2759 for MS-CHAP and MS-CHAPv2 message formats.
920  */
921 static void
922 ChapSendStatus(cstate, code)
923     chap_state *cstate;
924     int code;
925 {
926     u_char *outp;
927     int i, outlen, msglen;
928     char msg[256];
929     char *p, *q;
930
931     p = msg;
932     q = p + sizeof(msg); /* points 1 byte past msg */
933
934     if (code == CHAP_SUCCESS) {
935 #ifdef CHAPMS
936         if (cstate->chal_type == CHAP_MICROSOFT_V2) {
937             /*
938              * Success message must be formatted as
939              *     "S=<auth_string> M=<message>"
940              * where
941              *     <auth_string> is the Authenticator Response (mutual auth)
942              *     <message> is a text message
943              */
944             slprintf(p, q - p, "S=");
945             p += 2;
946             slprintf(p, q - p, "%s", cstate->saresponse);
947             p += strlen(cstate->saresponse);
948             slprintf(p, q - p, " M=");
949             p += 3;
950         }
951 #endif /* CHAPMS */
952
953         slprintf(p, q - p, "Welcome to %s.", hostname);
954     } else {
955 #ifdef CHAPMS
956         if ((cstate->chal_type == CHAP_MICROSOFT_V2) ||
957             (cstate->chal_type == CHAP_MICROSOFT)) {
958             /*
959              * Failure message must be formatted as
960              *     "E=e R=r C=c V=v M=m"
961              * where
962              *     e = error code (we use 691, ERROR_AUTHENTICATION_FAILURE)
963              *     r = retry (we use 1, ok to retry)
964              *     c = challenge to use for next response, we reuse previous
965              *     v = Change Password version supported, we use 0
966              *     m = text message
967              *
968              * The M=m part is only for MS-CHAPv2, but MS-CHAP should ignore
969              * any extra text according to RFC 2433.  So we'll go the easy
970              * (read: lazy) route and include it always.
971              */
972             slprintf(p, q - p, "E=691 R=1 C=");
973             p += 12;
974             for (i = 0; i < cstate->chal_len; i++)
975                 sprintf(p + i * 2, "%02X", cstate->challenge[i]);
976             p += cstate->chal_len * 2;
977             slprintf(p, q - p, " V=0 M=");
978             p += 7;
979         }
980 #endif /* CHAPMS */
981
982         slprintf(p, q - p, "I don't like you.  Go 'way.");
983     }
984     msglen = strlen(msg);
985
986     outlen = CHAP_HEADERLEN + msglen;
987     outp = outpacket_buf;
988
989     MAKEHEADER(outp, PPP_CHAP); /* paste in a header */
990
991     PUTCHAR(code, outp);
992     PUTCHAR(cstate->chal_id, outp);
993     PUTSHORT(outlen, outp);
994     BCOPY(msg, outp, msglen);
995     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
996 }
997
998 /*
999  * ChapGenChallenge is used to generate a pseudo-random challenge string of
1000  * a pseudo-random length between min_len and max_len.  The challenge
1001  * string and its length are stored in *cstate, and various other fields of
1002  * *cstate are initialized.
1003  */
1004
1005 static void
1006 ChapGenChallenge(cstate)
1007     chap_state *cstate;
1008 {
1009     int chal_len = 0; /* Avoid compiler warning */
1010     u_char *ptr = cstate->challenge;
1011     int i;
1012
1013     switch (cstate->chal_type) {
1014     case CHAP_DIGEST_MD5:
1015         /*
1016          * pick a random challenge length between MIN_CHALLENGE_LENGTH and
1017          * MAX_CHALLENGE_LENGTH
1018          */
1019         chal_len = (unsigned) ((drand48() *
1020                                 (MAX_CHALLENGE_LENGTH - MIN_CHALLENGE_LENGTH)) +
1021                                 MIN_CHALLENGE_LENGTH);
1022         break;
1023
1024 #ifdef CHAPMS
1025     case CHAP_MICROSOFT:
1026         /* MS-CHAP is fixed to an 8 octet challenge. */
1027         chal_len = 8;
1028         break;
1029
1030     case CHAP_MICROSOFT_V2:
1031         /* MS-CHAPv2 is fixed to a 16 octet challenge. */
1032         chal_len = 16;
1033         break;
1034 #endif
1035     default:
1036         fatal("ChapGenChallenge: Unsupported challenge type %d",
1037               (int) cstate->chal_type);
1038         break;
1039     }
1040
1041     cstate->chal_len = chal_len;
1042     cstate->chal_id = ++cstate->id;
1043     cstate->chal_transmits = 0;
1044
1045 #ifdef CHAPMS
1046     if (mschap_challenge)
1047         for (i = 0; i < chal_len; i++)
1048             *ptr++ = mschap_challenge[i];
1049     else
1050 #endif
1051         /* generate a random string */
1052         for (i = 0; i < chal_len; i++)
1053             *ptr++ = (char) (drand48() * 0xff);
1054 }
1055
1056 /*
1057  * ChapSendResponse - send a response packet with values as specified
1058  * in *cstate.
1059  */
1060 /* ARGSUSED */
1061 static void
1062 ChapSendResponse(cstate)
1063     chap_state *cstate;
1064 {
1065     u_char *outp;
1066     int outlen, md_len, name_len;
1067
1068     md_len = cstate->resp_length;
1069     name_len = strlen(cstate->resp_name);
1070     outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len;
1071     outp = outpacket_buf;
1072
1073     MAKEHEADER(outp, PPP_CHAP);
1074
1075     PUTCHAR(CHAP_RESPONSE, outp);       /* we are a response */
1076     PUTCHAR(cstate->resp_id, outp);     /* copy id from challenge packet */
1077     PUTSHORT(outlen, outp);             /* packet length */
1078
1079     PUTCHAR(md_len, outp);              /* length of MD */
1080     BCOPY(cstate->response, outp, md_len);      /* copy MD to buffer */
1081     INCPTR(md_len, outp);
1082
1083     BCOPY(cstate->resp_name, outp, name_len); /* append our name */
1084
1085     /* send the packet */
1086     output(cstate->unit, outpacket_buf, outlen + PPP_HDRLEN);
1087
1088     cstate->clientstate = CHAPCS_RESPONSE;
1089     TIMEOUT(ChapResponseTimeout, cstate, cstate->timeouttime);
1090     ++cstate->resp_transmits;
1091 }
1092
1093 /*
1094  * ChapPrintPkt - print the contents of a CHAP packet.
1095  */
1096 static char *ChapCodenames[] = {
1097     "Challenge", "Response", "Success", "Failure"
1098 };
1099
1100 static int
1101 ChapPrintPkt(p, plen, printer, arg)
1102     u_char *p;
1103     int plen;
1104     void (*printer) __P((void *, char *, ...));
1105     void *arg;
1106 {
1107     int code, id, len;
1108     int clen, nlen;
1109     u_char x;
1110
1111     if (plen < CHAP_HEADERLEN)
1112         return 0;
1113     GETCHAR(code, p);
1114     GETCHAR(id, p);
1115     GETSHORT(len, p);
1116     if (len < CHAP_HEADERLEN || len > plen)
1117         return 0;
1118
1119     if (code >= 1 && code <= sizeof(ChapCodenames) / sizeof(char *))
1120         printer(arg, " %s", ChapCodenames[code-1]);
1121     else
1122         printer(arg, " code=0x%x", code);
1123     printer(arg, " id=0x%x", id);
1124     len -= CHAP_HEADERLEN;
1125     switch (code) {
1126     case CHAP_CHALLENGE:
1127     case CHAP_RESPONSE:
1128         if (len < 1)
1129             break;
1130         clen = p[0];
1131         if (len < clen + 1)
1132             break;
1133         ++p;
1134         nlen = len - clen - 1;
1135         printer(arg, " <");
1136         for (; clen > 0; --clen) {
1137             GETCHAR(x, p);
1138             printer(arg, "%.2x", x);
1139         }
1140         printer(arg, ">, name = ");
1141         print_string((char *)p, nlen, printer, arg);
1142         break;
1143     case CHAP_FAILURE:
1144     case CHAP_SUCCESS:
1145         printer(arg, " ");
1146         print_string((char *)p, len, printer, arg);
1147         break;
1148     default:
1149         for (clen = len; clen > 0; --clen) {
1150             GETCHAR(x, p);
1151             printer(arg, " %.2x", x);
1152         }
1153     }
1154
1155     return len + CHAP_HEADERLEN;
1156 }