powm_sec.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:9k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpn_powm_sec -- Compute R = U^E mod M.  Secure variant, side-channel silent
  2.    under the assumption that the multiply instruction is side channel silent.
  3.    Contributed to the GNU project by Torbjorn Granlund.
  4.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  5.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  6.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  7. Copyright 2007, 2008, 2009 Free Software Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. /*
  20.   BASIC ALGORITHM, Compute U^E mod M, where M < B^n is odd.
  21.   1. T <- (B^n * U) mod M                Convert to REDC form
  22.   2. Compute table U^0, U^1, U^2... of E-dependent size
  23.   3. While there are more bits in E
  24.        W <- power left-to-right base-k
  25.   TODO:
  26.    * Make getbits a macro, thereby allowing it to update the index operand.
  27.      That will simplify the code using getbits.  (Perhaps make getbits' sibling
  28.      getbit then have similar form, for symmetry.)
  29.    * Write an itch function.  Or perhaps get rid of tp parameter since the huge
  30.      pp area is allocated locally anyway?
  31.    * Choose window size without looping.  (Superoptimize or think(tm).)
  32.    * Call new division functions, not mpn_tdiv_qr.
  33. */
  34. #include "gmp.h"
  35. #include "gmp-impl.h"
  36. #include "longlong.h"
  37. #define WANT_CACHE_SECURITY 1
  38. /* Define our own mpn squaring function.  We do this since we cannot use a
  39.    native mpn_sqr_basecase over TUNE_SQR_TOOM2_MAX, or a non-native one over
  40.    SQR_TOOM2_THRESHOLD.  This is so because of fixed size stack allocations
  41.    made inside mpn_sqr_basecase.  */
  42. #if HAVE_NATIVE_mpn_sqr_diagonal
  43. #define MPN_SQR_DIAGONAL(rp, up, n)
  44.   mpn_sqr_diagonal (rp, up, n)
  45. #else
  46. #define MPN_SQR_DIAGONAL(rp, up, n)
  47.   do {
  48.     mp_size_t _i;
  49.     for (_i = 0; _i < (n); _i++)
  50.       {
  51. mp_limb_t ul, lpl;
  52. ul = (up)[_i];
  53. umul_ppmm ((rp)[2 * _i + 1], lpl, ul, ul << GMP_NAIL_BITS);
  54. (rp)[2 * _i] = lpl >> GMP_NAIL_BITS;
  55.       }
  56.   } while (0)
  57. #endif
  58. #if ! HAVE_NATIVE_mpn_sqr_basecase
  59. /* The limit of the generic code is SQR_TOOM2_THRESHOLD.  */
  60. #define SQR_BASECASE_MAX  SQR_TOOM2_THRESHOLD
  61. #endif
  62. #if HAVE_NATIVE_mpn_sqr_basecase
  63. #ifdef TUNE_SQR_TOOM2_MAX
  64. /* We slightly abuse TUNE_SQR_TOOM2_MAX here.  If it is set for an assembly
  65.    mpn_sqr_basecase, it comes from SQR_TOOM2_THRESHOLD_MAX in the assembly
  66.    file.  An assembly mpn_sqr_basecase that does not define it, should allow
  67.    any size.  */
  68. #define SQR_BASECASE_MAX  SQR_TOOM2_THRESHOLD
  69. #endif
  70. #endif
  71. #ifndef SQR_BASECASE_MAX
  72. /* If SQR_BASECASE_MAX is now not defined, use mpn_sqr_basecase for any operand
  73.    size.  */
  74. #define mpn_local_sqr(rp,up,n,tp) mpn_sqr_basecase(rp,up,n)
  75. #else
  76. /* Define our own squaring function, which uses mpn_sqr_basecase for its
  77.    allowed sizes, but its own code for larger sizes.  */
  78. static void
  79. mpn_local_sqr (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_ptr tp)
  80. {
  81.   mp_size_t i;
  82.   ASSERT (n >= 1);
  83.   ASSERT (! MPN_OVERLAP_P (rp, 2*n, up, n));
  84.   if (n < SQR_BASECASE_MAX)
  85.     {
  86.       mpn_sqr_basecase (rp, up, n);
  87.       return;
  88.     }
  89.   {
  90.     mp_limb_t ul, lpl;
  91.     ul = up[0];
  92.     umul_ppmm (rp[1], lpl, ul, ul << GMP_NAIL_BITS);
  93.     rp[0] = lpl >> GMP_NAIL_BITS;
  94.   }
  95.   if (n > 1)
  96.     {
  97.       mp_limb_t cy;
  98.       TMP_DECL;
  99.       TMP_MARK;
  100.       cy = mpn_mul_1 (tp, up + 1, n - 1, up[0]);
  101.       tp[n - 1] = cy;
  102.       for (i = 2; i < n; i++)
  103. {
  104.   mp_limb_t cy;
  105.   cy = mpn_addmul_1 (tp + 2 * i - 2, up + i, n - i, up[i - 1]);
  106.   tp[n + i - 2] = cy;
  107. }
  108.       MPN_SQR_DIAGONAL (rp + 2, up + 1, n - 1);
  109.       {
  110. mp_limb_t cy;
  111. #if HAVE_NATIVE_mpn_addlsh1_n
  112. cy = mpn_addlsh1_n (rp + 1, rp + 1, tp, 2 * n - 2);
  113. #else
  114. cy = mpn_lshift (tp, tp, 2 * n - 2, 1);
  115. cy += mpn_add_n (rp + 1, rp + 1, tp, 2 * n - 2);
  116. #endif
  117. rp[2 * n - 1] += cy;
  118.       }
  119.       TMP_FREE;
  120.     }
  121. }
  122. #endif
  123. #define getbit(p,bi) 
  124.   ((p[(bi - 1) / GMP_LIMB_BITS] >> (bi - 1) % GMP_LIMB_BITS) & 1)
  125. static inline mp_limb_t
  126. getbits (const mp_limb_t *p, mp_bitcnt_t bi, int nbits)
  127. {
  128.   int nbits_in_r;
  129.   mp_limb_t r;
  130.   mp_size_t i;
  131.   if (bi < nbits)
  132.     {
  133.       return p[0] & (((mp_limb_t) 1 << bi) - 1);
  134.     }
  135.   else
  136.     {
  137.       bi -= nbits; /* bit index of low bit to extract */
  138.       i = bi / GMP_LIMB_BITS; /* word index of low bit to extract */
  139.       bi %= GMP_LIMB_BITS; /* bit index in low word */
  140.       r = p[i] >> bi; /* extract (low) bits */
  141.       nbits_in_r = GMP_LIMB_BITS - bi; /* number of bits now in r */
  142.       if (nbits_in_r < nbits) /* did we get enough bits? */
  143. r += p[i + 1] << nbits_in_r; /* prepend bits from higher word */
  144.       return r & (((mp_limb_t ) 1 << nbits) - 1);
  145.     }
  146. }
  147. static inline int
  148. win_size (mp_bitcnt_t eb)
  149. {
  150.   int k;
  151.   static mp_bitcnt_t x[] = {0,4,27,100,325,1026,2905,7848,20457,51670,~(mp_bitcnt_t)0};
  152.   for (k = 1; eb > x[k]; k++)
  153.     ;
  154.   return k;
  155. }
  156. /* Convert U to REDC form, U_r = B^n * U mod M */
  157. static void
  158. redcify (mp_ptr rp, mp_srcptr up, mp_size_t un, mp_srcptr mp, mp_size_t n, mp_ptr tp)
  159. {
  160.   mp_ptr qp;
  161.   TMP_DECL;
  162.   TMP_MARK;
  163.   qp = tp + un + n;
  164.   MPN_ZERO (tp, n);
  165.   MPN_COPY (tp + n, up, un);
  166.   mpn_tdiv_qr (qp, rp, 0L, tp, un + n, mp, n);
  167.   TMP_FREE;
  168. }
  169. /* rp[n-1..0] = bp[bn-1..0] ^ ep[en-1..0] mod mp[n-1..0]
  170.    Requires that mp[n-1..0] is odd.  FIXME: is this true?
  171.    Requires that ep[en-1..0] is > 1.
  172.    Uses scratch space at tp of 3n+1 limbs.  */
  173. void
  174. mpn_powm_sec (mp_ptr rp, mp_srcptr bp, mp_size_t bn,
  175.       mp_srcptr ep, mp_size_t en,
  176.       mp_srcptr mp, mp_size_t n, mp_ptr tp)
  177. {
  178.   mp_limb_t minv;
  179.   int cnt;
  180.   mp_bitcnt_t ebi;
  181.   int windowsize, this_windowsize;
  182.   mp_limb_t expbits;
  183.   mp_ptr pp, this_pp;
  184.   long i;
  185.   int cnd;
  186.   TMP_DECL;
  187.   ASSERT (en > 1 || (en == 1 && ep[0] > 0));
  188.   ASSERT (n >= 1 && ((mp[0] & 1) != 0));
  189.   TMP_MARK;
  190.   count_leading_zeros (cnt, ep[en - 1]);
  191.   ebi = (mp_bitcnt_t) en * GMP_LIMB_BITS - cnt;
  192.   windowsize = win_size (ebi);
  193.   binvert_limb (minv, mp[0]);
  194.   minv = -minv;
  195.   pp = tp + 4 * n;
  196.   this_pp = pp;
  197.   this_pp[n] = 1;
  198.   redcify (this_pp, this_pp + n, 1, mp, n, tp + 6 * n);
  199.   this_pp += n;
  200.   redcify (this_pp, bp, bn, mp, n, tp + 6 * n);
  201.   /* Precompute powers of b and put them in the temporary area at pp.  */
  202.   for (i = (1 << windowsize) - 2; i > 0; i--)
  203.     {
  204.       mpn_mul_basecase (tp, this_pp, n, pp + n, n);
  205.       this_pp += n;
  206.       mpn_redc_1_sec (this_pp, tp, mp, n, minv);
  207.     }
  208.   expbits = getbits (ep, ebi, windowsize);
  209.   if (ebi < windowsize)
  210.     ebi = 0;
  211.   else
  212.     ebi -= windowsize;
  213.   MPN_COPY (rp, pp + n * expbits, n);
  214.   while (ebi != 0)
  215.     {
  216.       expbits = getbits (ep, ebi, windowsize);
  217.       this_windowsize = windowsize;
  218.       if (ebi < windowsize)
  219. {
  220.   this_windowsize -= windowsize - ebi;
  221.   ebi = 0;
  222. }
  223.       else
  224. ebi -= windowsize;
  225.       do
  226. {
  227.   mpn_local_sqr (tp, rp, n, tp + 2 * n);
  228.   mpn_redc_1_sec (rp, tp, mp, n, minv);
  229.   this_windowsize--;
  230. }
  231.       while (this_windowsize != 0);
  232. #if WANT_CACHE_SECURITY
  233.       mpn_tabselect (tp + 2*n, pp, n, 1 << windowsize, expbits);
  234.       mpn_mul_basecase (tp, rp, n, tp + 2*n, n);
  235. #else
  236.       mpn_mul_basecase (tp, rp, n, pp + n * expbits, n);
  237. #endif
  238.       mpn_redc_1_sec (rp, tp, mp, n, minv);
  239.     }
  240.   MPN_COPY (tp, rp, n);
  241.   MPN_ZERO (tp + n, n);
  242.   mpn_redc_1_sec (rp, tp, mp, n, minv);
  243.   cnd = mpn_sub_n (tp, rp, mp, n); /* we need just retval */
  244.   mpn_subcnd_n (rp, rp, mp, n, !cnd);
  245.   TMP_FREE;
  246. }
  247. #if ! HAVE_NATIVE_mpn_tabselect
  248. /* Select entry `which' from table `tab', which has nents entries, each `n'
  249.    limbs.  Store the selected entry at rp.  Reads entire table to avoid
  250.    side-channel information leaks.  O(n*nents).
  251.    FIXME: Move to its own file.  */
  252. void
  253. mpn_tabselect (volatile mp_limb_t *rp, volatile mp_limb_t *tab, mp_size_t n,
  254.        mp_size_t nents, mp_size_t which)
  255. {
  256.   mp_size_t k, i;
  257.   mp_limb_t mask;
  258.   volatile mp_limb_t *tp;
  259.   for (k = 0; k < nents; k++)
  260.     {
  261.       mask = -(mp_limb_t) (which == k);
  262.       tp = tab + n * k;
  263.       for (i = 0; i < n; i++)
  264. {
  265.   rp[i] = (rp[i] & ~mask) | (tp[i] & mask);
  266. }
  267.     }
  268. }
  269. #endif
  270. mp_size_t
  271. mpn_powm_sec_itch (mp_size_t bn, mp_size_t en, mp_size_t n)
  272. {
  273.   int windowsize;
  274.   mp_size_t redcify_itch, itch;
  275.   windowsize = win_size (en * GMP_NUMB_BITS); /* slight over-estimate of exp */
  276.   itch = 4 * n + (n << windowsize);
  277.   redcify_itch = 2 * bn + n + 1;
  278.   /* The 6n is due to the placement of reduce scratch 6n into the start of the
  279.      scratch area.  */
  280.   return MAX (itch, redcify_itch + 6 * n);
  281. }