Home | History | Annotate | Line # | Download | only in dist
umac.c revision 1.3
      1  1.3  christos /*	$NetBSD: umac.c,v 1.3 2012/05/02 02:41:08 christos Exp $	*/
      2  1.3  christos /* $OpenBSD: umac.c,v 1.4 2011/10/19 10:39:48 djm Exp $ */
      3  1.1  christos /* -----------------------------------------------------------------------
      4  1.1  christos  *
      5  1.1  christos  * umac.c -- C Implementation UMAC Message Authentication
      6  1.1  christos  *
      7  1.1  christos  * Version 0.93b of rfc4418.txt -- 2006 July 18
      8  1.1  christos  *
      9  1.1  christos  * For a full description of UMAC message authentication see the UMAC
     10  1.1  christos  * world-wide-web page at http://www.cs.ucdavis.edu/~rogaway/umac
     11  1.1  christos  * Please report bugs and suggestions to the UMAC webpage.
     12  1.1  christos  *
     13  1.1  christos  * Copyright (c) 1999-2006 Ted Krovetz
     14  1.1  christos  *
     15  1.1  christos  * Permission to use, copy, modify, and distribute this software and
     16  1.1  christos  * its documentation for any purpose and with or without fee, is hereby
     17  1.1  christos  * granted provided that the above copyright notice appears in all copies
     18  1.1  christos  * and in supporting documentation, and that the name of the copyright
     19  1.1  christos  * holder not be used in advertising or publicity pertaining to
     20  1.1  christos  * distribution of the software without specific, written prior permission.
     21  1.1  christos  *
     22  1.1  christos  * Comments should be directed to Ted Krovetz (tdk (at) acm.org)
     23  1.1  christos  *
     24  1.1  christos  * ---------------------------------------------------------------------- */
     25  1.1  christos 
     26  1.1  christos  /* ////////////////////// IMPORTANT NOTES /////////////////////////////////
     27  1.1  christos   *
     28  1.1  christos   * 1) This version does not work properly on messages larger than 16MB
     29  1.1  christos   *
     30  1.1  christos   * 2) If you set the switch to use SSE2, then all data must be 16-byte
     31  1.1  christos   *    aligned
     32  1.1  christos   *
     33  1.1  christos   * 3) When calling the function umac(), it is assumed that msg is in
     34  1.1  christos   * a writable buffer of length divisible by 32 bytes. The message itself
     35  1.1  christos   * does not have to fill the entire buffer, but bytes beyond msg may be
     36  1.1  christos   * zeroed.
     37  1.1  christos   *
     38  1.1  christos   * 4) Three free AES implementations are supported by this implementation of
     39  1.1  christos   * UMAC. Paulo Barreto's version is in the public domain and can be found
     40  1.1  christos   * at http://www.esat.kuleuven.ac.be/~rijmen/rijndael/ (search for
     41  1.1  christos   * "Barreto"). The only two files needed are rijndael-alg-fst.c and
     42  1.1  christos   * rijndael-alg-fst.h. Brian Gladman's version is distributed with the GNU
     43  1.1  christos   * Public lisence at http://fp.gladman.plus.com/AES/index.htm. It
     44  1.1  christos   * includes a fast IA-32 assembly version. The OpenSSL crypo library is
     45  1.1  christos   * the third.
     46  1.1  christos   *
     47  1.1  christos   * 5) With FORCE_C_ONLY flags set to 0, incorrect results are sometimes
     48  1.1  christos   * produced under gcc with optimizations set -O3 or higher. Dunno why.
     49  1.1  christos   *
     50  1.1  christos   /////////////////////////////////////////////////////////////////////// */
     51  1.1  christos 
     52  1.1  christos /* ---------------------------------------------------------------------- */
     53  1.1  christos /* --- User Switches ---------------------------------------------------- */
     54  1.1  christos /* ---------------------------------------------------------------------- */
     55  1.1  christos 
     56  1.1  christos #define UMAC_OUTPUT_LEN     8  /* Alowable: 4, 8, 12, 16                  */
     57  1.1  christos /* #define FORCE_C_ONLY        1  ANSI C and 64-bit integers req'd        */
     58  1.1  christos /* #define AES_IMPLEMENTAION   1  1 = OpenSSL, 2 = Barreto, 3 = Gladman   */
     59  1.1  christos /* #define SSE2                0  Is SSE2 is available?                   */
     60  1.1  christos /* #define RUN_TESTS           0  Run basic correctness/speed tests       */
     61  1.1  christos /* #define UMAC_AE_SUPPORT     0  Enable auhthenticated encrytion         */
     62  1.1  christos 
     63  1.1  christos /* ---------------------------------------------------------------------- */
     64  1.1  christos /* -- Global Includes --------------------------------------------------- */
     65  1.1  christos /* ---------------------------------------------------------------------- */
     66  1.1  christos 
     67  1.2  christos #include "includes.h"
     68  1.3  christos __RCSID("$NetBSD: umac.c,v 1.3 2012/05/02 02:41:08 christos Exp $");
     69  1.1  christos #include <sys/types.h>
     70  1.1  christos #include <sys/endian.h>
     71  1.1  christos 
     72  1.1  christos #include "xmalloc.h"
     73  1.1  christos #include "umac.h"
     74  1.1  christos #include <string.h>
     75  1.1  christos #include <stdlib.h>
     76  1.1  christos #include <stddef.h>
     77  1.1  christos 
     78  1.1  christos /* ---------------------------------------------------------------------- */
     79  1.1  christos /* --- Primitive Data Types ---                                           */
     80  1.1  christos /* ---------------------------------------------------------------------- */
     81  1.1  christos 
     82  1.1  christos /* The following assumptions may need change on your system */
     83  1.1  christos typedef u_int8_t	UINT8;  /* 1 byte   */
     84  1.1  christos typedef u_int16_t	UINT16; /* 2 byte   */
     85  1.1  christos typedef u_int32_t	UINT32; /* 4 byte   */
     86  1.1  christos typedef u_int64_t	UINT64; /* 8 bytes  */
     87  1.1  christos typedef unsigned int	UWORD;  /* Register */
     88  1.1  christos 
     89  1.1  christos /* ---------------------------------------------------------------------- */
     90  1.1  christos /* --- Constants -------------------------------------------------------- */
     91  1.1  christos /* ---------------------------------------------------------------------- */
     92  1.1  christos 
     93  1.1  christos #define UMAC_KEY_LEN           16  /* UMAC takes 16 bytes of external key */
     94  1.1  christos 
     95  1.1  christos /* Message "words" are read from memory in an endian-specific manner.     */
     96  1.1  christos /* For this implementation to behave correctly, __LITTLE_ENDIAN__ must    */
     97  1.1  christos /* be set true if the host computer is little-endian.                     */
     98  1.1  christos 
     99  1.1  christos #if BYTE_ORDER == LITTLE_ENDIAN
    100  1.1  christos #define __LITTLE_ENDIAN__ 1
    101  1.1  christos #else
    102  1.1  christos #define __LITTLE_ENDIAN__ 0
    103  1.1  christos #endif
    104  1.1  christos 
    105  1.1  christos /* ---------------------------------------------------------------------- */
    106  1.1  christos /* ---------------------------------------------------------------------- */
    107  1.1  christos /* ----- Architecture Specific ------------------------------------------ */
    108  1.1  christos /* ---------------------------------------------------------------------- */
    109  1.1  christos /* ---------------------------------------------------------------------- */
    110  1.1  christos 
    111  1.1  christos 
    112  1.1  christos /* ---------------------------------------------------------------------- */
    113  1.1  christos /* ---------------------------------------------------------------------- */
    114  1.1  christos /* ----- Primitive Routines --------------------------------------------- */
    115  1.1  christos /* ---------------------------------------------------------------------- */
    116  1.1  christos /* ---------------------------------------------------------------------- */
    117  1.1  christos 
    118  1.1  christos 
    119  1.1  christos /* ---------------------------------------------------------------------- */
    120  1.1  christos /* --- 32-bit by 32-bit to 64-bit Multiplication ------------------------ */
    121  1.1  christos /* ---------------------------------------------------------------------- */
    122  1.1  christos 
    123  1.1  christos #define MUL64(a,b) ((UINT64)((UINT64)(UINT32)(a) * (UINT64)(UINT32)(b)))
    124  1.1  christos 
    125  1.2  christos #if defined(__NetBSD__)
    126  1.2  christos #include <sys/endian.h>
    127  1.2  christos #define LOAD_UINT32_LITTLE(ptr)	le32toh(*ptr)
    128  1.2  christos #define STORE_UINT32_BIG(ptr,x)	(*(UINT32 *)(ptr) = htobe32(x))
    129  1.2  christos #define LOAD_UINT32_REVERSED(p)		(bswap32(*(UINT32 *)(p)))
    130  1.2  christos #define STORE_UINT32_REVERSED(p,v) 	(*(UINT32 *)(p) = bswap32(v))
    131  1.2  christos #else /* !NetBSD */
    132  1.2  christos 
    133  1.2  christos  /* ---------------------------------------------------------------------- */
    134  1.2  christos  /* --- Endian Conversion --- Forcing assembly on some platforms           */
    135  1.2  christos 
    136  1.1  christos /* ---------------------------------------------------------------------- */
    137  1.1  christos /* --- Endian Conversion --- Forcing assembly on some platforms           */
    138  1.1  christos /* ---------------------------------------------------------------------- */
    139  1.1  christos 
    140  1.2  christos #if !defined(__OpenBSD__)
    141  1.1  christos static UINT32 LOAD_UINT32_REVERSED(void *ptr)
    142  1.1  christos {
    143  1.1  christos     UINT32 temp = *(UINT32 *)ptr;
    144  1.1  christos     temp = (temp >> 24) | ((temp & 0x00FF0000) >> 8 )
    145  1.1  christos          | ((temp & 0x0000FF00) << 8 ) | (temp << 24);
    146  1.1  christos     return (UINT32)temp;
    147  1.1  christos }
    148  1.1  christos 
    149  1.1  christos static void STORE_UINT32_REVERSED(void *ptr, UINT32 x)
    150  1.1  christos {
    151  1.1  christos     UINT32 i = (UINT32)x;
    152  1.1  christos     *(UINT32 *)ptr = (i >> 24) | ((i & 0x00FF0000) >> 8 )
    153  1.1  christos                    | ((i & 0x0000FF00) << 8 ) | (i << 24);
    154  1.1  christos }
    155  1.1  christos #endif
    156  1.1  christos 
    157  1.2  christos #else
    158  1.1  christos /* The following definitions use the above reversal-primitives to do the right
    159  1.1  christos  * thing on endian specific load and stores.
    160  1.1  christos  */
    161  1.1  christos 
    162  1.1  christos #define LOAD_UINT32_REVERSED(p)		(swap32(*(UINT32 *)(p)))
    163  1.1  christos #define STORE_UINT32_REVERSED(p,v) 	(*(UINT32 *)(p) = swap32(v))
    164  1.2  christos #endif
    165  1.1  christos 
    166  1.1  christos #if (__LITTLE_ENDIAN__)
    167  1.1  christos #define LOAD_UINT32_LITTLE(ptr)     (*(UINT32 *)(ptr))
    168  1.1  christos #define STORE_UINT32_BIG(ptr,x)     STORE_UINT32_REVERSED(ptr,x)
    169  1.1  christos #else
    170  1.1  christos #define LOAD_UINT32_LITTLE(ptr)     LOAD_UINT32_REVERSED(ptr)
    171  1.1  christos #define STORE_UINT32_BIG(ptr,x)     (*(UINT32 *)(ptr) = (UINT32)(x))
    172  1.1  christos #endif
    173  1.2  christos #endif /*!NetBSD*/
    174  1.1  christos 
    175  1.1  christos 
    176  1.1  christos 
    177  1.1  christos /* ---------------------------------------------------------------------- */
    178  1.1  christos /* ---------------------------------------------------------------------- */
    179  1.1  christos /* ----- Begin KDF & PDF Section ---------------------------------------- */
    180  1.1  christos /* ---------------------------------------------------------------------- */
    181  1.1  christos /* ---------------------------------------------------------------------- */
    182  1.1  christos 
    183  1.1  christos /* UMAC uses AES with 16 byte block and key lengths */
    184  1.1  christos #define AES_BLOCK_LEN  16
    185  1.1  christos 
    186  1.1  christos /* OpenSSL's AES */
    187  1.1  christos #include <openssl/aes.h>
    188  1.1  christos typedef AES_KEY aes_int_key[1];
    189  1.1  christos #define aes_encryption(in,out,int_key)                  \
    190  1.1  christos   AES_encrypt((u_char *)(in),(u_char *)(out),(AES_KEY *)int_key)
    191  1.1  christos #define aes_key_setup(key,int_key)                      \
    192  1.1  christos   AES_set_encrypt_key((u_char *)(key),UMAC_KEY_LEN*8,int_key)
    193  1.1  christos 
    194  1.1  christos /* The user-supplied UMAC key is stretched using AES in a counter
    195  1.1  christos  * mode to supply all random bits needed by UMAC. The kdf function takes
    196  1.1  christos  * an AES internal key representation 'key' and writes a stream of
    197  1.1  christos  * 'nbytes' bytes to the memory pointed at by 'buffer_ptr'. Each distinct
    198  1.1  christos  * 'ndx' causes a distinct byte stream.
    199  1.1  christos  */
    200  1.1  christos static void kdf(void *buffer_ptr, aes_int_key key, UINT8 ndx, int nbytes)
    201  1.1  christos {
    202  1.1  christos     UINT8 in_buf[AES_BLOCK_LEN] = {0};
    203  1.1  christos     UINT8 out_buf[AES_BLOCK_LEN];
    204  1.1  christos     UINT8 *dst_buf = (UINT8 *)buffer_ptr;
    205  1.1  christos     int i;
    206  1.1  christos 
    207  1.1  christos     /* Setup the initial value */
    208  1.1  christos     in_buf[AES_BLOCK_LEN-9] = ndx;
    209  1.1  christos     in_buf[AES_BLOCK_LEN-1] = i = 1;
    210  1.1  christos 
    211  1.1  christos     while (nbytes >= AES_BLOCK_LEN) {
    212  1.1  christos         aes_encryption(in_buf, out_buf, key);
    213  1.1  christos         memcpy(dst_buf,out_buf,AES_BLOCK_LEN);
    214  1.1  christos         in_buf[AES_BLOCK_LEN-1] = ++i;
    215  1.1  christos         nbytes -= AES_BLOCK_LEN;
    216  1.1  christos         dst_buf += AES_BLOCK_LEN;
    217  1.1  christos     }
    218  1.1  christos     if (nbytes) {
    219  1.1  christos         aes_encryption(in_buf, out_buf, key);
    220  1.1  christos         memcpy(dst_buf,out_buf,nbytes);
    221  1.1  christos     }
    222  1.1  christos }
    223  1.1  christos 
    224  1.1  christos /* The final UHASH result is XOR'd with the output of a pseudorandom
    225  1.1  christos  * function. Here, we use AES to generate random output and
    226  1.1  christos  * xor the appropriate bytes depending on the last bits of nonce.
    227  1.1  christos  * This scheme is optimized for sequential, increasing big-endian nonces.
    228  1.1  christos  */
    229  1.1  christos 
    230  1.1  christos typedef struct {
    231  1.1  christos     UINT8 cache[AES_BLOCK_LEN];  /* Previous AES output is saved      */
    232  1.1  christos     UINT8 nonce[AES_BLOCK_LEN];  /* The AES input making above cache  */
    233  1.1  christos     aes_int_key prf_key;         /* Expanded AES key for PDF          */
    234  1.1  christos } pdf_ctx;
    235  1.1  christos 
    236  1.1  christos static void pdf_init(pdf_ctx *pc, aes_int_key prf_key)
    237  1.1  christos {
    238  1.1  christos     UINT8 buf[UMAC_KEY_LEN];
    239  1.1  christos 
    240  1.1  christos     kdf(buf, prf_key, 0, UMAC_KEY_LEN);
    241  1.1  christos     aes_key_setup(buf, pc->prf_key);
    242  1.1  christos 
    243  1.1  christos     /* Initialize pdf and cache */
    244  1.1  christos     memset(pc->nonce, 0, sizeof(pc->nonce));
    245  1.1  christos     aes_encryption(pc->nonce, pc->cache, pc->prf_key);
    246  1.1  christos }
    247  1.1  christos 
    248  1.1  christos static void pdf_gen_xor(pdf_ctx *pc, UINT8 nonce[8], UINT8 buf[8])
    249  1.1  christos {
    250  1.1  christos     /* 'ndx' indicates that we'll be using the 0th or 1st eight bytes
    251  1.1  christos      * of the AES output. If last time around we returned the ndx-1st
    252  1.1  christos      * element, then we may have the result in the cache already.
    253  1.1  christos      */
    254  1.1  christos 
    255  1.1  christos #if (UMAC_OUTPUT_LEN == 4)
    256  1.1  christos #define LOW_BIT_MASK 3
    257  1.1  christos #elif (UMAC_OUTPUT_LEN == 8)
    258  1.1  christos #define LOW_BIT_MASK 1
    259  1.1  christos #elif (UMAC_OUTPUT_LEN > 8)
    260  1.1  christos #define LOW_BIT_MASK 0
    261  1.1  christos #endif
    262  1.1  christos 
    263  1.1  christos     UINT8 tmp_nonce_lo[4];
    264  1.1  christos #if LOW_BIT_MASK != 0
    265  1.1  christos     int ndx = nonce[7] & LOW_BIT_MASK;
    266  1.1  christos #endif
    267  1.1  christos     *(UINT32 *)tmp_nonce_lo = ((UINT32 *)nonce)[1];
    268  1.1  christos     tmp_nonce_lo[3] &= ~LOW_BIT_MASK; /* zero last bit */
    269  1.1  christos 
    270  1.1  christos     if ( (((UINT32 *)tmp_nonce_lo)[0] != ((UINT32 *)pc->nonce)[1]) ||
    271  1.1  christos          (((UINT32 *)nonce)[0] != ((UINT32 *)pc->nonce)[0]) )
    272  1.1  christos     {
    273  1.1  christos         ((UINT32 *)pc->nonce)[0] = ((UINT32 *)nonce)[0];
    274  1.1  christos         ((UINT32 *)pc->nonce)[1] = ((UINT32 *)tmp_nonce_lo)[0];
    275  1.1  christos         aes_encryption(pc->nonce, pc->cache, pc->prf_key);
    276  1.1  christos     }
    277  1.1  christos 
    278  1.1  christos #if (UMAC_OUTPUT_LEN == 4)
    279  1.1  christos     *((UINT32 *)buf) ^= ((UINT32 *)pc->cache)[ndx];
    280  1.1  christos #elif (UMAC_OUTPUT_LEN == 8)
    281  1.1  christos     *((UINT64 *)buf) ^= ((UINT64 *)pc->cache)[ndx];
    282  1.1  christos #elif (UMAC_OUTPUT_LEN == 12)
    283  1.1  christos     ((UINT64 *)buf)[0] ^= ((UINT64 *)pc->cache)[0];
    284  1.1  christos     ((UINT32 *)buf)[2] ^= ((UINT32 *)pc->cache)[2];
    285  1.1  christos #elif (UMAC_OUTPUT_LEN == 16)
    286  1.1  christos     ((UINT64 *)buf)[0] ^= ((UINT64 *)pc->cache)[0];
    287  1.1  christos     ((UINT64 *)buf)[1] ^= ((UINT64 *)pc->cache)[1];
    288  1.1  christos #endif
    289  1.1  christos }
    290  1.1  christos 
    291  1.1  christos /* ---------------------------------------------------------------------- */
    292  1.1  christos /* ---------------------------------------------------------------------- */
    293  1.1  christos /* ----- Begin NH Hash Section ------------------------------------------ */
    294  1.1  christos /* ---------------------------------------------------------------------- */
    295  1.1  christos /* ---------------------------------------------------------------------- */
    296  1.1  christos 
    297  1.1  christos /* The NH-based hash functions used in UMAC are described in the UMAC paper
    298  1.1  christos  * and specification, both of which can be found at the UMAC website.
    299  1.1  christos  * The interface to this implementation has two
    300  1.1  christos  * versions, one expects the entire message being hashed to be passed
    301  1.1  christos  * in a single buffer and returns the hash result immediately. The second
    302  1.1  christos  * allows the message to be passed in a sequence of buffers. In the
    303  1.1  christos  * muliple-buffer interface, the client calls the routine nh_update() as
    304  1.1  christos  * many times as necessary. When there is no more data to be fed to the
    305  1.1  christos  * hash, the client calls nh_final() which calculates the hash output.
    306  1.1  christos  * Before beginning another hash calculation the nh_reset() routine
    307  1.1  christos  * must be called. The single-buffer routine, nh(), is equivalent to
    308  1.1  christos  * the sequence of calls nh_update() and nh_final(); however it is
    309  1.1  christos  * optimized and should be prefered whenever the multiple-buffer interface
    310  1.1  christos  * is not necessary. When using either interface, it is the client's
    311  1.1  christos  * responsability to pass no more than L1_KEY_LEN bytes per hash result.
    312  1.1  christos  *
    313  1.1  christos  * The routine nh_init() initializes the nh_ctx data structure and
    314  1.1  christos  * must be called once, before any other PDF routine.
    315  1.1  christos  */
    316  1.1  christos 
    317  1.1  christos  /* The "nh_aux" routines do the actual NH hashing work. They
    318  1.1  christos   * expect buffers to be multiples of L1_PAD_BOUNDARY. These routines
    319  1.1  christos   * produce output for all STREAMS NH iterations in one call,
    320  1.1  christos   * allowing the parallel implementation of the streams.
    321  1.1  christos   */
    322  1.1  christos 
    323  1.1  christos #define STREAMS (UMAC_OUTPUT_LEN / 4) /* Number of times hash is applied  */
    324  1.1  christos #define L1_KEY_LEN         1024     /* Internal key bytes                 */
    325  1.1  christos #define L1_KEY_SHIFT         16     /* Toeplitz key shift between streams */
    326  1.1  christos #define L1_PAD_BOUNDARY      32     /* pad message to boundary multiple   */
    327  1.1  christos #define ALLOC_BOUNDARY       16     /* Keep buffers aligned to this       */
    328  1.1  christos #define HASH_BUF_BYTES       64     /* nh_aux_hb buffer multiple          */
    329  1.1  christos 
    330  1.1  christos typedef struct {
    331  1.1  christos     UINT8  nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */
    332  1.3  christos     UINT8  data   [HASH_BUF_BYTES];    /* Incoming data buffer           */
    333  1.1  christos     int next_data_empty;    /* Bookeeping variable for data buffer.       */
    334  1.1  christos     int bytes_hashed;        /* Bytes (out of L1_KEY_LEN) incorperated.   */
    335  1.1  christos     UINT64 state[STREAMS];               /* on-line state     */
    336  1.1  christos } nh_ctx;
    337  1.1  christos 
    338  1.1  christos 
    339  1.1  christos #if (UMAC_OUTPUT_LEN == 4)
    340  1.1  christos 
    341  1.1  christos static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen)
    342  1.1  christos /* NH hashing primitive. Previous (partial) hash result is loaded and
    343  1.1  christos * then stored via hp pointer. The length of the data pointed at by "dp",
    344  1.1  christos * "dlen", is guaranteed to be divisible by L1_PAD_BOUNDARY (32).  Key
    345  1.1  christos * is expected to be endian compensated in memory at key setup.
    346  1.1  christos */
    347  1.1  christos {
    348  1.1  christos     UINT64 h;
    349  1.1  christos     UWORD c = dlen / 32;
    350  1.1  christos     UINT32 *k = (UINT32 *)kp;
    351  1.1  christos     UINT32 *d = (UINT32 *)dp;
    352  1.1  christos     UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
    353  1.1  christos     UINT32 k0,k1,k2,k3,k4,k5,k6,k7;
    354  1.1  christos 
    355  1.1  christos     h = *((UINT64 *)hp);
    356  1.1  christos     do {
    357  1.1  christos         d0 = LOAD_UINT32_LITTLE(d+0); d1 = LOAD_UINT32_LITTLE(d+1);
    358  1.1  christos         d2 = LOAD_UINT32_LITTLE(d+2); d3 = LOAD_UINT32_LITTLE(d+3);
    359  1.1  christos         d4 = LOAD_UINT32_LITTLE(d+4); d5 = LOAD_UINT32_LITTLE(d+5);
    360  1.1  christos         d6 = LOAD_UINT32_LITTLE(d+6); d7 = LOAD_UINT32_LITTLE(d+7);
    361  1.1  christos         k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3);
    362  1.1  christos         k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
    363  1.1  christos         h += MUL64((k0 + d0), (k4 + d4));
    364  1.1  christos         h += MUL64((k1 + d1), (k5 + d5));
    365  1.1  christos         h += MUL64((k2 + d2), (k6 + d6));
    366  1.1  christos         h += MUL64((k3 + d3), (k7 + d7));
    367  1.1  christos 
    368  1.1  christos         d += 8;
    369  1.1  christos         k += 8;
    370  1.1  christos     } while (--c);
    371  1.1  christos   *((UINT64 *)hp) = h;
    372  1.1  christos }
    373  1.1  christos 
    374  1.1  christos #elif (UMAC_OUTPUT_LEN == 8)
    375  1.1  christos 
    376  1.1  christos static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen)
    377  1.1  christos /* Same as previous nh_aux, but two streams are handled in one pass,
    378  1.1  christos  * reading and writing 16 bytes of hash-state per call.
    379  1.1  christos  */
    380  1.1  christos {
    381  1.1  christos   UINT64 h1,h2;
    382  1.1  christos   UWORD c = dlen / 32;
    383  1.1  christos   UINT32 *k = (UINT32 *)kp;
    384  1.1  christos   UINT32 *d = (UINT32 *)dp;
    385  1.1  christos   UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
    386  1.1  christos   UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
    387  1.1  christos         k8,k9,k10,k11;
    388  1.1  christos 
    389  1.1  christos   h1 = *((UINT64 *)hp);
    390  1.1  christos   h2 = *((UINT64 *)hp + 1);
    391  1.1  christos   k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3);
    392  1.1  christos   do {
    393  1.1  christos     d0 = LOAD_UINT32_LITTLE(d+0); d1 = LOAD_UINT32_LITTLE(d+1);
    394  1.1  christos     d2 = LOAD_UINT32_LITTLE(d+2); d3 = LOAD_UINT32_LITTLE(d+3);
    395  1.1  christos     d4 = LOAD_UINT32_LITTLE(d+4); d5 = LOAD_UINT32_LITTLE(d+5);
    396  1.1  christos     d6 = LOAD_UINT32_LITTLE(d+6); d7 = LOAD_UINT32_LITTLE(d+7);
    397  1.1  christos     k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
    398  1.1  christos     k8 = *(k+8); k9 = *(k+9); k10 = *(k+10); k11 = *(k+11);
    399  1.1  christos 
    400  1.1  christos     h1 += MUL64((k0 + d0), (k4 + d4));
    401  1.1  christos     h2 += MUL64((k4 + d0), (k8 + d4));
    402  1.1  christos 
    403  1.1  christos     h1 += MUL64((k1 + d1), (k5 + d5));
    404  1.1  christos     h2 += MUL64((k5 + d1), (k9 + d5));
    405  1.1  christos 
    406  1.1  christos     h1 += MUL64((k2 + d2), (k6 + d6));
    407  1.1  christos     h2 += MUL64((k6 + d2), (k10 + d6));
    408  1.1  christos 
    409  1.1  christos     h1 += MUL64((k3 + d3), (k7 + d7));
    410  1.1  christos     h2 += MUL64((k7 + d3), (k11 + d7));
    411  1.1  christos 
    412  1.1  christos     k0 = k8; k1 = k9; k2 = k10; k3 = k11;
    413  1.1  christos 
    414  1.1  christos     d += 8;
    415  1.1  christos     k += 8;
    416  1.1  christos   } while (--c);
    417  1.1  christos   ((UINT64 *)hp)[0] = h1;
    418  1.1  christos   ((UINT64 *)hp)[1] = h2;
    419  1.1  christos }
    420  1.1  christos 
    421  1.1  christos #elif (UMAC_OUTPUT_LEN == 12)
    422  1.1  christos 
    423  1.1  christos static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen)
    424  1.1  christos /* Same as previous nh_aux, but two streams are handled in one pass,
    425  1.1  christos  * reading and writing 24 bytes of hash-state per call.
    426  1.1  christos */
    427  1.1  christos {
    428  1.1  christos     UINT64 h1,h2,h3;
    429  1.1  christos     UWORD c = dlen / 32;
    430  1.1  christos     UINT32 *k = (UINT32 *)kp;
    431  1.1  christos     UINT32 *d = (UINT32 *)dp;
    432  1.1  christos     UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
    433  1.1  christos     UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
    434  1.1  christos         k8,k9,k10,k11,k12,k13,k14,k15;
    435  1.1  christos 
    436  1.1  christos     h1 = *((UINT64 *)hp);
    437  1.1  christos     h2 = *((UINT64 *)hp + 1);
    438  1.1  christos     h3 = *((UINT64 *)hp + 2);
    439  1.1  christos     k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3);
    440  1.1  christos     k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
    441  1.1  christos     do {
    442  1.1  christos         d0 = LOAD_UINT32_LITTLE(d+0); d1 = LOAD_UINT32_LITTLE(d+1);
    443  1.1  christos         d2 = LOAD_UINT32_LITTLE(d+2); d3 = LOAD_UINT32_LITTLE(d+3);
    444  1.1  christos         d4 = LOAD_UINT32_LITTLE(d+4); d5 = LOAD_UINT32_LITTLE(d+5);
    445  1.1  christos         d6 = LOAD_UINT32_LITTLE(d+6); d7 = LOAD_UINT32_LITTLE(d+7);
    446  1.1  christos         k8 = *(k+8); k9 = *(k+9); k10 = *(k+10); k11 = *(k+11);
    447  1.1  christos         k12 = *(k+12); k13 = *(k+13); k14 = *(k+14); k15 = *(k+15);
    448  1.1  christos 
    449  1.1  christos         h1 += MUL64((k0 + d0), (k4 + d4));
    450  1.1  christos         h2 += MUL64((k4 + d0), (k8 + d4));
    451  1.1  christos         h3 += MUL64((k8 + d0), (k12 + d4));
    452  1.1  christos 
    453  1.1  christos         h1 += MUL64((k1 + d1), (k5 + d5));
    454  1.1  christos         h2 += MUL64((k5 + d1), (k9 + d5));
    455  1.1  christos         h3 += MUL64((k9 + d1), (k13 + d5));
    456  1.1  christos 
    457  1.1  christos         h1 += MUL64((k2 + d2), (k6 + d6));
    458  1.1  christos         h2 += MUL64((k6 + d2), (k10 + d6));
    459  1.1  christos         h3 += MUL64((k10 + d2), (k14 + d6));
    460  1.1  christos 
    461  1.1  christos         h1 += MUL64((k3 + d3), (k7 + d7));
    462  1.1  christos         h2 += MUL64((k7 + d3), (k11 + d7));
    463  1.1  christos         h3 += MUL64((k11 + d3), (k15 + d7));
    464  1.1  christos 
    465  1.1  christos         k0 = k8; k1 = k9; k2 = k10; k3 = k11;
    466  1.1  christos         k4 = k12; k5 = k13; k6 = k14; k7 = k15;
    467  1.1  christos 
    468  1.1  christos         d += 8;
    469  1.1  christos         k += 8;
    470  1.1  christos     } while (--c);
    471  1.1  christos     ((UINT64 *)hp)[0] = h1;
    472  1.1  christos     ((UINT64 *)hp)[1] = h2;
    473  1.1  christos     ((UINT64 *)hp)[2] = h3;
    474  1.1  christos }
    475  1.1  christos 
    476  1.1  christos #elif (UMAC_OUTPUT_LEN == 16)
    477  1.1  christos 
    478  1.1  christos static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen)
    479  1.1  christos /* Same as previous nh_aux, but two streams are handled in one pass,
    480  1.1  christos  * reading and writing 24 bytes of hash-state per call.
    481  1.1  christos */
    482  1.1  christos {
    483  1.1  christos     UINT64 h1,h2,h3,h4;
    484  1.1  christos     UWORD c = dlen / 32;
    485  1.1  christos     UINT32 *k = (UINT32 *)kp;
    486  1.1  christos     UINT32 *d = (UINT32 *)dp;
    487  1.1  christos     UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
    488  1.1  christos     UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
    489  1.1  christos         k8,k9,k10,k11,k12,k13,k14,k15,
    490  1.1  christos         k16,k17,k18,k19;
    491  1.1  christos 
    492  1.1  christos     h1 = *((UINT64 *)hp);
    493  1.1  christos     h2 = *((UINT64 *)hp + 1);
    494  1.1  christos     h3 = *((UINT64 *)hp + 2);
    495  1.1  christos     h4 = *((UINT64 *)hp + 3);
    496  1.1  christos     k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3);
    497  1.1  christos     k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
    498  1.1  christos     do {
    499  1.1  christos         d0 = LOAD_UINT32_LITTLE(d+0); d1 = LOAD_UINT32_LITTLE(d+1);
    500  1.1  christos         d2 = LOAD_UINT32_LITTLE(d+2); d3 = LOAD_UINT32_LITTLE(d+3);
    501  1.1  christos         d4 = LOAD_UINT32_LITTLE(d+4); d5 = LOAD_UINT32_LITTLE(d+5);
    502  1.1  christos         d6 = LOAD_UINT32_LITTLE(d+6); d7 = LOAD_UINT32_LITTLE(d+7);
    503  1.1  christos         k8 = *(k+8); k9 = *(k+9); k10 = *(k+10); k11 = *(k+11);
    504  1.1  christos         k12 = *(k+12); k13 = *(k+13); k14 = *(k+14); k15 = *(k+15);
    505  1.1  christos         k16 = *(k+16); k17 = *(k+17); k18 = *(k+18); k19 = *(k+19);
    506  1.1  christos 
    507  1.1  christos         h1 += MUL64((k0 + d0), (k4 + d4));
    508  1.1  christos         h2 += MUL64((k4 + d0), (k8 + d4));
    509  1.1  christos         h3 += MUL64((k8 + d0), (k12 + d4));
    510  1.1  christos         h4 += MUL64((k12 + d0), (k16 + d4));
    511  1.1  christos 
    512  1.1  christos         h1 += MUL64((k1 + d1), (k5 + d5));
    513  1.1  christos         h2 += MUL64((k5 + d1), (k9 + d5));
    514  1.1  christos         h3 += MUL64((k9 + d1), (k13 + d5));
    515  1.1  christos         h4 += MUL64((k13 + d1), (k17 + d5));
    516  1.1  christos 
    517  1.1  christos         h1 += MUL64((k2 + d2), (k6 + d6));
    518  1.1  christos         h2 += MUL64((k6 + d2), (k10 + d6));
    519  1.1  christos         h3 += MUL64((k10 + d2), (k14 + d6));
    520  1.1  christos         h4 += MUL64((k14 + d2), (k18 + d6));
    521  1.1  christos 
    522  1.1  christos         h1 += MUL64((k3 + d3), (k7 + d7));
    523  1.1  christos         h2 += MUL64((k7 + d3), (k11 + d7));
    524  1.1  christos         h3 += MUL64((k11 + d3), (k15 + d7));
    525  1.1  christos         h4 += MUL64((k15 + d3), (k19 + d7));
    526  1.1  christos 
    527  1.1  christos         k0 = k8; k1 = k9; k2 = k10; k3 = k11;
    528  1.1  christos         k4 = k12; k5 = k13; k6 = k14; k7 = k15;
    529  1.1  christos         k8 = k16; k9 = k17; k10 = k18; k11 = k19;
    530  1.1  christos 
    531  1.1  christos         d += 8;
    532  1.1  christos         k += 8;
    533  1.1  christos     } while (--c);
    534  1.1  christos     ((UINT64 *)hp)[0] = h1;
    535  1.1  christos     ((UINT64 *)hp)[1] = h2;
    536  1.1  christos     ((UINT64 *)hp)[2] = h3;
    537  1.1  christos     ((UINT64 *)hp)[3] = h4;
    538  1.1  christos }
    539  1.1  christos 
    540  1.1  christos /* ---------------------------------------------------------------------- */
    541  1.1  christos #endif  /* UMAC_OUTPUT_LENGTH */
    542  1.1  christos /* ---------------------------------------------------------------------- */
    543  1.1  christos 
    544  1.1  christos 
    545  1.1  christos /* ---------------------------------------------------------------------- */
    546  1.1  christos 
    547  1.1  christos static void nh_transform(nh_ctx *hc, UINT8 *buf, UINT32 nbytes)
    548  1.1  christos /* This function is a wrapper for the primitive NH hash functions. It takes
    549  1.1  christos  * as argument "hc" the current hash context and a buffer which must be a
    550  1.1  christos  * multiple of L1_PAD_BOUNDARY. The key passed to nh_aux is offset
    551  1.1  christos  * appropriately according to how much message has been hashed already.
    552  1.1  christos  */
    553  1.1  christos {
    554  1.1  christos     UINT8 *key;
    555  1.1  christos 
    556  1.1  christos     key = hc->nh_key + hc->bytes_hashed;
    557  1.1  christos     nh_aux(key, buf, hc->state, nbytes);
    558  1.1  christos }
    559  1.1  christos 
    560  1.1  christos /* ---------------------------------------------------------------------- */
    561  1.1  christos 
    562  1.2  christos #if (__LITTLE_ENDIAN__)
    563  1.2  christos #define endian_convert_if_le(x,y,z) endian_convert((x),(y),(z))
    564  1.1  christos static void endian_convert(void *buf, UWORD bpw, UINT32 num_bytes)
    565  1.1  christos /* We endian convert the keys on little-endian computers to               */
    566  1.1  christos /* compensate for the lack of big-endian memory reads during hashing.     */
    567  1.1  christos {
    568  1.1  christos     UWORD iters = num_bytes / bpw;
    569  1.1  christos     if (bpw == 4) {
    570  1.1  christos         UINT32 *p = (UINT32 *)buf;
    571  1.1  christos         do {
    572  1.1  christos             *p = LOAD_UINT32_REVERSED(p);
    573  1.1  christos             p++;
    574  1.1  christos         } while (--iters);
    575  1.1  christos     } else if (bpw == 8) {
    576  1.1  christos         UINT32 *p = (UINT32 *)buf;
    577  1.1  christos         UINT32 t;
    578  1.1  christos         do {
    579  1.1  christos             t = LOAD_UINT32_REVERSED(p+1);
    580  1.1  christos             p[1] = LOAD_UINT32_REVERSED(p);
    581  1.1  christos             p[0] = t;
    582  1.1  christos             p += 2;
    583  1.1  christos         } while (--iters);
    584  1.1  christos     }
    585  1.1  christos }
    586  1.1  christos #if (__LITTLE_ENDIAN__)
    587  1.1  christos #define endian_convert_if_le(x,y,z) endian_convert((x),(y),(z))
    588  1.1  christos #else
    589  1.1  christos #define endian_convert_if_le(x,y,z) do{}while(0)  /* Do nothing */
    590  1.1  christos #endif
    591  1.1  christos 
    592  1.1  christos /* ---------------------------------------------------------------------- */
    593  1.1  christos 
    594  1.1  christos static void nh_reset(nh_ctx *hc)
    595  1.1  christos /* Reset nh_ctx to ready for hashing of new data */
    596  1.1  christos {
    597  1.1  christos     hc->bytes_hashed = 0;
    598  1.1  christos     hc->next_data_empty = 0;
    599  1.1  christos     hc->state[0] = 0;
    600  1.1  christos #if (UMAC_OUTPUT_LEN >= 8)
    601  1.1  christos     hc->state[1] = 0;
    602  1.1  christos #endif
    603  1.1  christos #if (UMAC_OUTPUT_LEN >= 12)
    604  1.1  christos     hc->state[2] = 0;
    605  1.1  christos #endif
    606  1.1  christos #if (UMAC_OUTPUT_LEN == 16)
    607  1.1  christos     hc->state[3] = 0;
    608  1.1  christos #endif
    609  1.1  christos 
    610  1.1  christos }
    611  1.1  christos 
    612  1.1  christos /* ---------------------------------------------------------------------- */
    613  1.1  christos 
    614  1.1  christos static void nh_init(nh_ctx *hc, aes_int_key prf_key)
    615  1.1  christos /* Generate nh_key, endian convert and reset to be ready for hashing.   */
    616  1.1  christos {
    617  1.1  christos     kdf(hc->nh_key, prf_key, 1, sizeof(hc->nh_key));
    618  1.1  christos     endian_convert_if_le(hc->nh_key, 4, sizeof(hc->nh_key));
    619  1.1  christos     nh_reset(hc);
    620  1.1  christos }
    621  1.1  christos 
    622  1.1  christos /* ---------------------------------------------------------------------- */
    623  1.1  christos 
    624  1.1  christos static void nh_update(nh_ctx *hc, UINT8 *buf, UINT32 nbytes)
    625  1.1  christos /* Incorporate nbytes of data into a nh_ctx, buffer whatever is not an    */
    626  1.1  christos /* even multiple of HASH_BUF_BYTES.                                       */
    627  1.1  christos {
    628  1.1  christos     UINT32 i,j;
    629  1.1  christos 
    630  1.1  christos     j = hc->next_data_empty;
    631  1.1  christos     if ((j + nbytes) >= HASH_BUF_BYTES) {
    632  1.1  christos         if (j) {
    633  1.1  christos             i = HASH_BUF_BYTES - j;
    634  1.1  christos             memcpy(hc->data+j, buf, i);
    635  1.1  christos             nh_transform(hc,hc->data,HASH_BUF_BYTES);
    636  1.1  christos             nbytes -= i;
    637  1.1  christos             buf += i;
    638  1.1  christos             hc->bytes_hashed += HASH_BUF_BYTES;
    639  1.1  christos         }
    640  1.1  christos         if (nbytes >= HASH_BUF_BYTES) {
    641  1.1  christos             i = nbytes & ~(HASH_BUF_BYTES - 1);
    642  1.1  christos             nh_transform(hc, buf, i);
    643  1.1  christos             nbytes -= i;
    644  1.1  christos             buf += i;
    645  1.1  christos             hc->bytes_hashed += i;
    646  1.1  christos         }
    647  1.1  christos         j = 0;
    648  1.1  christos     }
    649  1.1  christos     memcpy(hc->data + j, buf, nbytes);
    650  1.1  christos     hc->next_data_empty = j + nbytes;
    651  1.1  christos }
    652  1.1  christos 
    653  1.1  christos /* ---------------------------------------------------------------------- */
    654  1.1  christos 
    655  1.1  christos static void zero_pad(UINT8 *p, int nbytes)
    656  1.1  christos {
    657  1.1  christos /* Write "nbytes" of zeroes, beginning at "p" */
    658  1.1  christos     if (nbytes >= (int)sizeof(UWORD)) {
    659  1.1  christos         while ((ptrdiff_t)p % sizeof(UWORD)) {
    660  1.1  christos             *p = 0;
    661  1.1  christos             nbytes--;
    662  1.1  christos             p++;
    663  1.1  christos         }
    664  1.1  christos         while (nbytes >= (int)sizeof(UWORD)) {
    665  1.1  christos             *(UWORD *)p = 0;
    666  1.1  christos             nbytes -= sizeof(UWORD);
    667  1.1  christos             p += sizeof(UWORD);
    668  1.1  christos         }
    669  1.1  christos     }
    670  1.1  christos     while (nbytes) {
    671  1.1  christos         *p = 0;
    672  1.1  christos         nbytes--;
    673  1.1  christos         p++;
    674  1.1  christos     }
    675  1.1  christos }
    676  1.1  christos 
    677  1.1  christos /* ---------------------------------------------------------------------- */
    678  1.1  christos 
    679  1.1  christos static void nh_final(nh_ctx *hc, UINT8 *result)
    680  1.1  christos /* After passing some number of data buffers to nh_update() for integration
    681  1.1  christos  * into an NH context, nh_final is called to produce a hash result. If any
    682  1.1  christos  * bytes are in the buffer hc->data, incorporate them into the
    683  1.1  christos  * NH context. Finally, add into the NH accumulation "state" the total number
    684  1.1  christos  * of bits hashed. The resulting numbers are written to the buffer "result".
    685  1.1  christos  * If nh_update was never called, L1_PAD_BOUNDARY zeroes are incorporated.
    686  1.1  christos  */
    687  1.1  christos {
    688  1.1  christos     int nh_len, nbits;
    689  1.1  christos 
    690  1.1  christos     if (hc->next_data_empty != 0) {
    691  1.1  christos         nh_len = ((hc->next_data_empty + (L1_PAD_BOUNDARY - 1)) &
    692  1.1  christos                                                 ~(L1_PAD_BOUNDARY - 1));
    693  1.1  christos         zero_pad(hc->data + hc->next_data_empty,
    694  1.1  christos                                           nh_len - hc->next_data_empty);
    695  1.1  christos         nh_transform(hc, hc->data, nh_len);
    696  1.1  christos         hc->bytes_hashed += hc->next_data_empty;
    697  1.1  christos     } else if (hc->bytes_hashed == 0) {
    698  1.1  christos     	nh_len = L1_PAD_BOUNDARY;
    699  1.1  christos         zero_pad(hc->data, L1_PAD_BOUNDARY);
    700  1.1  christos         nh_transform(hc, hc->data, nh_len);
    701  1.1  christos     }
    702  1.1  christos 
    703  1.1  christos     nbits = (hc->bytes_hashed << 3);
    704  1.1  christos     ((UINT64 *)result)[0] = ((UINT64 *)hc->state)[0] + nbits;
    705  1.1  christos #if (UMAC_OUTPUT_LEN >= 8)
    706  1.1  christos     ((UINT64 *)result)[1] = ((UINT64 *)hc->state)[1] + nbits;
    707  1.1  christos #endif
    708  1.1  christos #if (UMAC_OUTPUT_LEN >= 12)
    709  1.1  christos     ((UINT64 *)result)[2] = ((UINT64 *)hc->state)[2] + nbits;
    710  1.1  christos #endif
    711  1.1  christos #if (UMAC_OUTPUT_LEN == 16)
    712  1.1  christos     ((UINT64 *)result)[3] = ((UINT64 *)hc->state)[3] + nbits;
    713  1.1  christos #endif
    714  1.1  christos     nh_reset(hc);
    715  1.1  christos }
    716  1.1  christos 
    717  1.1  christos /* ---------------------------------------------------------------------- */
    718  1.1  christos 
    719  1.1  christos static void nh(nh_ctx *hc, UINT8 *buf, UINT32 padded_len,
    720  1.1  christos                UINT32 unpadded_len, UINT8 *result)
    721  1.1  christos /* All-in-one nh_update() and nh_final() equivalent.
    722  1.1  christos  * Assumes that padded_len is divisible by L1_PAD_BOUNDARY and result is
    723  1.1  christos  * well aligned
    724  1.1  christos  */
    725  1.1  christos {
    726  1.1  christos     UINT32 nbits;
    727  1.1  christos 
    728  1.1  christos     /* Initialize the hash state */
    729  1.1  christos     nbits = (unpadded_len << 3);
    730  1.1  christos 
    731  1.1  christos     ((UINT64 *)result)[0] = nbits;
    732  1.1  christos #if (UMAC_OUTPUT_LEN >= 8)
    733  1.1  christos     ((UINT64 *)result)[1] = nbits;
    734  1.1  christos #endif
    735  1.1  christos #if (UMAC_OUTPUT_LEN >= 12)
    736  1.1  christos     ((UINT64 *)result)[2] = nbits;
    737  1.1  christos #endif
    738  1.1  christos #if (UMAC_OUTPUT_LEN == 16)
    739  1.1  christos     ((UINT64 *)result)[3] = nbits;
    740  1.1  christos #endif
    741  1.1  christos 
    742  1.1  christos     nh_aux(hc->nh_key, buf, result, padded_len);
    743  1.1  christos }
    744  1.1  christos 
    745  1.1  christos /* ---------------------------------------------------------------------- */
    746  1.1  christos /* ---------------------------------------------------------------------- */
    747  1.1  christos /* ----- Begin UHASH Section -------------------------------------------- */
    748  1.1  christos /* ---------------------------------------------------------------------- */
    749  1.1  christos /* ---------------------------------------------------------------------- */
    750  1.1  christos 
    751  1.1  christos /* UHASH is a multi-layered algorithm. Data presented to UHASH is first
    752  1.1  christos  * hashed by NH. The NH output is then hashed by a polynomial-hash layer
    753  1.1  christos  * unless the initial data to be hashed is short. After the polynomial-
    754  1.1  christos  * layer, an inner-product hash is used to produce the final UHASH output.
    755  1.1  christos  *
    756  1.1  christos  * UHASH provides two interfaces, one all-at-once and another where data
    757  1.1  christos  * buffers are presented sequentially. In the sequential interface, the
    758  1.1  christos  * UHASH client calls the routine uhash_update() as many times as necessary.
    759  1.1  christos  * When there is no more data to be fed to UHASH, the client calls
    760  1.1  christos  * uhash_final() which
    761  1.1  christos  * calculates the UHASH output. Before beginning another UHASH calculation
    762  1.1  christos  * the uhash_reset() routine must be called. The all-at-once UHASH routine,
    763  1.1  christos  * uhash(), is equivalent to the sequence of calls uhash_update() and
    764  1.1  christos  * uhash_final(); however it is optimized and should be
    765  1.1  christos  * used whenever the sequential interface is not necessary.
    766  1.1  christos  *
    767  1.1  christos  * The routine uhash_init() initializes the uhash_ctx data structure and
    768  1.1  christos  * must be called once, before any other UHASH routine.
    769  1.1  christos  */
    770  1.1  christos 
    771  1.1  christos /* ---------------------------------------------------------------------- */
    772  1.1  christos /* ----- Constants and uhash_ctx ---------------------------------------- */
    773  1.1  christos /* ---------------------------------------------------------------------- */
    774  1.1  christos 
    775  1.1  christos /* ---------------------------------------------------------------------- */
    776  1.1  christos /* ----- Poly hash and Inner-Product hash Constants --------------------- */
    777  1.1  christos /* ---------------------------------------------------------------------- */
    778  1.1  christos 
    779  1.1  christos /* Primes and masks */
    780  1.1  christos #define p36    ((UINT64)0x0000000FFFFFFFFBull)              /* 2^36 -  5 */
    781  1.1  christos #define p64    ((UINT64)0xFFFFFFFFFFFFFFC5ull)              /* 2^64 - 59 */
    782  1.1  christos #define m36    ((UINT64)0x0000000FFFFFFFFFull)  /* The low 36 of 64 bits */
    783  1.1  christos 
    784  1.1  christos 
    785  1.1  christos /* ---------------------------------------------------------------------- */
    786  1.1  christos 
    787  1.1  christos typedef struct uhash_ctx {
    788  1.1  christos     nh_ctx hash;                          /* Hash context for L1 NH hash  */
    789  1.1  christos     UINT64 poly_key_8[STREAMS];           /* p64 poly keys                */
    790  1.1  christos     UINT64 poly_accum[STREAMS];           /* poly hash result             */
    791  1.1  christos     UINT64 ip_keys[STREAMS*4];            /* Inner-product keys           */
    792  1.1  christos     UINT32 ip_trans[STREAMS];             /* Inner-product translation    */
    793  1.1  christos     UINT32 msg_len;                       /* Total length of data passed  */
    794  1.1  christos                                           /* to uhash */
    795  1.1  christos } uhash_ctx;
    796  1.1  christos typedef struct uhash_ctx *uhash_ctx_t;
    797  1.1  christos 
    798  1.1  christos /* ---------------------------------------------------------------------- */
    799  1.1  christos 
    800  1.1  christos 
    801  1.1  christos /* The polynomial hashes use Horner's rule to evaluate a polynomial one
    802  1.1  christos  * word at a time. As described in the specification, poly32 and poly64
    803  1.1  christos  * require keys from special domains. The following implementations exploit
    804  1.1  christos  * the special domains to avoid overflow. The results are not guaranteed to
    805  1.1  christos  * be within Z_p32 and Z_p64, but the Inner-Product hash implementation
    806  1.1  christos  * patches any errant values.
    807  1.1  christos  */
    808  1.1  christos 
    809  1.1  christos static UINT64 poly64(UINT64 cur, UINT64 key, UINT64 data)
    810  1.1  christos {
    811  1.1  christos     UINT32 key_hi = (UINT32)(key >> 32),
    812  1.1  christos            key_lo = (UINT32)key,
    813  1.1  christos            cur_hi = (UINT32)(cur >> 32),
    814  1.1  christos            cur_lo = (UINT32)cur,
    815  1.1  christos            x_lo,
    816  1.1  christos            x_hi;
    817  1.1  christos     UINT64 X,T,res;
    818  1.1  christos 
    819  1.1  christos     X =  MUL64(key_hi, cur_lo) + MUL64(cur_hi, key_lo);
    820  1.1  christos     x_lo = (UINT32)X;
    821  1.1  christos     x_hi = (UINT32)(X >> 32);
    822  1.1  christos 
    823  1.1  christos     res = (MUL64(key_hi, cur_hi) + x_hi) * 59 + MUL64(key_lo, cur_lo);
    824  1.1  christos 
    825  1.1  christos     T = ((UINT64)x_lo << 32);
    826  1.1  christos     res += T;
    827  1.1  christos     if (res < T)
    828  1.1  christos         res += 59;
    829  1.1  christos 
    830  1.1  christos     res += data;
    831  1.1  christos     if (res < data)
    832  1.1  christos         res += 59;
    833  1.1  christos 
    834  1.1  christos     return res;
    835  1.1  christos }
    836  1.1  christos 
    837  1.1  christos 
    838  1.1  christos /* Although UMAC is specified to use a ramped polynomial hash scheme, this
    839  1.1  christos  * implementation does not handle all ramp levels. Because we don't handle
    840  1.1  christos  * the ramp up to p128 modulus in this implementation, we are limited to
    841  1.1  christos  * 2^14 poly_hash() invocations per stream (for a total capacity of 2^24
    842  1.1  christos  * bytes input to UMAC per tag, ie. 16MB).
    843  1.1  christos  */
    844  1.1  christos static void poly_hash(uhash_ctx_t hc, UINT32 data_in[])
    845  1.1  christos {
    846  1.1  christos     int i;
    847  1.1  christos     UINT64 *data=(UINT64*)data_in;
    848  1.1  christos 
    849  1.1  christos     for (i = 0; i < STREAMS; i++) {
    850  1.1  christos         if ((UINT32)(data[i] >> 32) == 0xfffffffful) {
    851  1.1  christos             hc->poly_accum[i] = poly64(hc->poly_accum[i],
    852  1.1  christos                                        hc->poly_key_8[i], p64 - 1);
    853  1.1  christos             hc->poly_accum[i] = poly64(hc->poly_accum[i],
    854  1.1  christos                                        hc->poly_key_8[i], (data[i] - 59));
    855  1.1  christos         } else {
    856  1.1  christos             hc->poly_accum[i] = poly64(hc->poly_accum[i],
    857  1.1  christos                                        hc->poly_key_8[i], data[i]);
    858  1.1  christos         }
    859  1.1  christos     }
    860  1.1  christos }
    861  1.1  christos 
    862  1.1  christos 
    863  1.1  christos /* ---------------------------------------------------------------------- */
    864  1.1  christos 
    865  1.1  christos 
    866  1.1  christos /* The final step in UHASH is an inner-product hash. The poly hash
    867  1.1  christos  * produces a result not neccesarily WORD_LEN bytes long. The inner-
    868  1.1  christos  * product hash breaks the polyhash output into 16-bit chunks and
    869  1.1  christos  * multiplies each with a 36 bit key.
    870  1.1  christos  */
    871  1.1  christos 
    872  1.1  christos static UINT64 ip_aux(UINT64 t, UINT64 *ipkp, UINT64 data)
    873  1.1  christos {
    874  1.1  christos     t = t + ipkp[0] * (UINT64)(UINT16)(data >> 48);
    875  1.1  christos     t = t + ipkp[1] * (UINT64)(UINT16)(data >> 32);
    876  1.1  christos     t = t + ipkp[2] * (UINT64)(UINT16)(data >> 16);
    877  1.1  christos     t = t + ipkp[3] * (UINT64)(UINT16)(data);
    878  1.1  christos 
    879  1.1  christos     return t;
    880  1.1  christos }
    881  1.1  christos 
    882  1.1  christos static UINT32 ip_reduce_p36(UINT64 t)
    883  1.1  christos {
    884  1.1  christos /* Divisionless modular reduction */
    885  1.1  christos     UINT64 ret;
    886  1.1  christos 
    887  1.1  christos     ret = (t & m36) + 5 * (t >> 36);
    888  1.1  christos     if (ret >= p36)
    889  1.1  christos         ret -= p36;
    890  1.1  christos 
    891  1.1  christos     /* return least significant 32 bits */
    892  1.1  christos     return (UINT32)(ret);
    893  1.1  christos }
    894  1.1  christos 
    895  1.1  christos 
    896  1.1  christos /* If the data being hashed by UHASH is no longer than L1_KEY_LEN, then
    897  1.1  christos  * the polyhash stage is skipped and ip_short is applied directly to the
    898  1.1  christos  * NH output.
    899  1.1  christos  */
    900  1.1  christos static void ip_short(uhash_ctx_t ahc, UINT8 *nh_res, u_char *res)
    901  1.1  christos {
    902  1.1  christos     UINT64 t;
    903  1.1  christos     UINT64 *nhp = (UINT64 *)nh_res;
    904  1.1  christos 
    905  1.1  christos     t  = ip_aux(0,ahc->ip_keys, nhp[0]);
    906  1.1  christos     STORE_UINT32_BIG((UINT32 *)res+0, ip_reduce_p36(t) ^ ahc->ip_trans[0]);
    907  1.1  christos #if (UMAC_OUTPUT_LEN >= 8)
    908  1.1  christos     t  = ip_aux(0,ahc->ip_keys+4, nhp[1]);
    909  1.1  christos     STORE_UINT32_BIG((UINT32 *)res+1, ip_reduce_p36(t) ^ ahc->ip_trans[1]);
    910  1.1  christos #endif
    911  1.1  christos #if (UMAC_OUTPUT_LEN >= 12)
    912  1.1  christos     t  = ip_aux(0,ahc->ip_keys+8, nhp[2]);
    913  1.1  christos     STORE_UINT32_BIG((UINT32 *)res+2, ip_reduce_p36(t) ^ ahc->ip_trans[2]);
    914  1.1  christos #endif
    915  1.1  christos #if (UMAC_OUTPUT_LEN == 16)
    916  1.1  christos     t  = ip_aux(0,ahc->ip_keys+12, nhp[3]);
    917  1.1  christos     STORE_UINT32_BIG((UINT32 *)res+3, ip_reduce_p36(t) ^ ahc->ip_trans[3]);
    918  1.1  christos #endif
    919  1.1  christos }
    920  1.1  christos 
    921  1.1  christos /* If the data being hashed by UHASH is longer than L1_KEY_LEN, then
    922  1.1  christos  * the polyhash stage is not skipped and ip_long is applied to the
    923  1.1  christos  * polyhash output.
    924  1.1  christos  */
    925  1.1  christos static void ip_long(uhash_ctx_t ahc, u_char *res)
    926  1.1  christos {
    927  1.1  christos     int i;
    928  1.1  christos     UINT64 t;
    929  1.1  christos 
    930  1.1  christos     for (i = 0; i < STREAMS; i++) {
    931  1.1  christos         /* fix polyhash output not in Z_p64 */
    932  1.1  christos         if (ahc->poly_accum[i] >= p64)
    933  1.1  christos             ahc->poly_accum[i] -= p64;
    934  1.1  christos         t  = ip_aux(0,ahc->ip_keys+(i*4), ahc->poly_accum[i]);
    935  1.1  christos         STORE_UINT32_BIG((UINT32 *)res+i,
    936  1.1  christos                          ip_reduce_p36(t) ^ ahc->ip_trans[i]);
    937  1.1  christos     }
    938  1.1  christos }
    939  1.1  christos 
    940  1.1  christos 
    941  1.1  christos /* ---------------------------------------------------------------------- */
    942  1.1  christos 
    943  1.1  christos /* ---------------------------------------------------------------------- */
    944  1.1  christos 
    945  1.1  christos /* Reset uhash context for next hash session */
    946  1.1  christos static int uhash_reset(uhash_ctx_t pc)
    947  1.1  christos {
    948  1.1  christos     nh_reset(&pc->hash);
    949  1.1  christos     pc->msg_len = 0;
    950  1.1  christos     pc->poly_accum[0] = 1;
    951  1.1  christos #if (UMAC_OUTPUT_LEN >= 8)
    952  1.1  christos     pc->poly_accum[1] = 1;
    953  1.1  christos #endif
    954  1.1  christos #if (UMAC_OUTPUT_LEN >= 12)
    955  1.1  christos     pc->poly_accum[2] = 1;
    956  1.1  christos #endif
    957  1.1  christos #if (UMAC_OUTPUT_LEN == 16)
    958  1.1  christos     pc->poly_accum[3] = 1;
    959  1.1  christos #endif
    960  1.1  christos     return 1;
    961  1.1  christos }
    962  1.1  christos 
    963  1.1  christos /* ---------------------------------------------------------------------- */
    964  1.1  christos 
    965  1.1  christos /* Given a pointer to the internal key needed by kdf() and a uhash context,
    966  1.1  christos  * initialize the NH context and generate keys needed for poly and inner-
    967  1.1  christos  * product hashing. All keys are endian adjusted in memory so that native
    968  1.1  christos  * loads cause correct keys to be in registers during calculation.
    969  1.1  christos  */
    970  1.1  christos static void uhash_init(uhash_ctx_t ahc, aes_int_key prf_key)
    971  1.1  christos {
    972  1.1  christos     int i;
    973  1.1  christos     UINT8 buf[(8*STREAMS+4)*sizeof(UINT64)];
    974  1.1  christos 
    975  1.1  christos     /* Zero the entire uhash context */
    976  1.1  christos     memset(ahc, 0, sizeof(uhash_ctx));
    977  1.1  christos 
    978  1.1  christos     /* Initialize the L1 hash */
    979  1.1  christos     nh_init(&ahc->hash, prf_key);
    980  1.1  christos 
    981  1.1  christos     /* Setup L2 hash variables */
    982  1.1  christos     kdf(buf, prf_key, 2, sizeof(buf));    /* Fill buffer with index 1 key */
    983  1.1  christos     for (i = 0; i < STREAMS; i++) {
    984  1.1  christos         /* Fill keys from the buffer, skipping bytes in the buffer not
    985  1.1  christos          * used by this implementation. Endian reverse the keys if on a
    986  1.1  christos          * little-endian computer.
    987  1.1  christos          */
    988  1.1  christos         memcpy(ahc->poly_key_8+i, buf+24*i, 8);
    989  1.1  christos         endian_convert_if_le(ahc->poly_key_8+i, 8, 8);
    990  1.1  christos         /* Mask the 64-bit keys to their special domain */
    991  1.1  christos         ahc->poly_key_8[i] &= ((UINT64)0x01ffffffu << 32) + 0x01ffffffu;
    992  1.1  christos         ahc->poly_accum[i] = 1;  /* Our polyhash prepends a non-zero word */
    993  1.1  christos     }
    994  1.1  christos 
    995  1.1  christos     /* Setup L3-1 hash variables */
    996  1.1  christos     kdf(buf, prf_key, 3, sizeof(buf)); /* Fill buffer with index 2 key */
    997  1.1  christos     for (i = 0; i < STREAMS; i++)
    998  1.1  christos           memcpy(ahc->ip_keys+4*i, buf+(8*i+4)*sizeof(UINT64),
    999  1.1  christos                                                  4*sizeof(UINT64));
   1000  1.1  christos     endian_convert_if_le(ahc->ip_keys, sizeof(UINT64),
   1001  1.1  christos                                                   sizeof(ahc->ip_keys));
   1002  1.1  christos     for (i = 0; i < STREAMS*4; i++)
   1003  1.1  christos         ahc->ip_keys[i] %= p36;  /* Bring into Z_p36 */
   1004  1.1  christos 
   1005  1.1  christos     /* Setup L3-2 hash variables    */
   1006  1.1  christos     /* Fill buffer with index 4 key */
   1007  1.1  christos     kdf(ahc->ip_trans, prf_key, 4, STREAMS * sizeof(UINT32));
   1008  1.1  christos     endian_convert_if_le(ahc->ip_trans, sizeof(UINT32),
   1009  1.1  christos                          STREAMS * sizeof(UINT32));
   1010  1.1  christos }
   1011  1.1  christos 
   1012  1.1  christos /* ---------------------------------------------------------------------- */
   1013  1.1  christos 
   1014  1.1  christos #if 0
   1015  1.1  christos static uhash_ctx_t uhash_alloc(u_char key[])
   1016  1.1  christos {
   1017  1.1  christos /* Allocate memory and force to a 16-byte boundary. */
   1018  1.1  christos     uhash_ctx_t ctx;
   1019  1.1  christos     u_char bytes_to_add;
   1020  1.1  christos     aes_int_key prf_key;
   1021  1.1  christos 
   1022  1.1  christos     ctx = (uhash_ctx_t)malloc(sizeof(uhash_ctx)+ALLOC_BOUNDARY);
   1023  1.1  christos     if (ctx) {
   1024  1.1  christos         if (ALLOC_BOUNDARY) {
   1025  1.1  christos             bytes_to_add = ALLOC_BOUNDARY -
   1026  1.1  christos                               ((ptrdiff_t)ctx & (ALLOC_BOUNDARY -1));
   1027  1.1  christos             ctx = (uhash_ctx_t)((u_char *)ctx + bytes_to_add);
   1028  1.1  christos             *((u_char *)ctx - 1) = bytes_to_add;
   1029  1.1  christos         }
   1030  1.1  christos         aes_key_setup(key,prf_key);
   1031  1.1  christos         uhash_init(ctx, prf_key);
   1032  1.1  christos     }
   1033  1.1  christos     return (ctx);
   1034  1.1  christos }
   1035  1.1  christos #endif
   1036  1.1  christos 
   1037  1.1  christos /* ---------------------------------------------------------------------- */
   1038  1.1  christos 
   1039  1.1  christos #if 0
   1040  1.1  christos static int uhash_free(uhash_ctx_t ctx)
   1041  1.1  christos {
   1042  1.1  christos /* Free memory allocated by uhash_alloc */
   1043  1.1  christos     u_char bytes_to_sub;
   1044  1.1  christos 
   1045  1.1  christos     if (ctx) {
   1046  1.1  christos         if (ALLOC_BOUNDARY) {
   1047  1.1  christos             bytes_to_sub = *((u_char *)ctx - 1);
   1048  1.1  christos             ctx = (uhash_ctx_t)((u_char *)ctx - bytes_to_sub);
   1049  1.1  christos         }
   1050  1.1  christos         free(ctx);
   1051  1.1  christos     }
   1052  1.1  christos     return (1);
   1053  1.1  christos }
   1054  1.1  christos #endif
   1055  1.1  christos /* ---------------------------------------------------------------------- */
   1056  1.1  christos 
   1057  1.1  christos static int uhash_update(uhash_ctx_t ctx, u_char *input, long len)
   1058  1.1  christos /* Given len bytes of data, we parse it into L1_KEY_LEN chunks and
   1059  1.1  christos  * hash each one with NH, calling the polyhash on each NH output.
   1060  1.1  christos  */
   1061  1.1  christos {
   1062  1.1  christos     UWORD bytes_hashed, bytes_remaining;
   1063  1.1  christos     UINT64 result_buf[STREAMS];
   1064  1.1  christos     UINT8 *nh_result = (UINT8 *)&result_buf;
   1065  1.1  christos 
   1066  1.1  christos     if (ctx->msg_len + len <= L1_KEY_LEN) {
   1067  1.1  christos         nh_update(&ctx->hash, (UINT8 *)input, len);
   1068  1.1  christos         ctx->msg_len += len;
   1069  1.1  christos     } else {
   1070  1.1  christos 
   1071  1.1  christos          bytes_hashed = ctx->msg_len % L1_KEY_LEN;
   1072  1.1  christos          if (ctx->msg_len == L1_KEY_LEN)
   1073  1.1  christos              bytes_hashed = L1_KEY_LEN;
   1074  1.1  christos 
   1075  1.1  christos          if (bytes_hashed + len >= L1_KEY_LEN) {
   1076  1.1  christos 
   1077  1.1  christos              /* If some bytes have been passed to the hash function      */
   1078  1.1  christos              /* then we want to pass at most (L1_KEY_LEN - bytes_hashed) */
   1079  1.1  christos              /* bytes to complete the current nh_block.                  */
   1080  1.1  christos              if (bytes_hashed) {
   1081  1.1  christos                  bytes_remaining = (L1_KEY_LEN - bytes_hashed);
   1082  1.1  christos                  nh_update(&ctx->hash, (UINT8 *)input, bytes_remaining);
   1083  1.1  christos                  nh_final(&ctx->hash, nh_result);
   1084  1.1  christos                  ctx->msg_len += bytes_remaining;
   1085  1.1  christos                  poly_hash(ctx,(UINT32 *)nh_result);
   1086  1.1  christos                  len -= bytes_remaining;
   1087  1.1  christos                  input += bytes_remaining;
   1088  1.1  christos              }
   1089  1.1  christos 
   1090  1.1  christos              /* Hash directly from input stream if enough bytes */
   1091  1.1  christos              while (len >= L1_KEY_LEN) {
   1092  1.1  christos                  nh(&ctx->hash, (UINT8 *)input, L1_KEY_LEN,
   1093  1.1  christos                                    L1_KEY_LEN, nh_result);
   1094  1.1  christos                  ctx->msg_len += L1_KEY_LEN;
   1095  1.1  christos                  len -= L1_KEY_LEN;
   1096  1.1  christos                  input += L1_KEY_LEN;
   1097  1.1  christos                  poly_hash(ctx,(UINT32 *)nh_result);
   1098  1.1  christos              }
   1099  1.1  christos          }
   1100  1.1  christos 
   1101  1.1  christos          /* pass remaining < L1_KEY_LEN bytes of input data to NH */
   1102  1.1  christos          if (len) {
   1103  1.1  christos              nh_update(&ctx->hash, (UINT8 *)input, len);
   1104  1.1  christos              ctx->msg_len += len;
   1105  1.1  christos          }
   1106  1.1  christos      }
   1107  1.1  christos 
   1108  1.1  christos     return (1);
   1109  1.1  christos }
   1110  1.1  christos 
   1111  1.1  christos /* ---------------------------------------------------------------------- */
   1112  1.1  christos 
   1113  1.1  christos static int uhash_final(uhash_ctx_t ctx, u_char *res)
   1114  1.1  christos /* Incorporate any pending data, pad, and generate tag */
   1115  1.1  christos {
   1116  1.1  christos     UINT64 result_buf[STREAMS];
   1117  1.1  christos     UINT8 *nh_result = (UINT8 *)&result_buf;
   1118  1.1  christos 
   1119  1.1  christos     if (ctx->msg_len > L1_KEY_LEN) {
   1120  1.1  christos         if (ctx->msg_len % L1_KEY_LEN) {
   1121  1.1  christos             nh_final(&ctx->hash, nh_result);
   1122  1.1  christos             poly_hash(ctx,(UINT32 *)nh_result);
   1123  1.1  christos         }
   1124  1.1  christos         ip_long(ctx, res);
   1125  1.1  christos     } else {
   1126  1.1  christos         nh_final(&ctx->hash, nh_result);
   1127  1.1  christos         ip_short(ctx,nh_result, res);
   1128  1.1  christos     }
   1129  1.1  christos     uhash_reset(ctx);
   1130  1.1  christos     return (1);
   1131  1.1  christos }
   1132  1.1  christos 
   1133  1.1  christos /* ---------------------------------------------------------------------- */
   1134  1.1  christos 
   1135  1.1  christos #if 0
   1136  1.1  christos static int uhash(uhash_ctx_t ahc, u_char *msg, long len, u_char *res)
   1137  1.1  christos /* assumes that msg is in a writable buffer of length divisible by */
   1138  1.1  christos /* L1_PAD_BOUNDARY. Bytes beyond msg[len] may be zeroed.           */
   1139  1.1  christos {
   1140  1.1  christos     UINT8 nh_result[STREAMS*sizeof(UINT64)];
   1141  1.1  christos     UINT32 nh_len;
   1142  1.1  christos     int extra_zeroes_needed;
   1143  1.1  christos 
   1144  1.1  christos     /* If the message to be hashed is no longer than L1_HASH_LEN, we skip
   1145  1.1  christos      * the polyhash.
   1146  1.1  christos      */
   1147  1.1  christos     if (len <= L1_KEY_LEN) {
   1148  1.1  christos     	if (len == 0)                  /* If zero length messages will not */
   1149  1.1  christos     		nh_len = L1_PAD_BOUNDARY;  /* be seen, comment out this case   */
   1150  1.1  christos     	else
   1151  1.1  christos         	nh_len = ((len + (L1_PAD_BOUNDARY - 1)) & ~(L1_PAD_BOUNDARY - 1));
   1152  1.1  christos         extra_zeroes_needed = nh_len - len;
   1153  1.1  christos         zero_pad((UINT8 *)msg + len, extra_zeroes_needed);
   1154  1.1  christos         nh(&ahc->hash, (UINT8 *)msg, nh_len, len, nh_result);
   1155  1.1  christos         ip_short(ahc,nh_result, res);
   1156  1.1  christos     } else {
   1157  1.1  christos         /* Otherwise, we hash each L1_KEY_LEN chunk with NH, passing the NH
   1158  1.1  christos          * output to poly_hash().
   1159  1.1  christos          */
   1160  1.1  christos         do {
   1161  1.1  christos             nh(&ahc->hash, (UINT8 *)msg, L1_KEY_LEN, L1_KEY_LEN, nh_result);
   1162  1.1  christos             poly_hash(ahc,(UINT32 *)nh_result);
   1163  1.1  christos             len -= L1_KEY_LEN;
   1164  1.1  christos             msg += L1_KEY_LEN;
   1165  1.1  christos         } while (len >= L1_KEY_LEN);
   1166  1.1  christos         if (len) {
   1167  1.1  christos             nh_len = ((len + (L1_PAD_BOUNDARY - 1)) & ~(L1_PAD_BOUNDARY - 1));
   1168  1.1  christos             extra_zeroes_needed = nh_len - len;
   1169  1.1  christos             zero_pad((UINT8 *)msg + len, extra_zeroes_needed);
   1170  1.1  christos             nh(&ahc->hash, (UINT8 *)msg, nh_len, len, nh_result);
   1171  1.1  christos             poly_hash(ahc,(UINT32 *)nh_result);
   1172  1.1  christos         }
   1173  1.1  christos 
   1174  1.1  christos         ip_long(ahc, res);
   1175  1.1  christos     }
   1176  1.1  christos 
   1177  1.1  christos     uhash_reset(ahc);
   1178  1.1  christos     return 1;
   1179  1.1  christos }
   1180  1.1  christos #endif
   1181  1.1  christos 
   1182  1.1  christos /* ---------------------------------------------------------------------- */
   1183  1.1  christos /* ---------------------------------------------------------------------- */
   1184  1.1  christos /* ----- Begin UMAC Section --------------------------------------------- */
   1185  1.1  christos /* ---------------------------------------------------------------------- */
   1186  1.1  christos /* ---------------------------------------------------------------------- */
   1187  1.1  christos 
   1188  1.1  christos /* The UMAC interface has two interfaces, an all-at-once interface where
   1189  1.1  christos  * the entire message to be authenticated is passed to UMAC in one buffer,
   1190  1.1  christos  * and a sequential interface where the message is presented a little at a
   1191  1.1  christos  * time. The all-at-once is more optimaized than the sequential version and
   1192  1.1  christos  * should be preferred when the sequential interface is not required.
   1193  1.1  christos  */
   1194  1.1  christos struct umac_ctx {
   1195  1.1  christos     uhash_ctx hash;          /* Hash function for message compression    */
   1196  1.1  christos     pdf_ctx pdf;             /* PDF for hashed output                    */
   1197  1.1  christos     void *free_ptr;          /* Address to free this struct via          */
   1198  1.1  christos } umac_ctx;
   1199  1.1  christos 
   1200  1.1  christos /* ---------------------------------------------------------------------- */
   1201  1.1  christos 
   1202  1.1  christos #if 0
   1203  1.1  christos int umac_reset(struct umac_ctx *ctx)
   1204  1.1  christos /* Reset the hash function to begin a new authentication.        */
   1205  1.1  christos {
   1206  1.1  christos     uhash_reset(&ctx->hash);
   1207  1.1  christos     return (1);
   1208  1.1  christos }
   1209  1.1  christos #endif
   1210  1.1  christos 
   1211  1.1  christos /* ---------------------------------------------------------------------- */
   1212  1.1  christos 
   1213  1.1  christos int umac_delete(struct umac_ctx *ctx)
   1214  1.1  christos /* Deallocate the ctx structure */
   1215  1.1  christos {
   1216  1.1  christos     if (ctx) {
   1217  1.1  christos         if (ALLOC_BOUNDARY)
   1218  1.1  christos             ctx = (struct umac_ctx *)ctx->free_ptr;
   1219  1.1  christos         xfree(ctx);
   1220  1.1  christos     }
   1221  1.1  christos     return (1);
   1222  1.1  christos }
   1223  1.1  christos 
   1224  1.1  christos /* ---------------------------------------------------------------------- */
   1225  1.1  christos 
   1226  1.1  christos struct umac_ctx *umac_new(u_char key[])
   1227  1.1  christos /* Dynamically allocate a umac_ctx struct, initialize variables,
   1228  1.1  christos  * generate subkeys from key. Align to 16-byte boundary.
   1229  1.1  christos  */
   1230  1.1  christos {
   1231  1.1  christos     struct umac_ctx *ctx, *octx;
   1232  1.1  christos     size_t bytes_to_add;
   1233  1.1  christos     aes_int_key prf_key;
   1234  1.1  christos 
   1235  1.1  christos     octx = ctx = xmalloc(sizeof(*ctx) + ALLOC_BOUNDARY);
   1236  1.1  christos     if (ctx) {
   1237  1.1  christos         if (ALLOC_BOUNDARY) {
   1238  1.1  christos             bytes_to_add = ALLOC_BOUNDARY -
   1239  1.1  christos                               ((ptrdiff_t)ctx & (ALLOC_BOUNDARY - 1));
   1240  1.1  christos             ctx = (struct umac_ctx *)((u_char *)ctx + bytes_to_add);
   1241  1.1  christos         }
   1242  1.1  christos         ctx->free_ptr = octx;
   1243  1.1  christos         aes_key_setup(key,prf_key);
   1244  1.1  christos         pdf_init(&ctx->pdf, prf_key);
   1245  1.1  christos         uhash_init(&ctx->hash, prf_key);
   1246  1.1  christos     }
   1247  1.1  christos 
   1248  1.1  christos     return (ctx);
   1249  1.1  christos }
   1250  1.1  christos 
   1251  1.1  christos /* ---------------------------------------------------------------------- */
   1252  1.1  christos 
   1253  1.1  christos int umac_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8])
   1254  1.1  christos /* Incorporate any pending data, pad, and generate tag */
   1255  1.1  christos {
   1256  1.1  christos     uhash_final(&ctx->hash, (u_char *)tag);
   1257  1.1  christos     pdf_gen_xor(&ctx->pdf, (UINT8 *)nonce, (UINT8 *)tag);
   1258  1.1  christos 
   1259  1.1  christos     return (1);
   1260  1.1  christos }
   1261  1.1  christos 
   1262  1.1  christos /* ---------------------------------------------------------------------- */
   1263  1.1  christos 
   1264  1.1  christos int umac_update(struct umac_ctx *ctx, u_char *input, long len)
   1265  1.1  christos /* Given len bytes of data, we parse it into L1_KEY_LEN chunks and   */
   1266  1.1  christos /* hash each one, calling the PDF on the hashed output whenever the hash- */
   1267  1.1  christos /* output buffer is full.                                                 */
   1268  1.1  christos {
   1269  1.1  christos     uhash_update(&ctx->hash, input, len);
   1270  1.1  christos     return (1);
   1271  1.1  christos }
   1272  1.1  christos 
   1273  1.1  christos /* ---------------------------------------------------------------------- */
   1274  1.1  christos 
   1275  1.1  christos #if 0
   1276  1.1  christos int umac(struct umac_ctx *ctx, u_char *input,
   1277  1.1  christos          long len, u_char tag[],
   1278  1.1  christos          u_char nonce[8])
   1279  1.1  christos /* All-in-one version simply calls umac_update() and umac_final().        */
   1280  1.1  christos {
   1281  1.1  christos     uhash(&ctx->hash, input, len, (u_char *)tag);
   1282  1.1  christos     pdf_gen_xor(&ctx->pdf, (UINT8 *)nonce, (UINT8 *)tag);
   1283  1.1  christos 
   1284  1.1  christos     return (1);
   1285  1.1  christos }
   1286  1.1  christos #endif
   1287  1.1  christos 
   1288  1.1  christos /* ---------------------------------------------------------------------- */
   1289  1.1  christos /* ---------------------------------------------------------------------- */
   1290  1.1  christos /* ----- End UMAC Section ----------------------------------------------- */
   1291  1.1  christos /* ---------------------------------------------------------------------- */
   1292  1.1  christos /* ---------------------------------------------------------------------- */
   1293