chiark / gitweb /
prime generation: Deploy the new Baillie--PSW testers.
[catacomb] / misc / share.c
1 /* -*-c-*-
2  *
3  * Shamir's secret sharing
4  *
5  * (c) 2000 Straylight/Edgeware
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of Catacomb.
11  *
12  * Catacomb is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU Library General Public License as
14  * published by the Free Software Foundation; either version 2 of the
15  * License, or (at your option) any later version.
16  *
17  * Catacomb is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU Library General Public License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License along with Catacomb; if not, write to the Free
24  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25  * MA 02111-1307, USA.
26  */
27
28 /*----- Header files ------------------------------------------------------*/
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 #include "grand.h"
35 #include "mp.h"
36 #include "mpint.h"
37 #include "mpbarrett.h"
38 #include "mprand.h"
39 #include "pgen.h"
40 #include "rabin.h"
41 #include "share.h"
42
43 /*----- Main code ---------------------------------------------------------*/
44
45 /* --- @share_create@ --- *
46  *
47  * Arguments:   @share *s@ = pointer to share context to initialize
48  *              @unsigned t@ = threshold for the system
49  *
50  * Returns:     ---
51  *
52  * Use:         Initializes a sharing context.
53  */
54
55 void share_create(share *s, unsigned t)
56 {
57   s->t = t;
58   s->i = 0;
59   s->p = 0;
60   s->v = 0;
61 }
62
63 /* --- @share_destroy@ --- *
64  *
65  * Arguments:   @share *s@ = pointer to share context to destroy
66  *
67  * Returns:     ---
68  *
69  * Use:         Disposes of a sharing context.  All memory is freed, all
70  *              integers are dropped.
71  */
72
73 void share_destroy(share *s)
74 {
75   unsigned i;
76
77   /* --- Dispose of the share vector --- */
78
79   if (s->v) {
80     for (i = 0; i < s->t; i++)
81       mp_drop(s->v[i].y);
82     xfree(s->v);
83   }
84
85   /* --- Other stuff --- */
86
87   mp_drop(s->p);
88 }
89
90 /* --- @share_mkshares@ --- *
91  *
92  * Arguments:   @share *s@ = pointer to share context to fill in
93  *              @grand *r@ = pointer to random number source
94  *              @mp *n@ = the secret to share
95  *
96  * Returns:     ---
97  *
98  * Use:         Initializes a sharing context to be able to create shares.
99  *              The context structure is expected to be mostly filled in.  In
100  *              particular, @t@ must be initialized.  If @p@ is zero, a prime
101  *              number of appropriate size is generated automatically.  If
102  *              @v@ is zero, a vector of appropriate size is allocated.  You
103  *              should use the macro @SHARE_INIT@ or @share_create@ to
104  *              construct sharing contexts.
105  */
106
107 void share_mkshares(share *s, grand *r, mp *n)
108 {
109   unsigned i;
110
111   /* --- If there's no prime, construct one --- */
112
113   if (!s->p) {
114     pgen_filterctx pf;
115     mp *p;
116     unsigned bits = (mp_octets(n) + 1) * 8;
117
118     pf.step = 2;
119     p = mprand(MP_NEW, bits, r, 1);
120     s->p = pgen("p", p, p, 0, 0, 0, pgen_filter, &pf,
121                 PGEN_BAILLIEPSWNTESTS, pgen_bailliepswtest, 0);
122   }
123
124   /* --- Construct the polynomial --- */
125
126   if (!s->v)
127     s->v = xmalloc(s->t * sizeof(share_pt));
128   for (i = 0; i < s->t - 1; i++)
129     s->v[i].y = mprand_range(MP_NEWSEC, s->p, r, 0);
130   s->v[s->t - 1].y = mp_copy(n);
131 }
132
133 /* --- @share_get@ --- *
134  *
135  * Arguments:   @share *s@ = pointer to share conext
136  *              @mp *d@ = destination for the share
137  *              @unsigned x@ = share index to fetch
138  *
139  * Returns:     The share, as requested.
140  *
141  * Use:         Extracts a share from the system.  You may extract @MPW_MAX@
142  *              shares, or @s->p@ shares from the system, whichever is
143  *              smaller.  Shares are indexed from 0.
144  */
145
146 mp *share_get(share *s, mp *d, unsigned x)
147 {
148   mpbarrett mb;
149   mpw uw = x + 1;
150   mp u;
151   unsigned i;
152
153   /* --- Various bits of initialization --- */
154
155   mp_build(&u, &uw, &uw + 1);
156   mp_drop(d);
157
158   /* --- Evaluate the polynomial at %$x = i + 1$% --- */
159
160   d = MP_ZERO;
161   mpbarrett_create(&mb, s->p);
162   for (i = 0; i < s->t; i++) {
163     d = mp_mul(d, d, &u);
164     d = mp_add(d, d, s->v[i].y);
165     d = mpbarrett_reduce(&mb, d, d);
166   }
167   mpbarrett_destroy(&mb);
168
169   return (d);
170 }
171
172 /* --- @share_addedp@ --- *
173  *
174  * Arguments:   @share *s@ = pointer to sharing context
175  *              @unsigned x@ = which share number to check
176  *
177  * Returns:     Nonzero if share @x@ has been added already, zero if it
178  *              hasn't.
179  */
180
181 int share_addedp(share *s, unsigned x)
182 {
183   unsigned i;
184
185   for (i = 0; i < s->i; i++) {
186     if (s->v[i].x == x + 1)
187       return (1);
188   }
189   return (0);
190 }
191
192 /* --- @share_add@ --- *
193  *
194  * Arguments:   @share *s@ = pointer to sharing context
195  *              @unsigned x@ = which share number this is
196  *              @mp *y@ = the share value
197  *
198  * Returns:     Number of shares required before recovery may be performed.
199  *
200  * Use:         Adds a share to the context.  The context must have been
201  *              initialized with the correct prime @p@ and threshold @t@.
202  */
203
204 unsigned share_add(share *s, unsigned x, mp *y)
205 {
206   assert(((void)"Share context is full", s->i < s->t));
207   assert(((void)"Share already present", !share_addedp(s, x)));
208
209   /* --- If no vector has been allocated, create one --- */
210
211   if (!s->v) {
212     unsigned i;
213     s->v = xmalloc(s->t * sizeof(share_pt));
214     s->i = 0;
215     for (i = 0; i < s->t; i++)
216       s->v[i].y = 0;
217   }
218
219   /* --- Store the share in the vector --- */
220
221   s->v[s->i].x = x + 1;
222   s->v[s->i].y = mp_copy(y);
223   s->i++;
224
225   /* --- Done --- */
226
227   return (s->t - s->i);
228 }
229
230 /* --- @share_combine@ --- *
231  *
232  * Arguments:   @share *s@ = pointer to share context
233  *
234  * Returns:     The secret, as a multiprecision integer.
235  *
236  * Use:         Reconstructs a secret, given enough shares.
237  */
238
239 mp *share_combine(share *s)
240 {
241   mp *a = MP_ZERO;
242   mpbarrett mb;
243   unsigned i, j;
244   mp ii, jj;
245   mpw iiw, jjw;
246   mp *m = MP_NEW;
247
248   /* --- Sanity checking --- */
249
250   assert(((void)"Not enough shares yet", s->i == s->t));
251
252   /* --- Initialization --- */
253
254   mpbarrett_create(&mb, s->p);
255   mp_build(&ii, &iiw, &iiw + 1);
256   mp_build(&jj, &jjw, &jjw + 1);
257
258   /* --- Grind through the shares --- */
259
260   for (i = 0; i < s->t; i++) {
261     mp *c = MP_ONE;
262
263     iiw = s->v[i].x;
264     for (j = 0; j < s->t; j++) {
265       if (i == j)
266         continue;
267       jjw = s->v[j].x;
268       if (s->v[j].x >= s->v[i].x)
269         m = mp_sub(m, &jj, &ii);
270       else {
271         m = mp_sub(m, &ii, &jj);
272         m = mp_sub(m, s->p, m);
273       }
274       m = mp_modinv(m, m, s->p);
275       c = mp_mul(c, c, &jj);
276       c = mpbarrett_reduce(&mb, c, c);
277       c = mp_mul(c, c, m);
278       c = mpbarrett_reduce(&mb, c, c);
279     }
280     c = mp_mul(c, c, s->v[i].y);
281     c = mpbarrett_reduce(&mb, c, c);
282     a = mp_add(a, a, c);
283     mp_drop(c);
284   }
285
286   a = mpbarrett_reduce(&mb, a, a);
287   mp_drop(m);
288   mpbarrett_destroy(&mb);
289   return (a);
290 }
291
292 /*----- Test rig ----------------------------------------------------------*/
293
294 #ifdef TEST_RIG
295
296 #include "fibrand.h"
297
298 static int verify(grand *r)
299 {
300   unsigned n = r->ops->range(r, 16) + 8;
301   unsigned t = r->ops->range(r, n - 1) + 1;
302   unsigned len = r->ops->range(r, 160);
303
304   mp **v = xmalloc(t * sizeof(mp *));
305   unsigned *p = xmalloc(n * sizeof(unsigned));
306   mp *sec = mprand(MP_NEW, len, r, 0);
307   share s;
308   mp *pp;
309   mp *ss;
310   unsigned i;
311
312   int ok = 1;
313
314   for (i = 0; i < n; i++)
315     p[i] = i;
316   for (i = 0; i < t; i++) {
317     unsigned long j = r->ops->range(r, n - i);
318     unsigned x = p[i];
319     p[i] = p[i + j];
320     p[i + j] = x;
321   }
322
323   share_create(&s, t);
324   share_mkshares(&s, r, sec);
325   for (i = 0; i < t; i++)
326     v[i] = share_get(&s, MP_NEW, p[i]);
327   pp = mp_copy(s.p);
328   share_destroy(&s);
329   assert(mparena_count(MPARENA_GLOBAL) + mparena_count(MPARENA_SECURE) == t + 2);
330
331   share_create(&s, t);
332   s.p = pp;
333   for (i = 0; i < t; i++)
334     share_add(&s, p[i], v[i]);
335   ss = share_combine(&s);
336   share_destroy(&s);
337
338   if (!MP_EQ(sec, ss)) {
339     ok = 0;
340     fprintf(stderr, "\nbad recombination of shares\n");
341   };
342
343   mp_drop(sec);
344   mp_drop(ss);
345
346   for (i = 0; i < t; i++)
347     mp_drop(v[i]);
348
349   xfree(v);
350   xfree(p);
351
352   assert(mparena_count(MPARENA_GLOBAL) + mparena_count(MPARENA_SECURE) == 0);
353   return (ok);
354 }
355
356 int main(void)
357 {
358   grand *r = fibrand_create(0);
359   unsigned i;
360   int ok = 1;
361
362   fputs("share: ", stdout);
363   for (i = 0; i < 40; i++) {
364     if (!verify(r))
365       ok = 0;
366     fputc('.', stdout);
367     fflush(stdout);
368   }
369
370   if (ok)
371     fputs(" ok\n", stdout);
372   else
373     fputs(" failed\n", stdout);
374   return (ok ? EXIT_SUCCESS : EXIT_FAILURE);
375 }
376
377 #endif
378
379 /*----- That's all, folks -------------------------------------------------*/