Home | History | Annotate | Line # | Download | only in pppd
      1  1.1  christos /* ppp-sha1.c - SHA1 Digest implementation
      2  1.1  christos  *
      3  1.1  christos  * Copyright (c) 2022 Eivind Nss. All rights reserved.
      4  1.1  christos  *
      5  1.1  christos  * Redistribution and use in source and binary forms, with or without
      6  1.1  christos  * modification, are permitted provided that the following conditions
      7  1.1  christos  * are met:
      8  1.1  christos  *
      9  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     10  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     11  1.1  christos  *
     12  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  christos  *    notice, this list of conditions and the following disclaimer in
     14  1.1  christos  *    the documentation and/or other materials provided with the
     15  1.1  christos  *    distribution.
     16  1.1  christos  *
     17  1.1  christos  * 3. The name(s) of the authors of this software must not be used to
     18  1.1  christos  *    endorse or promote products derived from this software without
     19  1.1  christos  *    prior written permission.
     20  1.1  christos  *
     21  1.1  christos  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
     22  1.1  christos  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
     23  1.1  christos  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
     24  1.1  christos  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     25  1.1  christos  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
     26  1.1  christos  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
     27  1.1  christos  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     28  1.1  christos  *
     29  1.1  christos  * Sections of this code holds different copyright information.
     30  1.1  christos  */
     31  1.1  christos 
     32  1.1  christos #ifdef HAVE_CONFIG_H
     33  1.1  christos #include "config.h"
     34  1.1  christos #endif
     35  1.1  christos 
     36  1.1  christos #include <stdlib.h>
     37  1.1  christos #include <stddef.h>
     38  1.1  christos 
     39  1.1  christos #include "crypto-priv.h"
     40  1.1  christos 
     41  1.1  christos 
     42  1.1  christos /* #define SHA1HANDSOFF * Copies data before messing with it. */
     43  1.1  christos #ifdef OPENSSL_HAVE_SHA
     44  1.1  christos #include <openssl/evp.h>
     45  1.1  christos 
     46  1.1  christos #if OPENSSL_VERSION_NUMBER < 0x10100000L
     47  1.1  christos #define EVP_MD_CTX_free EVP_MD_CTX_destroy
     48  1.1  christos #define EVP_MD_CTX_new EVP_MD_CTX_create
     49  1.1  christos #endif
     50  1.1  christos 
     51  1.1  christos static int sha1_init(PPP_MD_CTX *ctx)
     52  1.1  christos {
     53  1.1  christos     if (ctx) {
     54  1.1  christos         EVP_MD_CTX *mctx = EVP_MD_CTX_new();
     55  1.1  christos         if (mctx) {
     56  1.1  christos             if (EVP_DigestInit(mctx, EVP_sha1())) {
     57  1.1  christos                 ctx->priv = mctx;
     58  1.1  christos                 return 1;
     59  1.1  christos             }
     60  1.1  christos             EVP_MD_CTX_free(mctx);
     61  1.1  christos         }
     62  1.1  christos     }
     63  1.1  christos     return 0;
     64  1.1  christos }
     65  1.1  christos 
     66  1.1  christos static int sha1_update(PPP_MD_CTX *ctx, const void *data, size_t len)
     67  1.1  christos {
     68  1.1  christos     if (EVP_DigestUpdate((EVP_MD_CTX*) ctx->priv, data, len)) {
     69  1.1  christos         return 1;
     70  1.1  christos     }
     71  1.1  christos     return 0;
     72  1.1  christos }
     73  1.1  christos 
     74  1.1  christos static int sha1_final(PPP_MD_CTX *ctx, unsigned char *out, unsigned int *len)
     75  1.1  christos {
     76  1.1  christos     if (EVP_DigestFinal((EVP_MD_CTX*) ctx->priv, out, len)) {
     77  1.1  christos         return 1;
     78  1.1  christos     }
     79  1.1  christos     return 0;
     80  1.1  christos }
     81  1.1  christos 
     82  1.1  christos static void sha1_clean(PPP_MD_CTX *ctx)
     83  1.1  christos {
     84  1.1  christos     if (ctx->priv) {
     85  1.1  christos         EVP_MD_CTX_free((EVP_MD_CTX*) ctx->priv);
     86  1.1  christos         ctx->priv = NULL;
     87  1.1  christos     }
     88  1.1  christos }
     89  1.1  christos 
     90  1.1  christos 
     91  1.1  christos #else // !OPENSSL_HAVE_SHA
     92  1.1  christos 
     93  1.1  christos /*
     94  1.1  christos  * ftp://ftp.funet.fi/pub/crypt/hash/sha/sha1.c
     95  1.1  christos  *
     96  1.1  christos  * SHA-1 in C
     97  1.1  christos  * By Steve Reid <steve (at) edmweb.com>
     98  1.1  christos  * 100% Public Domain
     99  1.1  christos  *
    100  1.1  christos  * Test Vectors (from FIPS PUB 180-1)
    101  1.1  christos  * "abc"
    102  1.1  christos  * A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
    103  1.1  christos  * "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
    104  1.1  christos  * 84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1
    105  1.1  christos  * A million repetitions of "a"
    106  1.1  christos  * 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
    107  1.1  christos  */
    108  1.1  christos 
    109  1.1  christos #include <string.h>
    110  1.1  christos #include <netinet/in.h>	/* htonl() */
    111  1.1  christos 
    112  1.1  christos typedef struct {
    113  1.1  christos     uint32_t state[5];
    114  1.1  christos     uint32_t count[2];
    115  1.1  christos     unsigned char buffer[64];
    116  1.1  christos } SHA1_CTX;
    117  1.1  christos 
    118  1.1  christos 
    119  1.1  christos static void
    120  1.1  christos SHA1_Transform(uint32_t[5], const unsigned char[64]);
    121  1.1  christos 
    122  1.1  christos #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
    123  1.1  christos 
    124  1.1  christos /* blk0() and blk() perform the initial expand. */
    125  1.1  christos /* I got the idea of expanding during the round function from SSLeay */
    126  1.1  christos #define blk0(i) (block->l[i] = htonl(block->l[i]))
    127  1.1  christos #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
    128  1.1  christos     ^block->l[(i+2)&15]^block->l[i&15],1))
    129  1.1  christos 
    130  1.1  christos /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
    131  1.1  christos #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
    132  1.1  christos #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
    133  1.1  christos #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
    134  1.1  christos #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
    135  1.1  christos #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
    136  1.1  christos 
    137  1.1  christos 
    138  1.1  christos /* Hash a single 512-bit block. This is the core of the algorithm. */
    139  1.1  christos 
    140  1.1  christos static void
    141  1.1  christos SHA1_Transform(uint32_t state[5], const unsigned char buffer[64])
    142  1.1  christos {
    143  1.1  christos     uint32_t a, b, c, d, e;
    144  1.1  christos     typedef union {
    145  1.1  christos 	unsigned char c[64];
    146  1.1  christos 	uint32_t l[16];
    147  1.1  christos     } CHAR64LONG16;
    148  1.1  christos     CHAR64LONG16 *block;
    149  1.1  christos 
    150  1.1  christos #ifdef SHA1HANDSOFF
    151  1.1  christos     static unsigned char workspace[64];
    152  1.1  christos     block = (CHAR64LONG16 *) workspace;
    153  1.1  christos     memcpy(block, buffer, 64);
    154  1.1  christos #else
    155  1.1  christos     block = (CHAR64LONG16 *) buffer;
    156  1.1  christos #endif
    157  1.1  christos     /* Copy context->state[] to working vars */
    158  1.1  christos     a = state[0];
    159  1.1  christos     b = state[1];
    160  1.1  christos     c = state[2];
    161  1.1  christos     d = state[3];
    162  1.1  christos     e = state[4];
    163  1.1  christos     /* 4 rounds of 20 operations each. Loop unrolled. */
    164  1.1  christos     R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3);
    165  1.1  christos     R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7);
    166  1.1  christos     R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
    167  1.1  christos     R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
    168  1.1  christos     R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
    169  1.1  christos     R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
    170  1.1  christos     R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
    171  1.1  christos     R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
    172  1.1  christos     R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
    173  1.1  christos     R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
    174  1.1  christos     R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
    175  1.1  christos     R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
    176  1.1  christos     R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
    177  1.1  christos     R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
    178  1.1  christos     R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
    179  1.1  christos     R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
    180  1.1  christos     R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
    181  1.1  christos     R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
    182  1.1  christos     R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
    183  1.1  christos     R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
    184  1.1  christos     /* Add the working vars back into context.state[] */
    185  1.1  christos     state[0] += a;
    186  1.1  christos     state[1] += b;
    187  1.1  christos     state[2] += c;
    188  1.1  christos     state[3] += d;
    189  1.1  christos     state[4] += e;
    190  1.1  christos     /* Wipe variables */
    191  1.1  christos     a = b = c = d = e = 0;
    192  1.1  christos }
    193  1.1  christos 
    194  1.1  christos 
    195  1.1  christos /* SHA1Init - Initialize new context */
    196  1.1  christos 
    197  1.1  christos static void
    198  1.1  christos SHA1_Init(SHA1_CTX *context)
    199  1.1  christos {
    200  1.1  christos     /* SHA1 initialization constants */
    201  1.1  christos     context->state[0] = 0x67452301;
    202  1.1  christos     context->state[1] = 0xEFCDAB89;
    203  1.1  christos     context->state[2] = 0x98BADCFE;
    204  1.1  christos     context->state[3] = 0x10325476;
    205  1.1  christos     context->state[4] = 0xC3D2E1F0;
    206  1.1  christos     context->count[0] = context->count[1] = 0;
    207  1.1  christos }
    208  1.1  christos 
    209  1.1  christos 
    210  1.1  christos /* Run your data through this. */
    211  1.1  christos 
    212  1.1  christos static void
    213  1.1  christos SHA1_Update(SHA1_CTX *context, const unsigned char *data, unsigned int len)
    214  1.1  christos {
    215  1.1  christos     unsigned int i, j;
    216  1.1  christos 
    217  1.1  christos     j = (context->count[0] >> 3) & 63;
    218  1.1  christos     if ((context->count[0] += len << 3) < (len << 3)) context->count[1]++;
    219  1.1  christos     context->count[1] += (len >> 29);
    220  1.1  christos     i = 64 - j;
    221  1.1  christos     while (len >= i) {
    222  1.1  christos 	memcpy(&context->buffer[j], data, i);
    223  1.1  christos 	SHA1_Transform(context->state, context->buffer);
    224  1.1  christos 	data += i;
    225  1.1  christos 	len -= i;
    226  1.1  christos 	i = 64;
    227  1.1  christos 	j = 0;
    228  1.1  christos     }
    229  1.1  christos 
    230  1.1  christos     memcpy(&context->buffer[j], data, len);
    231  1.1  christos }
    232  1.1  christos 
    233  1.1  christos 
    234  1.1  christos /* Add padding and return the message digest. */
    235  1.1  christos 
    236  1.1  christos static void
    237  1.1  christos SHA1_Final(unsigned char digest[20], SHA1_CTX *context)
    238  1.1  christos {
    239  1.1  christos     uint32_t i, j;
    240  1.1  christos     unsigned char finalcount[8];
    241  1.1  christos 
    242  1.1  christos     for (i = 0; i < 8; i++) {
    243  1.1  christos         finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
    244  1.1  christos          >> ((3-(i & 3)) * 8) ) & 255);  /* Endian independent */
    245  1.1  christos     }
    246  1.1  christos     SHA1_Update(context, (unsigned char *) "\200", 1);
    247  1.1  christos     while ((context->count[0] & 504) != 448) {
    248  1.1  christos 	SHA1_Update(context, (unsigned char *) "\0", 1);
    249  1.1  christos     }
    250  1.1  christos     SHA1_Update(context, finalcount, 8);  /* Should cause a SHA1Transform() */
    251  1.1  christos     for (i = 0; i < 20; i++) {
    252  1.1  christos 	digest[i] = (unsigned char)
    253  1.1  christos 		     ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255);
    254  1.1  christos     }
    255  1.1  christos     /* Wipe variables */
    256  1.1  christos     i = j = 0;
    257  1.1  christos     memset(context->buffer, 0, 64);
    258  1.1  christos     memset(context->state, 0, 20);
    259  1.1  christos     memset(context->count, 0, 8);
    260  1.1  christos     memset(&finalcount, 0, 8);
    261  1.1  christos #ifdef SHA1HANDSOFF  /* make SHA1Transform overwrite it's own static vars */
    262  1.1  christos     SHA1Transform(context->state, context->buffer);
    263  1.1  christos #endif
    264  1.1  christos }
    265  1.1  christos 
    266  1.1  christos static int sha1_init(PPP_MD_CTX *ctx)
    267  1.1  christos {
    268  1.1  christos     if (ctx) {
    269  1.1  christos         SHA1_CTX *mctx = calloc(1, sizeof(SHA1_CTX));
    270  1.1  christos         if (mctx) {
    271  1.1  christos             SHA1_Init(mctx);
    272  1.1  christos             ctx->priv = mctx;
    273  1.1  christos             return 1;
    274  1.1  christos         }
    275  1.1  christos     }
    276  1.1  christos     return 0;
    277  1.1  christos }
    278  1.1  christos 
    279  1.1  christos static int sha1_update(PPP_MD_CTX* ctx, const void *data, size_t len)
    280  1.1  christos {
    281  1.1  christos     SHA1_Update((SHA1_CTX*) ctx->priv, (void*) data, len);
    282  1.1  christos     return 1;
    283  1.1  christos }
    284  1.1  christos 
    285  1.1  christos static int sha1_final(PPP_MD_CTX *ctx, unsigned char *out, unsigned int *len)
    286  1.1  christos {
    287  1.1  christos     SHA1_Final(out, (SHA1_CTX*) ctx->priv);
    288  1.1  christos     return 1;
    289  1.1  christos }
    290  1.1  christos 
    291  1.1  christos static void sha1_clean(PPP_MD_CTX *ctx)
    292  1.1  christos {
    293  1.1  christos     if (ctx->priv) {
    294  1.1  christos         free(ctx->priv);
    295  1.1  christos         ctx->priv = NULL;
    296  1.1  christos     }
    297  1.1  christos }
    298  1.1  christos 
    299  1.1  christos #endif
    300  1.1  christos 
    301  1.1  christos static PPP_MD ppp_sha1 = {
    302  1.1  christos     .init_fn = sha1_init,
    303  1.1  christos     .update_fn = sha1_update,
    304  1.1  christos     .final_fn = sha1_final,
    305  1.1  christos     .clean_fn = sha1_clean,
    306  1.1  christos };
    307  1.1  christos 
    308  1.1  christos const PPP_MD *PPP_sha1(void)
    309  1.1  christos {
    310  1.1  christos     return &ppp_sha1;
    311  1.1  christos }
    312  1.1  christos 
    313