summaryrefslogtreecommitdiff
path: root/mpn/generic/sec_tabselect.c
blob: 8852b096bb9afb3685a5ef083e87091cb1ba37ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* mpn_sec_tabselect.

Copyright 2007-2009, 2011, 2013, 2021 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of either:

  * the GNU Lesser General Public License as published by the Free
    Software Foundation; either version 3 of the License, or (at your
    option) any later version.

or

  * the GNU General Public License as published by the Free Software
    Foundation; either version 2 of the License, or (at your option) any
    later version.

or both in parallel, as here.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received copies of the GNU General Public License and the
GNU Lesser General Public License along with the GNU MP Library.  If not,
see https://www.gnu.org/licenses/.  */

#include "gmp-impl.h"

#ifndef SEC_TABSELECT_METHOD
#define SEC_TABSELECT_METHOD 1
#endif

/* Select entry `which' from table `tab', which has nents entries, each `n'
   limbs.  Store the selected entry at rp.  Reads entire table to avoid
   side-channel information leaks.  O(n*nents).  */

#if SEC_TABSELECT_METHOD == 1
void
mpn_sec_tabselect (volatile mp_limb_t *rp, volatile const mp_limb_t *tab,
		   mp_size_t n, mp_size_t nents, mp_size_t which)
{
  mp_size_t k, i;
  mp_limb_t mask;
  volatile const mp_limb_t *tp;

  tp = tab;

  /* Place first entry into result area. */
  for (i = 0; i < n; i++)
    rp[i] = tp[i];

  /* Conditionally replace entry in result area by entry 1...(nents-1) using
     masking trickery. */
  for (k = 1; k < nents; k++)
    {
      /* Generate a mask using an expression which all compilers should compile
	 into branch-free code.  The convoluted expression is designed to both
	 allow mp_limb_t greater and mp_limb_t smaller than mp_size_t. */
      mask = -(mp_limb_t) ((-(unsigned long) (which ^ k)) >> (BITS_PER_ULONG - 1));
      tp += n;
      for (i = 0; i < n; i++)
	rp[i] = (rp[i] & mask) | (tp[i] & ~mask);
    }
}
#endif

#if SEC_TABSELECT_METHOD == 2
void
mpn_sec_tabselect (volatile mp_limb_t * restrict rp,
		   volatile const mp_limb_t * restrict tab,
		   mp_size_t n, mp_size_t nents, mp_size_t which)
{
  mp_size_t k, i;
  mp_limb_t mask, r0, r1, r2, r3;
  volatile const mp_limb_t * restrict tp;

  for (i = 0; i <= n - 4; i += 4)
    {
      tp = tab + i;
      r0 = r1 = r2 = r3 = 0;
      for (k = 0; k < nents; k++)
	{
	  mask = (mp_limb_t) ((-(unsigned long) (which ^ k)) >> (BITS_PER_ULONG - 1)) - 1;
	  r0 += tp[0] & mask;
	  r1 += tp[1] & mask;
	  r2 += tp[2] & mask;
	  r3 += tp[3] & mask;
	  tp += n;
	}
      rp[0] = r0;
      rp[1] = r1;
      rp[2] = r2;
      rp[3] = r3;
      rp += 4;
    }

  if (n & 2 != 0)
    {
      tp = tab + n - 2;
      r0 = r1 = 0;
      for (k = 0; k < nents; k++)
	{
	  mask = (mp_limb_t) ((-(unsigned long) (which ^ k)) >> (BITS_PER_ULONG - 1)) - 1;
	  r0 += tp[0] & mask;
	  r1 += tp[1] & mask;
	  tp += n;
	}
      rp[0] = r0;
      rp[1] = r1;
      rp += 2;
    }

  if (n & 1 != 0)
    {
      tp = tab + n - 1;
      r0 = r1 = 0;
      for (k = 0; k < nents; k++)
	{
	  mask = (mp_limb_t) ((-(unsigned long) (which ^ k)) >> (BITS_PER_ULONG - 1)) - 1;
	  r0 += tp[0] & mask;
	  tp += n;
	}
      rp[0] = r0;
    }
}
#endif