Coverage Report

Created: 2025-03-09 06:52

/src/gmp-6.2.1/mpz/powm.c
Line
Count
Source (jump to first uncovered line)
1
/* mpz_powm(res,base,exp,mod) -- Set R to (U^E) mod M.
2
3
   Contributed to the GNU project by Torbjorn Granlund.
4
5
Copyright 1991, 1993, 1994, 1996, 1997, 2000-2002, 2005, 2008, 2009,
6
2011, 2012, 2015, 2019 Free Software Foundation, Inc.
7
8
This file is part of the GNU MP Library.
9
10
The GNU MP Library is free software; you can redistribute it and/or modify
11
it under the terms of either:
12
13
  * the GNU Lesser General Public License as published by the Free
14
    Software Foundation; either version 3 of the License, or (at your
15
    option) any later version.
16
17
or
18
19
  * the GNU General Public License as published by the Free Software
20
    Foundation; either version 2 of the License, or (at your option) any
21
    later version.
22
23
or both in parallel, as here.
24
25
The GNU MP Library is distributed in the hope that it will be useful, but
26
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
27
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
28
for more details.
29
30
You should have received copies of the GNU General Public License and the
31
GNU Lesser General Public License along with the GNU MP Library.  If not,
32
see https://www.gnu.org/licenses/.  */
33
34
35
#include "gmp-impl.h"
36
#include "longlong.h"
37
38
39
/* TODO
40
41
 * Improve handling of buffers.  It is pretty ugly now.
42
43
 * For even moduli, we compute a binvert of its odd part both here and in
44
   mpn_powm.  How can we avoid this recomputation?
45
*/
46
47
/*
48
  b ^ e mod m   res
49
  0   0     0    ?
50
  0   e     0    ?
51
  0   0     m    ?
52
  0   e     m    0
53
  b   0     0    ?
54
  b   e     0    ?
55
  b   0     m    1 mod m
56
  b   e     m    b^e mod m
57
*/
58
59
#define HANDLE_NEGATIVE_EXPONENT 1
60
61
void
62
mpz_powm (mpz_ptr r, mpz_srcptr b, mpz_srcptr e, mpz_srcptr m)
63
20.0k
{
64
20.0k
  mp_size_t n, nodd, ncnt;
65
20.0k
  int cnt;
66
20.0k
  mp_ptr rp, tp;
67
20.0k
  mp_srcptr bp, ep, mp;
68
20.0k
  mp_size_t rn, bn, es, en, itch;
69
20.0k
  mpz_t new_b;      /* note: value lives long via 'b' */
70
20.0k
  TMP_DECL;
71
72
20.0k
  n = ABSIZ(m);
73
20.0k
  if (UNLIKELY (n == 0))
74
0
    DIVIDE_BY_ZERO;
75
76
20.0k
  mp = PTR(m);
77
78
20.0k
  TMP_MARK;
79
80
20.0k
  es = SIZ(e);
81
20.0k
  if (UNLIKELY (es <= 0))
82
35
    {
83
35
      if (es == 0)
84
35
  {
85
    /* b^0 mod m,  b is anything and m is non-zero.
86
       Result is 1 mod m, i.e., 1 or 0 depending on if m = 1.  */
87
35
    SIZ(r) = n != 1 || mp[0] != 1;
88
35
    MPZ_NEWALLOC (r, 1)[0] = 1;
89
35
    TMP_FREE; /* we haven't really allocated anything here */
90
35
    return;
91
35
  }
92
0
#if HANDLE_NEGATIVE_EXPONENT
93
0
      MPZ_TMP_INIT (new_b, n + 1);
94
95
0
      if (UNLIKELY (! mpz_invert (new_b, b, m)))
96
0
  DIVIDE_BY_ZERO;
97
0
      b = new_b;
98
0
      es = -es;
99
#else
100
      DIVIDE_BY_ZERO;
101
#endif
102
0
    }
103
19.9k
  en = es;
104
105
19.9k
  bn = ABSIZ(b);
106
107
19.9k
  if (UNLIKELY (bn == 0))
108
18
    {
109
18
      SIZ(r) = 0;
110
18
      TMP_FREE;
111
18
      return;
112
18
    }
113
114
19.9k
  ep = PTR(e);
115
116
  /* Handle (b^1 mod m) early, since mpn_pow* do not handle that case.  */
117
19.9k
  if (UNLIKELY (en == 1 && ep[0] == 1))
118
63
    {
119
63
      rp = TMP_ALLOC_LIMBS (n);
120
63
      bp = PTR(b);
121
63
      if (bn >= n)
122
54
  {
123
54
    mp_ptr qp = TMP_ALLOC_LIMBS (bn - n + 1);
124
54
    mpn_tdiv_qr (qp, rp, 0L, bp, bn, mp, n);
125
54
    rn = n;
126
54
    MPN_NORMALIZE (rp, rn);
127
128
54
    if (rn != 0 && SIZ(b) < 0)
129
18
      {
130
18
        mpn_sub (rp, mp, n, rp, rn);
131
18
        rn = n;
132
18
        MPN_NORMALIZE_NOT_ZERO (rp, rn);
133
18
      }
134
54
  }
135
9
      else
136
9
  {
137
9
    if (SIZ(b) < 0)
138
3
      {
139
3
        mpn_sub (rp, mp, n, bp, bn);
140
3
        rn = n;
141
3
        MPN_NORMALIZE_NOT_ZERO (rp, rn);
142
3
      }
143
6
    else
144
6
      {
145
6
        MPN_COPY (rp, bp, bn);
146
6
        rn = bn;
147
6
      }
148
9
  }
149
63
      goto ret;
150
63
    }
151
152
  /* Remove low zero limbs from M.  This loop will terminate for correctly
153
     represented mpz numbers.  */
154
19.8k
  ncnt = 0;
155
19.8k
  while (UNLIKELY (mp[0] == 0))
156
6.36k
    {
157
6.36k
      mp++;
158
6.36k
      ncnt++;
159
6.36k
    }
160
19.8k
  nodd = n - ncnt;
161
19.8k
  cnt = 0;
162
19.8k
  if (mp[0] % 2 == 0)
163
875
    {
164
875
      mp_ptr newmp = TMP_ALLOC_LIMBS (nodd);
165
875
      count_trailing_zeros (cnt, mp[0]);
166
875
      mpn_rshift (newmp, mp, nodd, cnt);
167
875
      nodd -= newmp[nodd - 1] == 0;
168
875
      mp = newmp;
169
875
      ncnt++;
170
875
    }
171
172
19.8k
  if (ncnt != 0)
173
918
    {
174
      /* We will call both mpn_powm and mpn_powlo.  */
175
      /* rp needs n, mpn_powlo needs 4n, the 2 mpn_binvert might need more */
176
918
      mp_size_t n_largest_binvert = MAX (ncnt, nodd);
177
918
      mp_size_t itch_binvert = mpn_binvert_itch (n_largest_binvert);
178
918
      itch = 3 * n + MAX (itch_binvert, 2 * n);
179
918
    }
180
18.9k
  else
181
18.9k
    {
182
      /* We will call just mpn_powm.  */
183
18.9k
      mp_size_t itch_binvert = mpn_binvert_itch (nodd);
184
18.9k
      itch = n + MAX (itch_binvert, 2 * n);
185
18.9k
    }
186
19.8k
  tp = TMP_ALLOC_LIMBS (itch);
187
188
19.8k
  rp = tp;  tp += n;
189
190
19.8k
  bp = PTR(b);
191
19.8k
  mpn_powm (rp, bp, bn, ep, en, mp, nodd, tp);
192
193
19.8k
  rn = n;
194
195
19.8k
  if (ncnt != 0)
196
918
    {
197
918
      mp_ptr r2, xp, yp, odd_inv_2exp;
198
918
      unsigned long t;
199
918
      int bcnt;
200
201
918
      if (bn < ncnt)
202
294
  {
203
294
    mp_ptr newbp = TMP_ALLOC_LIMBS (ncnt);
204
294
    MPN_COPY (newbp, bp, bn);
205
294
    MPN_ZERO (newbp + bn, ncnt - bn);
206
294
    bp = newbp;
207
294
  }
208
209
918
      r2 = tp;
210
211
918
      if (bp[0] % 2 == 0)
212
644
  {
213
644
    if (en > 1)
214
338
      {
215
338
        MPN_ZERO (r2, ncnt);
216
338
        goto zero;
217
338
      }
218
219
306
    ASSERT (en == 1);
220
306
    t = (ncnt - (cnt != 0)) * GMP_NUMB_BITS + cnt;
221
222
    /* Count number of low zero bits in B, up to 3.  */
223
306
    bcnt = (0x1213 >> ((bp[0] & 7) << 1)) & 0x3;
224
    /* Note that ep[0] * bcnt might overflow, but that just results
225
       in a missed optimization.  */
226
306
    if (ep[0] * bcnt >= t)
227
149
      {
228
149
        MPN_ZERO (r2, ncnt);
229
149
        goto zero;
230
149
      }
231
306
  }
232
233
431
      mpn_powlo (r2, bp, ep, en, ncnt, tp + ncnt);
234
235
918
    zero:
236
918
      if (nodd < ncnt)
237
0
  {
238
0
    mp_ptr newmp = TMP_ALLOC_LIMBS (ncnt);
239
0
    MPN_COPY (newmp, mp, nodd);
240
0
    MPN_ZERO (newmp + nodd, ncnt - nodd);
241
0
    mp = newmp;
242
0
  }
243
244
918
      odd_inv_2exp = tp + n;
245
918
      mpn_binvert (odd_inv_2exp, mp, ncnt, tp + 2 * n);
246
247
918
      mpn_sub (r2, r2, ncnt, rp, nodd > ncnt ? ncnt : nodd);
248
249
918
      xp = tp + 2 * n;
250
918
      mpn_mullo_n (xp, odd_inv_2exp, r2, ncnt);
251
252
918
      if (cnt != 0)
253
875
  xp[ncnt - 1] &= (CNST_LIMB(1) << cnt) - 1;
254
255
918
      yp = tp;
256
918
      if (ncnt > nodd)
257
0
  mpn_mul (yp, xp, ncnt, mp, nodd);
258
918
      else
259
918
  mpn_mul (yp, mp, nodd, xp, ncnt);
260
261
918
      mpn_add (rp, yp, n, rp, nodd);
262
263
918
      ASSERT (nodd + ncnt >= n);
264
918
      ASSERT (nodd + ncnt <= n + 1);
265
918
    }
266
267
19.8k
  MPN_NORMALIZE (rp, rn);
268
269
19.8k
  if ((ep[0] & 1) && SIZ(b) < 0 && rn != 0)
270
70
    {
271
70
      mpn_sub (rp, PTR(m), n, rp, rn);
272
70
      rn = n;
273
70
      MPN_NORMALIZE (rp, rn);
274
70
    }
275
276
19.9k
 ret:
277
19.9k
  MPZ_NEWALLOC (r, rn);
278
19.9k
  SIZ(r) = rn;
279
19.9k
  MPN_COPY (PTR(r), rp, rn);
280
281
19.9k
  TMP_FREE;
282
19.9k
}