LCOV - code coverage report
Current view: top level - lib - sha1.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 97 99 98.0 %
Date: 2014-02-18 Functions: 2 2 100.0 %
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * SHA1 routine optimized to do word accesses rather than byte accesses,
       3                 :            :  * and to avoid unnecessary copies into the context array.
       4                 :            :  *
       5                 :            :  * This was based on the git SHA1 implementation.
       6                 :            :  */
       7                 :            : 
       8                 :            : #include <linux/kernel.h>
       9                 :            : #include <linux/export.h>
      10                 :            : #include <linux/bitops.h>
      11                 :            : #include <linux/cryptohash.h>
      12                 :            : #include <asm/unaligned.h>
      13                 :            : 
      14                 :            : /*
      15                 :            :  * If you have 32 registers or more, the compiler can (and should)
      16                 :            :  * try to change the array[] accesses into registers. However, on
      17                 :            :  * machines with less than ~25 registers, that won't really work,
      18                 :            :  * and at least gcc will make an unholy mess of it.
      19                 :            :  *
      20                 :            :  * So to avoid that mess which just slows things down, we force
      21                 :            :  * the stores to memory to actually happen (we might be better off
      22                 :            :  * with a 'W(t)=(val);asm("":"+m" (W(t))' there instead, as
      23                 :            :  * suggested by Artur Skawina - that will also make gcc unable to
      24                 :            :  * try to do the silly "optimize away loads" part because it won't
      25                 :            :  * see what the value will be).
      26                 :            :  *
      27                 :            :  * Ben Herrenschmidt reports that on PPC, the C version comes close
      28                 :            :  * to the optimized asm with this (ie on PPC you don't want that
      29                 :            :  * 'volatile', since there are lots of registers).
      30                 :            :  *
      31                 :            :  * On ARM we get the best code generation by forcing a full memory barrier
      32                 :            :  * between each SHA_ROUND, otherwise gcc happily get wild with spilling and
      33                 :            :  * the stack frame size simply explode and performance goes down the drain.
      34                 :            :  */
      35                 :            : 
      36                 :            : #ifdef CONFIG_X86
      37                 :            :   #define setW(x, val) (*(volatile __u32 *)&W(x) = (val))
      38                 :            : #elif defined(CONFIG_ARM)
      39                 :            :   #define setW(x, val) do { W(x) = (val); __asm__("":::"memory"); } while (0)
      40                 :            : #else
      41                 :            :   #define setW(x, val) (W(x) = (val))
      42                 :            : #endif
      43                 :            : 
      44                 :            : /* This "rolls" over the 512-bit array */
      45                 :            : #define W(x) (array[(x)&15])
      46                 :            : 
      47                 :            : /*
      48                 :            :  * Where do we get the source from? The first 16 iterations get it from
      49                 :            :  * the input data, the next mix it from the 512-bit array.
      50                 :            :  */
      51                 :            : #define SHA_SRC(t) get_unaligned_be32((__u32 *)data + t)
      52                 :            : #define SHA_MIX(t) rol32(W(t+13) ^ W(t+8) ^ W(t+2) ^ W(t), 1)
      53                 :            : 
      54                 :            : #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \
      55                 :            :         __u32 TEMP = input(t); setW(t, TEMP); \
      56                 :            :         E += TEMP + rol32(A,5) + (fn) + (constant); \
      57                 :            :         B = ror32(B, 2); } while (0)
      58                 :            : 
      59                 :            : #define T_0_15(t, A, B, C, D, E)  SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E )
      60                 :            : #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E )
      61                 :            : #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E )
      62                 :            : #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D, E )
      63                 :            : #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) ,  0xca62c1d6, A, B, C, D, E )
      64                 :            : 
      65                 :            : /**
      66                 :            :  * sha_transform - single block SHA1 transform
      67                 :            :  *
      68                 :            :  * @digest: 160 bit digest to update
      69                 :            :  * @data:   512 bits of data to hash
      70                 :            :  * @array:  16 words of workspace (see note)
      71                 :            :  *
      72                 :            :  * This function generates a SHA1 digest for a single 512-bit block.
      73                 :            :  * Be warned, it does not handle padding and message digest, do not
      74                 :            :  * confuse it with the full FIPS 180-1 digest algorithm for variable
      75                 :            :  * length messages.
      76                 :            :  *
      77                 :            :  * Note: If the hash is security sensitive, the caller should be sure
      78                 :            :  * to clear the workspace. This is left to the caller to avoid
      79                 :            :  * unnecessary clears between chained hashing operations.
      80                 :            :  */
      81                 :          0 : void sha_transform(__u32 *digest, const char *data, __u32 *array)
      82                 :            : {
      83                 :            :         __u32 A, B, C, D, E;
      84                 :            : 
      85                 :     386982 :         A = digest[0];
      86                 :     386982 :         B = digest[1];
      87                 :     386982 :         C = digest[2];
      88                 :     386982 :         D = digest[3];
      89                 :     386982 :         E = digest[4];
      90                 :            : 
      91                 :            :         /* Round 1 - iterations 0-16 take their input from 'data' */
      92                 :     386982 :         T_0_15( 0, A, B, C, D, E);
      93                 :     386974 :         T_0_15( 1, E, A, B, C, D);
      94                 :     386974 :         T_0_15( 2, D, E, A, B, C);
      95                 :     386975 :         T_0_15( 3, C, D, E, A, B);
      96                 :     386973 :         T_0_15( 4, B, C, D, E, A);
      97                 :     386974 :         T_0_15( 5, A, B, C, D, E);
      98                 :     386975 :         T_0_15( 6, E, A, B, C, D);
      99                 :     386982 :         T_0_15( 7, D, E, A, B, C);
     100                 :     386976 :         T_0_15( 8, C, D, E, A, B);
     101                 :     386981 :         T_0_15( 9, B, C, D, E, A);
     102                 :     386981 :         T_0_15(10, A, B, C, D, E);
     103                 :     386982 :         T_0_15(11, E, A, B, C, D);
     104                 :     386982 :         T_0_15(12, D, E, A, B, C);
     105                 :     386982 :         T_0_15(13, C, D, E, A, B);
     106                 :     386982 :         T_0_15(14, B, C, D, E, A);
     107                 :     386982 :         T_0_15(15, A, B, C, D, E);
     108                 :            : 
     109                 :            :         /* Round 1 - tail. Input from 512-bit mixing array */
     110                 :     386982 :         T_16_19(16, E, A, B, C, D);
     111                 :     386982 :         T_16_19(17, D, E, A, B, C);
     112                 :     386982 :         T_16_19(18, C, D, E, A, B);
     113                 :     386982 :         T_16_19(19, B, C, D, E, A);
     114                 :            : 
     115                 :            :         /* Round 2 */
     116                 :     386982 :         T_20_39(20, A, B, C, D, E);
     117                 :     386982 :         T_20_39(21, E, A, B, C, D);
     118                 :     386982 :         T_20_39(22, D, E, A, B, C);
     119                 :     386981 :         T_20_39(23, C, D, E, A, B);
     120                 :     386981 :         T_20_39(24, B, C, D, E, A);
     121                 :     386982 :         T_20_39(25, A, B, C, D, E);
     122                 :     386982 :         T_20_39(26, E, A, B, C, D);
     123                 :     386982 :         T_20_39(27, D, E, A, B, C);
     124                 :     386982 :         T_20_39(28, C, D, E, A, B);
     125                 :     386982 :         T_20_39(29, B, C, D, E, A);
     126                 :     386982 :         T_20_39(30, A, B, C, D, E);
     127                 :     386979 :         T_20_39(31, E, A, B, C, D);
     128                 :     386981 :         T_20_39(32, D, E, A, B, C);
     129                 :     386981 :         T_20_39(33, C, D, E, A, B);
     130                 :     386982 :         T_20_39(34, B, C, D, E, A);
     131                 :     386982 :         T_20_39(35, A, B, C, D, E);
     132                 :     386982 :         T_20_39(36, E, A, B, C, D);
     133                 :     386982 :         T_20_39(37, D, E, A, B, C);
     134                 :     386981 :         T_20_39(38, C, D, E, A, B);
     135                 :     386980 :         T_20_39(39, B, C, D, E, A);
     136                 :            : 
     137                 :            :         /* Round 3 */
     138                 :     386980 :         T_40_59(40, A, B, C, D, E);
     139                 :     386982 :         T_40_59(41, E, A, B, C, D);
     140                 :     386981 :         T_40_59(42, D, E, A, B, C);
     141                 :     386981 :         T_40_59(43, C, D, E, A, B);
     142                 :     386981 :         T_40_59(44, B, C, D, E, A);
     143                 :     386982 :         T_40_59(45, A, B, C, D, E);
     144                 :     386973 :         T_40_59(46, E, A, B, C, D);
     145                 :     386980 :         T_40_59(47, D, E, A, B, C);
     146                 :     386981 :         T_40_59(48, C, D, E, A, B);
     147                 :     386982 :         T_40_59(49, B, C, D, E, A);
     148                 :     386981 :         T_40_59(50, A, B, C, D, E);
     149                 :     386981 :         T_40_59(51, E, A, B, C, D);
     150                 :     386981 :         T_40_59(52, D, E, A, B, C);
     151                 :     386981 :         T_40_59(53, C, D, E, A, B);
     152                 :     386974 :         T_40_59(54, B, C, D, E, A);
     153                 :     386981 :         T_40_59(55, A, B, C, D, E);
     154                 :     386981 :         T_40_59(56, E, A, B, C, D);
     155                 :     386982 :         T_40_59(57, D, E, A, B, C);
     156                 :     386982 :         T_40_59(58, C, D, E, A, B);
     157                 :     386981 :         T_40_59(59, B, C, D, E, A);
     158                 :            : 
     159                 :            :         /* Round 4 */
     160                 :     386981 :         T_60_79(60, A, B, C, D, E);
     161                 :     386981 :         T_60_79(61, E, A, B, C, D);
     162                 :     386975 :         T_60_79(62, D, E, A, B, C);
     163                 :     386981 :         T_60_79(63, C, D, E, A, B);
     164                 :     386982 :         T_60_79(64, B, C, D, E, A);
     165                 :     386982 :         T_60_79(65, A, B, C, D, E);
     166                 :     386976 :         T_60_79(66, E, A, B, C, D);
     167                 :     386976 :         T_60_79(67, D, E, A, B, C);
     168                 :     386982 :         T_60_79(68, C, D, E, A, B);
     169                 :     386982 :         T_60_79(69, B, C, D, E, A);
     170                 :     386982 :         T_60_79(70, A, B, C, D, E);
     171                 :     386982 :         T_60_79(71, E, A, B, C, D);
     172                 :     386982 :         T_60_79(72, D, E, A, B, C);
     173                 :     386982 :         T_60_79(73, C, D, E, A, B);
     174                 :     386982 :         T_60_79(74, B, C, D, E, A);
     175                 :     386982 :         T_60_79(75, A, B, C, D, E);
     176                 :     386982 :         T_60_79(76, E, A, B, C, D);
     177                 :     386982 :         T_60_79(77, D, E, A, B, C);
     178                 :     386981 :         T_60_79(78, C, D, E, A, B);
     179                 :     386982 :         T_60_79(79, B, C, D, E, A);
     180                 :            : 
     181                 :     386982 :         digest[0] += A;
     182                 :     386982 :         digest[1] += B;
     183                 :     386982 :         digest[2] += C;
     184                 :     386982 :         digest[3] += D;
     185                 :     386982 :         digest[4] += E;
     186                 :     386982 : }
     187                 :            : EXPORT_SYMBOL(sha_transform);
     188                 :            : 
     189                 :            : /**
     190                 :            :  * sha_init - initialize the vectors for a SHA1 digest
     191                 :            :  * @buf: vector to initialize
     192                 :            :  */
     193                 :          0 : void sha_init(__u32 *buf)
     194                 :            : {
     195                 :     125788 :         buf[0] = 0x67452301;
     196                 :     125788 :         buf[1] = 0xefcdab89;
     197                 :     125788 :         buf[2] = 0x98badcfe;
     198                 :     125788 :         buf[3] = 0x10325476;
     199                 :     125788 :         buf[4] = 0xc3d2e1f0;
     200                 :     125788 : }

Generated by: LCOV version 1.9