]> git.ozlabs.org Git - ppp.git/blob - pppd/chap_ms.c
pppd: Fix compilation on Linux when IPV6 is disabled (#360)
[ppp.git] / pppd / chap_ms.c
1 /*
2  * chap_ms.c - Microsoft MS-CHAP compatible implementation.
3  *
4  * Copyright (c) 1995 Eric Rosenquist.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *
18  * 3. The name(s) of the authors of this software must not be used to
19  *    endorse or promote products derived from this software without
20  *    prior written permission.
21  *
22  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
23  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
24  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
25  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
26  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
27  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
28  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29  */
30
31 /*
32  * Modifications by Lauri Pesonen / lpesonen@clinet.fi, april 1997
33  *
34  *   Implemented LANManager type password response to MS-CHAP challenges.
35  *   Now pppd provides both NT style and LANMan style blocks, and the
36  *   prefered is set by option "ms-lanman". Default is to use NT.
37  *   The hash text (StdText) was taken from Win95 RASAPI32.DLL.
38  *
39  *   You should also use DOMAIN\\USERNAME as described in README.MSCHAP80
40  */
41
42 /*
43  * Modifications by Frank Cusack, frank@google.com, March 2002.
44  *
45  *   Implemented MS-CHAPv2 functionality, heavily based on sample
46  *   implementation in RFC 2759.  Implemented MPPE functionality,
47  *   heavily based on sample implementation in RFC 3079.
48  *
49  * Copyright (c) 2002 Google, Inc.  All rights reserved.
50  *
51  * Redistribution and use in source and binary forms, with or without
52  * modification, are permitted provided that the following conditions
53  * are met:
54  *
55  * 1. Redistributions of source code must retain the above copyright
56  *    notice, this list of conditions and the following disclaimer.
57  *
58  * 2. Redistributions in binary form must reproduce the above copyright
59  *    notice, this list of conditions and the following disclaimer in
60  *    the documentation and/or other materials provided with the
61  *    distribution.
62  *
63  * 3. The name(s) of the authors of this software must not be used to
64  *    endorse or promote products derived from this software without
65  *    prior written permission.
66  *
67  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
68  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
69  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
70  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
71  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
72  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
73  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
74  *
75  */
76
77 #define RCSID   "$Id: chap_ms.c,v 1.38 2007/12/01 20:10:51 carlsonj Exp $"
78
79 #ifdef HAVE_CONFIG_H
80 #include "config.h"
81 #endif
82
83 #include <stdio.h>
84 #include <stdlib.h>
85 #include <string.h>
86 #include <ctype.h>
87 #include <sys/types.h>
88 #include <sys/time.h>
89 #include <unistd.h>
90 #if defined(SOL2)
91 #include <net/ppp-comp.h>
92 #else
93 #include <linux/ppp-comp.h>
94 #endif
95
96 #include "pppd.h"
97 #include "chap-new.h"
98 #include "chap_ms.h"
99 #include "md4.h"
100 #include "sha1.h"
101 #include "pppcrypt.h"
102 #include "magic.h"
103 #include "mppe.h"
104
105 #ifdef UNIT_TEST
106 #undef PPP_WITH_MPPE
107 #endif
108
109 static void     ascii2unicode (char[], int, u_char[]);
110 static void     NTPasswordHash (u_char *, int, u_char[MD4_SIGNATURE_SIZE]);
111 static void     ChallengeResponse (u_char *, u_char *, u_char[24]);
112 static void     ChapMS_NT (u_char *, char *, int, u_char[24]);
113 static void     ChapMS2_NT (u_char *, u_char[16], char *, char *, int,
114                                 u_char[24]);
115 static void     GenerateAuthenticatorResponsePlain
116                         (char*, int, u_char[24], u_char[16], u_char *,
117                          char *, u_char[41]);
118 #ifdef PPP_WITH_MSLANMAN
119 static void     ChapMS_LANMan (u_char *, char *, int, u_char *);
120 #endif
121
122 #ifdef PPP_WITH_MSLANMAN
123 bool    ms_lanman = 0;          /* Use LanMan password instead of NT */
124                                 /* Has meaning only with MS-CHAP challenges */
125 #endif
126
127 #ifdef PPP_WITH_MPPE
128 #ifdef DEBUGMPPEKEY
129 /* For MPPE debug */
130 /* Use "[]|}{?/><,`!2&&(" (sans quotes) for RFC 3079 MS-CHAPv2 test value */
131 static char *mschap_challenge = NULL;
132 /* Use "!@\#$%^&*()_+:3|~" (sans quotes, backslash is to escape #) for ... */
133 static char *mschap2_peer_challenge = NULL;
134 #endif
135
136 #include "fsm.h"                /* Need to poke MPPE options */
137 #include "ccp.h"
138 #endif
139
140 /*
141  * Command-line options.
142  */
143 static option_t chapms_option_list[] = {
144 #ifdef PPP_WITH_MSLANMAN
145         { "ms-lanman", o_bool, &ms_lanman,
146           "Use LanMan passwd when using MS-CHAP", 1 },
147 #endif
148 #ifdef DEBUGMPPEKEY
149         { "mschap-challenge", o_string, &mschap_challenge,
150           "specify CHAP challenge" },
151         { "mschap2-peer-challenge", o_string, &mschap2_peer_challenge,
152           "specify CHAP peer challenge" },
153 #endif
154         { NULL }
155 };
156
157 /*
158  * chapms_generate_challenge - generate a challenge for MS-CHAP.
159  * For MS-CHAP the challenge length is fixed at 8 bytes.
160  * The length goes in challenge[0] and the actual challenge starts
161  * at challenge[1].
162  */
163 static void
164 chapms_generate_challenge(unsigned char *challenge)
165 {
166         *challenge++ = 8;
167 #ifdef DEBUGMPPEKEY
168         if (mschap_challenge && strlen(mschap_challenge) == 8)
169                 memcpy(challenge, mschap_challenge, 8);
170         else
171 #endif
172                 random_bytes(challenge, 8);
173 }
174
175 static void
176 chapms2_generate_challenge(unsigned char *challenge)
177 {
178         *challenge++ = 16;
179 #ifdef DEBUGMPPEKEY
180         if (mschap_challenge && strlen(mschap_challenge) == 16)
181                 memcpy(challenge, mschap_challenge, 16);
182         else
183 #endif
184                 random_bytes(challenge, 16);
185 }
186
187 static int
188 chapms_verify_response(int id, char *name,
189                        unsigned char *secret, int secret_len,
190                        unsigned char *challenge, unsigned char *response,
191                        char *message, int message_space)
192 {
193         unsigned char md[MS_CHAP_RESPONSE_LEN];
194         int diff;
195         int challenge_len, response_len;
196
197         challenge_len = *challenge++;   /* skip length, is 8 */
198         response_len = *response++;
199         if (response_len != MS_CHAP_RESPONSE_LEN)
200                 goto bad;
201
202 #ifndef PPP_WITH_MSLANMAN
203         if (!response[MS_CHAP_USENT]) {
204                 /* Should really propagate this into the error packet. */
205                 notice("Peer request for LANMAN auth not supported");
206                 goto bad;
207         }
208 #endif
209
210         /* Generate the expected response. */
211         ChapMS(challenge, (char *)secret, secret_len, md);
212
213 #ifdef PPP_WITH_MSLANMAN
214         /* Determine which part of response to verify against */
215         if (!response[MS_CHAP_USENT])
216                 diff = memcmp(&response[MS_CHAP_LANMANRESP],
217                               &md[MS_CHAP_LANMANRESP], MS_CHAP_LANMANRESP_LEN);
218         else
219 #endif
220                 diff = memcmp(&response[MS_CHAP_NTRESP], &md[MS_CHAP_NTRESP],
221                               MS_CHAP_NTRESP_LEN);
222
223         if (diff == 0) {
224                 slprintf(message, message_space, "Access granted");
225                 return 1;
226         }
227
228  bad:
229         /* See comments below for MS-CHAP V2 */
230         slprintf(message, message_space, "E=691 R=1 C=%0.*B V=0",
231                  challenge_len, challenge);
232         return 0;
233 }
234
235 static int
236 chapms2_verify_response(int id, char *name,
237                         unsigned char *secret, int secret_len,
238                         unsigned char *challenge, unsigned char *response,
239                         char *message, int message_space)
240 {
241         unsigned char md[MS_CHAP2_RESPONSE_LEN];
242         char saresponse[MS_AUTH_RESPONSE_LENGTH+1];
243         int challenge_len, response_len;
244
245         challenge_len = *challenge++;   /* skip length, is 16 */
246         response_len = *response++;
247         if (response_len != MS_CHAP2_RESPONSE_LEN)
248                 goto bad;       /* not even the right length */
249
250         /* Generate the expected response and our mutual auth. */
251         ChapMS2(challenge, &response[MS_CHAP2_PEER_CHALLENGE], name,
252                 (char *)secret, secret_len, md,
253                 (unsigned char *)saresponse, MS_CHAP2_AUTHENTICATOR);
254
255         /* compare MDs and send the appropriate status */
256         /*
257          * Per RFC 2759, success message must be formatted as
258          *     "S=<auth_string> M=<message>"
259          * where
260          *     <auth_string> is the Authenticator Response (mutual auth)
261          *     <message> is a text message
262          *
263          * However, some versions of Windows (win98 tested) do not know
264          * about the M=<message> part (required per RFC 2759) and flag
265          * it as an error (reported incorrectly as an encryption error
266          * to the user).  Since the RFC requires it, and it can be
267          * useful information, we supply it if the peer is a conforming
268          * system.  Luckily (?), win98 sets the Flags field to 0x04
269          * (contrary to RFC requirements) so we can use that to
270          * distinguish between conforming and non-conforming systems.
271          *
272          * Special thanks to Alex Swiridov <say@real.kharkov.ua> for
273          * help debugging this.
274          */
275         if (memcmp(&md[MS_CHAP2_NTRESP], &response[MS_CHAP2_NTRESP],
276                    MS_CHAP2_NTRESP_LEN) == 0) {
277                 if (response[MS_CHAP2_FLAGS])
278                         slprintf(message, message_space, "S=%s", saresponse);
279                 else
280                         slprintf(message, message_space, "S=%s M=%s",
281                                  saresponse, "Access granted");
282                 return 1;
283         }
284
285  bad:
286         /*
287          * Failure message must be formatted as
288          *     "E=e R=r C=c V=v M=m"
289          * where
290          *     e = error code (we use 691, ERROR_AUTHENTICATION_FAILURE)
291          *     r = retry (we use 1, ok to retry)
292          *     c = challenge to use for next response, we reuse previous
293          *     v = Change Password version supported, we use 0
294          *     m = text message
295          *
296          * The M=m part is only for MS-CHAPv2.  Neither win2k nor
297          * win98 (others untested) display the message to the user anyway.
298          * They also both ignore the E=e code.
299          *
300          * Note that it's safe to reuse the same challenge as we don't
301          * actually accept another response based on the error message
302          * (and no clients try to resend a response anyway).
303          *
304          * Basically, this whole bit is useless code, even the small
305          * implementation here is only because of overspecification.
306          */
307         slprintf(message, message_space, "E=691 R=1 C=%0.*B V=0 M=%s",
308                  challenge_len, challenge, "Access denied");
309         return 0;
310 }
311
312 static void
313 chapms_make_response(unsigned char *response, int id, char *our_name,
314                      unsigned char *challenge, char *secret, int secret_len,
315                      unsigned char *private)
316 {
317         challenge++;    /* skip length, should be 8 */
318         *response++ = MS_CHAP_RESPONSE_LEN;
319         ChapMS(challenge, secret, secret_len, response);
320 }
321
322 struct chapms2_response_cache_entry {
323         int id;
324         unsigned char challenge[16];
325         unsigned char response[MS_CHAP2_RESPONSE_LEN];
326         unsigned char auth_response[MS_AUTH_RESPONSE_LENGTH];
327 };
328
329 #define CHAPMS2_MAX_RESPONSE_CACHE_SIZE 10
330 static struct chapms2_response_cache_entry
331     chapms2_response_cache[CHAPMS2_MAX_RESPONSE_CACHE_SIZE];
332 static int chapms2_response_cache_next_index = 0;
333 static int chapms2_response_cache_size = 0;
334
335 static void
336 chapms2_add_to_response_cache(int id, unsigned char *challenge,
337                               unsigned char *response,
338                               unsigned char *auth_response)
339 {
340         int i = chapms2_response_cache_next_index;
341
342         chapms2_response_cache[i].id = id;
343         memcpy(chapms2_response_cache[i].challenge, challenge, 16);
344         memcpy(chapms2_response_cache[i].response, response,
345                MS_CHAP2_RESPONSE_LEN);
346         memcpy(chapms2_response_cache[i].auth_response,
347                auth_response, MS_AUTH_RESPONSE_LENGTH);
348         chapms2_response_cache_next_index =
349                 (i + 1) % CHAPMS2_MAX_RESPONSE_CACHE_SIZE;
350         if (chapms2_response_cache_next_index > chapms2_response_cache_size)
351                 chapms2_response_cache_size = chapms2_response_cache_next_index;
352         dbglog("added response cache entry %d", i);
353 }
354
355 static struct chapms2_response_cache_entry*
356 chapms2_find_in_response_cache(int id, unsigned char *challenge,
357                       unsigned char *auth_response)
358 {
359         int i;
360
361         for (i = 0; i < chapms2_response_cache_size; i++) {
362                 if (id == chapms2_response_cache[i].id
363                     && (!challenge
364                         || memcmp(challenge,
365                                   chapms2_response_cache[i].challenge,
366                                   16) == 0)
367                     && (!auth_response
368                         || memcmp(auth_response,
369                                   chapms2_response_cache[i].auth_response,
370                                   MS_AUTH_RESPONSE_LENGTH) == 0)) {
371                         dbglog("response found in cache (entry %d)", i);
372                         return &chapms2_response_cache[i];
373                 }
374         }
375         return NULL;  /* not found */
376 }
377
378 static void
379 chapms2_make_response(unsigned char *response, int id, char *our_name,
380                       unsigned char *challenge, char *secret, int secret_len,
381                       unsigned char *private)
382 {
383         const struct chapms2_response_cache_entry *cache_entry;
384         unsigned char auth_response[MS_AUTH_RESPONSE_LENGTH+1];
385
386         challenge++;    /* skip length, should be 16 */
387         *response++ = MS_CHAP2_RESPONSE_LEN;
388         cache_entry = chapms2_find_in_response_cache(id, challenge, NULL);
389         if (cache_entry) {
390                 memcpy(response, cache_entry->response, MS_CHAP2_RESPONSE_LEN);
391                 return;
392         }
393         ChapMS2(challenge,
394 #ifdef DEBUGMPPEKEY
395                 mschap2_peer_challenge,
396 #else
397                 NULL,
398 #endif
399                 our_name, secret, secret_len, response, auth_response,
400                 MS_CHAP2_AUTHENTICATEE);
401         chapms2_add_to_response_cache(id, challenge, response, auth_response);
402 }
403
404 static int
405 chapms2_check_success(int id, unsigned char *msg, int len)
406 {
407         if ((len < MS_AUTH_RESPONSE_LENGTH + 2) ||
408             strncmp((char *)msg, "S=", 2) != 0) {
409                 /* Packet does not start with "S=" */
410                 error("MS-CHAPv2 Success packet is badly formed.");
411                 return 0;
412         }
413         msg += 2;
414         len -= 2;
415         if (len < MS_AUTH_RESPONSE_LENGTH
416             || !chapms2_find_in_response_cache(id, NULL /* challenge */, msg)) {
417                 /* Authenticator Response did not match expected. */
418                 error("MS-CHAPv2 mutual authentication failed.");
419                 return 0;
420         }
421         /* Authenticator Response matches. */
422         msg += MS_AUTH_RESPONSE_LENGTH; /* Eat it */
423         len -= MS_AUTH_RESPONSE_LENGTH;
424         if ((len >= 3) && !strncmp((char *)msg, " M=", 3)) {
425                 msg += 3; /* Eat the delimiter */
426         } else  if ((len >= 2) && !strncmp((char *)msg, "M=", 2)) {
427                 msg += 2; /* Eat the delimiter */
428         } else if (len) {
429                 /* Packet has extra text which does not begin " M=" */
430                 error("MS-CHAPv2 Success packet is badly formed.");
431                 return 0;
432         }
433         return 1;
434 }
435
436 static void
437 chapms_handle_failure(unsigned char *inp, int len)
438 {
439         int err;
440         char *p, *msg;
441
442         /* We want a null-terminated string for strxxx(). */
443         msg = malloc(len + 1);
444         if (!msg) {
445                 notice("Out of memory in chapms_handle_failure");
446                 return;
447         }
448         BCOPY(inp, msg, len);
449         msg[len] = 0;
450         p = msg;
451
452         /*
453          * Deal with MS-CHAP formatted failure messages; just print the
454          * M=<message> part (if any).  For MS-CHAP we're not really supposed
455          * to use M=<message>, but it shouldn't hurt.  See
456          * chapms[2]_verify_response.
457          */
458         if (!strncmp(p, "E=", 2))
459                 err = strtol(p+2, NULL, 10); /* Remember the error code. */
460         else
461                 goto print_msg; /* Message is badly formatted. */
462
463         if (len && ((p = strstr(p, " M=")) != NULL)) {
464                 /* M=<message> field found. */
465                 p += 3;
466         } else {
467                 /* No M=<message>; use the error code. */
468                 switch (err) {
469                 case MS_CHAP_ERROR_RESTRICTED_LOGON_HOURS:
470                         p = "E=646 Restricted logon hours";
471                         break;
472
473                 case MS_CHAP_ERROR_ACCT_DISABLED:
474                         p = "E=647 Account disabled";
475                         break;
476
477                 case MS_CHAP_ERROR_PASSWD_EXPIRED:
478                         p = "E=648 Password expired";
479                         break;
480
481                 case MS_CHAP_ERROR_NO_DIALIN_PERMISSION:
482                         p = "E=649 No dialin permission";
483                         break;
484
485                 case MS_CHAP_ERROR_AUTHENTICATION_FAILURE:
486                         p = "E=691 Authentication failure";
487                         break;
488
489                 case MS_CHAP_ERROR_CHANGING_PASSWORD:
490                         /* Should never see this, we don't support Change Password. */
491                         p = "E=709 Error changing password";
492                         break;
493
494                 default:
495                         free(msg);
496                         error("Unknown MS-CHAP authentication failure: %.*v",
497                               len, inp);
498                         return;
499                 }
500         }
501 print_msg:
502         if (p != NULL)
503                 error("MS-CHAP authentication failed: %v", p);
504         free(msg);
505 }
506
507 static void
508 ChallengeResponse(u_char *challenge,
509                   u_char PasswordHash[MD4_SIGNATURE_SIZE],
510                   u_char response[24])
511 {
512     u_char    ZPasswordHash[21];
513
514     BZERO(ZPasswordHash, sizeof(ZPasswordHash));
515     BCOPY(PasswordHash, ZPasswordHash, MD4_SIGNATURE_SIZE);
516
517 #if 0
518     dbglog("ChallengeResponse - ZPasswordHash %.*B",
519            sizeof(ZPasswordHash), ZPasswordHash);
520 #endif
521
522     (void) DesSetkey(ZPasswordHash + 0);
523     DesEncrypt(challenge, response + 0);
524     (void) DesSetkey(ZPasswordHash + 7);
525     DesEncrypt(challenge, response + 8);
526     (void) DesSetkey(ZPasswordHash + 14);
527     DesEncrypt(challenge, response + 16);
528
529 #if 0
530     dbglog("ChallengeResponse - response %.24B", response);
531 #endif
532 }
533
534 void
535 ChallengeHash(u_char PeerChallenge[16], u_char *rchallenge,
536               char *username, u_char Challenge[8])
537     
538 {
539     SHA1_CTX    sha1Context;
540     u_char      sha1Hash[SHA1_SIGNATURE_SIZE];
541     char        *user;
542
543     /* remove domain from "domain\username" */
544     if ((user = strrchr(username, '\\')) != NULL)
545         ++user;
546     else
547         user = username;
548
549     SHA1_Init(&sha1Context);
550     SHA1_Update(&sha1Context, PeerChallenge, 16);
551     SHA1_Update(&sha1Context, rchallenge, 16);
552     SHA1_Update(&sha1Context, (unsigned char *)user, strlen(user));
553     SHA1_Final(sha1Hash, &sha1Context);
554
555     BCOPY(sha1Hash, Challenge, 8);
556 }
557
558 /*
559  * Convert the ASCII version of the password to Unicode.
560  * This implicitly supports 8-bit ISO8859/1 characters.
561  * This gives us the little-endian representation, which
562  * is assumed by all M$ CHAP RFCs.  (Unicode byte ordering
563  * is machine-dependent.)
564  */
565 static void
566 ascii2unicode(char ascii[], int ascii_len, u_char unicode[])
567 {
568     int i;
569
570     BZERO(unicode, ascii_len * 2);
571     for (i = 0; i < ascii_len; i++)
572         unicode[i * 2] = (u_char) ascii[i];
573 }
574
575 static void
576 NTPasswordHash(u_char *secret, int secret_len, u_char hash[MD4_SIGNATURE_SIZE])
577 {
578 #if defined(__NetBSD__) || !defined(USE_MD4)
579     /* NetBSD uses the libc md4 routines which take bytes instead of bits */
580     int                 mdlen = secret_len;
581 #else
582     int                 mdlen = secret_len * 8;
583 #endif
584     MD4_CTX             md4Context;
585
586     MD4Init(&md4Context);
587 #if !defined(USE_MD4)
588     /* Internal MD4Update can take at most 64 bytes at a time */
589     while (mdlen > 512) {
590         MD4Update(&md4Context, secret, 512);
591         secret += 64;
592         mdlen -= 512;
593     }
594 #endif
595     MD4Update(&md4Context, secret, mdlen);
596     MD4Final(hash, &md4Context);
597
598 }
599
600 static void
601 ChapMS_NT(u_char *rchallenge, char *secret, int secret_len,
602           u_char NTResponse[24])
603 {
604     u_char      unicodePassword[MAX_NT_PASSWORD * 2];
605     u_char      PasswordHash[MD4_SIGNATURE_SIZE];
606
607     /* Hash the Unicode version of the secret (== password). */
608     ascii2unicode(secret, secret_len, unicodePassword);
609     NTPasswordHash(unicodePassword, secret_len * 2, PasswordHash);
610
611     ChallengeResponse(rchallenge, PasswordHash, NTResponse);
612 }
613
614 static void
615 ChapMS2_NT(u_char *rchallenge, u_char PeerChallenge[16], char *username,
616            char *secret, int secret_len, u_char NTResponse[24])
617 {
618     u_char      unicodePassword[MAX_NT_PASSWORD * 2];
619     u_char      PasswordHash[MD4_SIGNATURE_SIZE];
620     u_char      Challenge[8];
621
622     ChallengeHash(PeerChallenge, rchallenge, username, Challenge);
623
624     /* Hash the Unicode version of the secret (== password). */
625     ascii2unicode(secret, secret_len, unicodePassword);
626     NTPasswordHash(unicodePassword, secret_len * 2, PasswordHash);
627
628     ChallengeResponse(Challenge, PasswordHash, NTResponse);
629 }
630
631 #ifdef PPP_WITH_MSLANMAN
632 static u_char *StdText = (u_char *)"KGS!@#$%"; /* key from rasapi32.dll */
633
634 static void
635 ChapMS_LANMan(u_char *rchallenge, char *secret, int secret_len,
636               unsigned char *response)
637 {
638     int                 i;
639     u_char              UcasePassword[MAX_NT_PASSWORD]; /* max is actually 14 */
640     u_char              PasswordHash[MD4_SIGNATURE_SIZE];
641
642     /* LANMan password is case insensitive */
643     BZERO(UcasePassword, sizeof(UcasePassword));
644     for (i = 0; i < secret_len; i++)
645        UcasePassword[i] = (u_char)toupper(secret[i]);
646     (void) DesSetkey(UcasePassword + 0);
647     DesEncrypt( StdText, PasswordHash + 0 );
648     (void) DesSetkey(UcasePassword + 7);
649     DesEncrypt( StdText, PasswordHash + 8 );
650     ChallengeResponse(rchallenge, PasswordHash, &response[MS_CHAP_LANMANRESP]);
651 }
652 #endif
653
654
655 void
656 GenerateAuthenticatorResponse(u_char PasswordHashHash[MD4_SIGNATURE_SIZE],
657                               u_char NTResponse[24], u_char PeerChallenge[16],
658                               u_char *rchallenge, char *username,
659                               u_char authResponse[MS_AUTH_RESPONSE_LENGTH+1])
660 {
661     /*
662      * "Magic" constants used in response generation, from RFC 2759.
663      */
664     u_char Magic1[39] = /* "Magic server to client signing constant" */
665         { 0x4D, 0x61, 0x67, 0x69, 0x63, 0x20, 0x73, 0x65, 0x72, 0x76,
666           0x65, 0x72, 0x20, 0x74, 0x6F, 0x20, 0x63, 0x6C, 0x69, 0x65,
667           0x6E, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6E, 0x69, 0x6E, 0x67,
668           0x20, 0x63, 0x6F, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x74 };
669     u_char Magic2[41] = /* "Pad to make it do more than one iteration" */
670         { 0x50, 0x61, 0x64, 0x20, 0x74, 0x6F, 0x20, 0x6D, 0x61, 0x6B,
671           0x65, 0x20, 0x69, 0x74, 0x20, 0x64, 0x6F, 0x20, 0x6D, 0x6F,
672           0x72, 0x65, 0x20, 0x74, 0x68, 0x61, 0x6E, 0x20, 0x6F, 0x6E,
673           0x65, 0x20, 0x69, 0x74, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6F,
674           0x6E };
675
676     int         i;
677     SHA1_CTX    sha1Context;
678     u_char      Digest[SHA1_SIGNATURE_SIZE];
679     u_char      Challenge[8];
680
681     SHA1_Init(&sha1Context);
682     SHA1_Update(&sha1Context, PasswordHashHash, MD4_SIGNATURE_SIZE);
683     SHA1_Update(&sha1Context, NTResponse, 24);
684     SHA1_Update(&sha1Context, Magic1, sizeof(Magic1));
685     SHA1_Final(Digest, &sha1Context);
686
687     ChallengeHash(PeerChallenge, rchallenge, username, Challenge);
688
689     SHA1_Init(&sha1Context);
690     SHA1_Update(&sha1Context, Digest, sizeof(Digest));
691     SHA1_Update(&sha1Context, Challenge, sizeof(Challenge));
692     SHA1_Update(&sha1Context, Magic2, sizeof(Magic2));
693     SHA1_Final(Digest, &sha1Context);
694
695     /* Convert to ASCII hex string. */
696     for (i = 0; i < MAX((MS_AUTH_RESPONSE_LENGTH / 2), sizeof(Digest)); i++)
697         sprintf((char *)&authResponse[i * 2], "%02X", Digest[i]);
698 }
699
700
701 static void
702 GenerateAuthenticatorResponsePlain
703                 (char *secret, int secret_len,
704                  u_char NTResponse[24], u_char PeerChallenge[16],
705                  u_char *rchallenge, char *username,
706                  u_char authResponse[MS_AUTH_RESPONSE_LENGTH+1])
707 {
708     u_char      unicodePassword[MAX_NT_PASSWORD * 2];
709     u_char      PasswordHash[MD4_SIGNATURE_SIZE];
710     u_char      PasswordHashHash[MD4_SIGNATURE_SIZE];
711
712     /* Hash (x2) the Unicode version of the secret (== password). */
713     ascii2unicode(secret, secret_len, unicodePassword);
714     NTPasswordHash(unicodePassword, secret_len * 2, PasswordHash);
715     NTPasswordHash(PasswordHash, sizeof(PasswordHash),
716                    PasswordHashHash);
717
718     GenerateAuthenticatorResponse(PasswordHashHash, NTResponse, PeerChallenge,
719                                   rchallenge, username, authResponse);
720 }
721
722
723 #ifdef PPP_WITH_MPPE
724
725 /*
726  * Set mppe_xxxx_key from MS-CHAP credentials. (see RFC 3079)
727  */
728 static void
729 Set_Start_Key(u_char *rchallenge, char *secret, int secret_len)
730 {
731     u_char      unicodePassword[MAX_NT_PASSWORD * 2];
732     u_char      PasswordHash[MD4_SIGNATURE_SIZE];
733     u_char      PasswordHashHash[MD4_SIGNATURE_SIZE];
734
735     /* Hash (x2) the Unicode version of the secret (== password). */
736     ascii2unicode(secret, secret_len, unicodePassword);
737     NTPasswordHash(unicodePassword, secret_len * 2, PasswordHash);
738     NTPasswordHash(PasswordHash, sizeof(PasswordHash), PasswordHashHash);
739
740     mppe_set_chapv1(rchallenge, PasswordHashHash);
741 }
742
743 /*
744  * Set mppe_xxxx_key from MS-CHAPv2 credentials. (see RFC 3079)
745  */
746 static void
747 SetMasterKeys(char *secret, int secret_len, u_char NTResponse[24], int IsServer)
748 {
749     u_char      unicodePassword[MAX_NT_PASSWORD * 2];
750     u_char      PasswordHash[MD4_SIGNATURE_SIZE];
751     u_char      PasswordHashHash[MD4_SIGNATURE_SIZE];
752     /* Hash (x2) the Unicode version of the secret (== password). */
753     ascii2unicode(secret, secret_len, unicodePassword);
754     NTPasswordHash(unicodePassword, secret_len * 2, PasswordHash);
755     NTPasswordHash(PasswordHash, sizeof(PasswordHash), PasswordHashHash);
756     mppe_set_chapv2(PasswordHashHash, NTResponse, IsServer);
757 }
758
759 #endif /* PPP_WITH_MPPE */
760
761
762 void
763 ChapMS(u_char *rchallenge, char *secret, int secret_len,
764        unsigned char *response)
765 {
766     BZERO(response, MS_CHAP_RESPONSE_LEN);
767
768     ChapMS_NT(rchallenge, secret, secret_len, &response[MS_CHAP_NTRESP]);
769
770 #ifdef PPP_WITH_MSLANMAN
771     ChapMS_LANMan(rchallenge, secret, secret_len,
772                   &response[MS_CHAP_LANMANRESP]);
773
774     /* preferred method is set by option  */
775     response[MS_CHAP_USENT] = !ms_lanman;
776 #else
777     response[MS_CHAP_USENT] = 1;
778 #endif
779
780 #ifdef PPP_WITH_MPPE
781     Set_Start_Key(rchallenge, secret, secret_len);
782 #endif
783 }
784
785
786 /*
787  * If PeerChallenge is NULL, one is generated and the PeerChallenge
788  * field of response is filled in.  Call this way when generating a response.
789  * If PeerChallenge is supplied, it is copied into the PeerChallenge field.
790  * Call this way when verifying a response (or debugging).
791  * Do not call with PeerChallenge = response.
792  *
793  * The PeerChallenge field of response is then used for calculation of the
794  * Authenticator Response.
795  */
796 void
797 ChapMS2(u_char *rchallenge, u_char *PeerChallenge,
798         char *user, char *secret, int secret_len, unsigned char *response,
799         u_char authResponse[], int authenticator)
800 {
801     /* ARGSUSED */
802     u_char *p = &response[MS_CHAP2_PEER_CHALLENGE];
803     int i;
804
805     BZERO(response, MS_CHAP2_RESPONSE_LEN);
806
807     /* Generate the Peer-Challenge if requested, or copy it if supplied. */
808     if (!PeerChallenge)
809         for (i = 0; i < MS_CHAP2_PEER_CHAL_LEN; i++)
810             *p++ = (u_char) (drand48() * 0xff);
811     else
812         BCOPY(PeerChallenge, &response[MS_CHAP2_PEER_CHALLENGE],
813               MS_CHAP2_PEER_CHAL_LEN);
814
815     /* Generate the NT-Response */
816     ChapMS2_NT(rchallenge, &response[MS_CHAP2_PEER_CHALLENGE], user,
817                secret, secret_len, &response[MS_CHAP2_NTRESP]);
818
819     /* Generate the Authenticator Response. */
820     GenerateAuthenticatorResponsePlain(secret, secret_len,
821                                        &response[MS_CHAP2_NTRESP],
822                                        &response[MS_CHAP2_PEER_CHALLENGE],
823                                        rchallenge, user, authResponse);
824
825 #ifdef PPP_WITH_MPPE
826     SetMasterKeys(secret, secret_len,
827                   &response[MS_CHAP2_NTRESP], authenticator);
828 #endif
829 }
830
831
832 static struct chap_digest_type chapms_digest = {
833         CHAP_MICROSOFT,         /* code */
834         chapms_generate_challenge,
835         chapms_verify_response,
836         chapms_make_response,
837         NULL,                   /* check_success */
838         chapms_handle_failure,
839 };
840
841 static struct chap_digest_type chapms2_digest = {
842         CHAP_MICROSOFT_V2,      /* code */
843         chapms2_generate_challenge,
844         chapms2_verify_response,
845         chapms2_make_response,
846         chapms2_check_success,
847         chapms_handle_failure,
848 };
849
850 #ifndef UNIT_TEST
851 void
852 chapms_init(void)
853 {
854         chap_register_digest(&chapms_digest);
855         chap_register_digest(&chapms2_digest);
856         add_options(chapms_option_list);
857 }
858 #else
859
860 #include <time.h>
861
862 int debug = 1;
863 int error_count = 0;
864 int unsuccess = 0;
865
866 void random_bytes(unsigned char *bytes, int len)
867 {
868     int i = 0;
869     srand(time(NULL));
870     while (i < len) {
871         bytes[i++] = (unsigned char) rand();
872     }
873 }
874
875
876 int test_chap_v1(void) {
877     char *secret = "TestPassword";
878
879     unsigned char challenge[8] = {
880         0x6c, 0x8d, 0x4b, 0xa1, 0x2b, 0x5c, 0x13, 0xc3
881     };
882     unsigned char response[MS_CHAP_RESPONSE_LEN] = {
883     };
884     unsigned char result[MS_CHAP_RESPONSE_LEN] = {
885         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
886         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
887         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
888
889         0x91, 0x09, 0x61, 0x5a, 0x0c, 0xac, 0xac, 0x55,
890         0x1f, 0x60, 0xe2, 0x9c, 0x00, 0xac, 0x24, 0xda,
891         0x6e, 0xa5, 0x7b, 0xdb, 0x1d, 0x6a, 0x17, 0xc5,
892         0x01
893     };
894
895     ChapMS(challenge, secret, strlen(secret), response);
896     return memcmp(response, result, MS_CHAP_RESPONSE_LEN);
897 }
898
899 int test_chap_v2(void) {
900     char *secret = "clientPass";
901     char *name = "User";
902
903     char saresponse[MS_AUTH_RESPONSE_LENGTH+1];
904     char *saresult = "407A5589115FD0D6209F510FE9C04566932CDA56";
905
906     unsigned char authenticator[16] = {
907         0x5B, 0x5D, 0x7C, 0x7D, 0x7B, 0x3F, 0x2F, 0x3E,
908         0x3C, 0x2C, 0x60, 0x21, 0x32, 0x26, 0x26, 0x28
909     };
910     unsigned char peerchallenge[16] = {
911         0x21, 0x40, 0x23, 0x24, 0x25, 0x5E, 0x26, 0x2A,
912         0x28, 0x29, 0x5F, 0x2B, 0x3A, 0x33, 0x7C, 0x7E
913     };
914     unsigned char result[MS_CHAP_NTRESP_LEN] = {
915         0x82, 0x30, 0x9E, 0xCD, 0x8D, 0x70, 0x8B, 0x5E,
916         0xA0, 0x8F, 0xAA, 0x39, 0x81, 0xCD, 0x83, 0x54,
917         0x42, 0x33, 0x11, 0x4A, 0x3D, 0x85, 0xD6, 0xDF
918     };
919
920     unsigned char response[MS_CHAP2_RESPONSE_LEN] = {
921     };
922
923         ChapMS2(authenticator, peerchallenge, name,
924                 secret, strlen(secret), response,
925                 (unsigned char *)saresponse, MS_CHAP2_AUTHENTICATOR);
926
927     return memcmp(&response[MS_CHAP2_NTRESP], result, MS_CHAP2_NTRESP_LEN) ||
928         strncmp(saresponse, saresult, MS_AUTH_RESPONSE_LENGTH);
929 }
930
931 int main(int argc, char *argv[]) {
932
933     if (test_chap_v1()) {
934         printf("CHAPv1 failed\n");
935         return -1;
936     }
937
938     if (test_chap_v2()) {
939         printf("CHAPv2 failed\n");
940         return -1;
941     }
942
943     printf("Success\n");
944     return 0;
945 }
946
947 #endif  /* UNIT_TEST */
948