Add an internal-representation no-op function.
[u/mdw/catacomb] / gfshare.c
CommitLineData
6c1035f5 1/* -*-c-*-
2 *
5d4fee2a 3 * $Id: gfshare.c,v 1.6 2000/12/06 20:30:10 mdw Exp $
6c1035f5 4 *
4d47e157 5 * Secret sharing over %$\gf(2^8)$%
6c1035f5 6 *
7 * (c) 2000 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: gfshare.c,v $
5d4fee2a 33 * Revision 1.6 2000/12/06 20:30:10 mdw
34 * Change secret sharing interface: present the secret at share
35 * construction time.
36 *
ea303d6c 37 * Revision 1.5 2000/06/24 19:11:47 mdw
38 * Fix daft error in the comment for @gfshare_get@.
39 *
3d64a35c 40 * Revision 1.4 2000/06/24 18:29:05 mdw
41 * Interface change: allow shares to be extracted from a context on demand,
42 * rather than building them all up-front.
43 *
cb06abce 44 * Revision 1.3 2000/06/22 18:04:13 mdw
45 * Improve secret reconstruction -- compute coefficients as needed rather
46 * than making a big array of them.
47 *
4d47e157 48 * Revision 1.2 2000/06/18 23:12:15 mdw
49 * Change typesetting of Galois Field names.
50 *
6c1035f5 51 * Revision 1.1 2000/06/17 10:56:30 mdw
52 * Fast but nonstandard secret sharing system.
53 *
54 */
55
56/*----- Header files ------------------------------------------------------*/
57
58#include <assert.h>
59#include <stdarg.h>
60#include <stdio.h>
cb06abce 61#include <string.h>
6c1035f5 62
63#include <mLib/alloc.h>
64#include <mLib/bits.h>
65
66#include "arena.h"
67#include "gfshare.h"
68#include "gfshare-tab.h"
69#include "grand.h"
70
71/*----- Static variables --------------------------------------------------*/
72
73static octet gflog[] = GFSHARE_LOG, gfexp[] = GFSHARE_EXP;
74
75/*----- Main code ---------------------------------------------------------*/
76
77/* --- @gfshare_create@ --- *
78 *
79 * Arguments: @gfshare *s@ = pointer to share context to initialize
3d64a35c 80 * @unsigned t@ = threshold for the system
6c1035f5 81 * @size_t sz@ = size of the secret
82 *
83 * Returns: ---
84 *
85 * Use: Initializes a sharing context.
86 */
87
3d64a35c 88void gfshare_create(gfshare *s, unsigned t, size_t sz)
6c1035f5 89{
90 s->t = t;
6c1035f5 91 s->i = 0;
92 s->sz = sz;
6c1035f5 93 s->v = 0;
94}
95
96/* --- @gfshare_destroy@ --- *
97 *
98 * Arguments: @gfshare *s@ = pointer to share context to destroy
99 *
100 * Returns: ---
101 *
102 * Use: Disposes of a sharing context. The allocations for the
103 * individual shares and the vector @v@ are freed; the secret is
104 * left alone.
105 */
106
107void gfshare_destroy(gfshare *s)
108{
3d64a35c 109 if (s->v)
110 XS_FREE(s->v);
6c1035f5 111}
112
113/* --- @gfshare_mkshares@ --- *
114 *
115 * Arguments: @gfshare *s@ = pointer to share context to fill in
116 * @grand *r@ = pointer to random number source
5d4fee2a 117 * @const void *buf@ = pointer to the secret to share
6c1035f5 118 *
119 * Returns: ---
120 *
3d64a35c 121 * Use: Initializes a sharing context to be able to create shares.
6c1035f5 122 * The context structure is expected to be mostly filled in. In
5d4fee2a 123 * particular, @t@ must be initialized. If @v@ is zero, a
124 * vector of appropriate size is allocated. You should use the
125 * macro @GFSHARE_INIT@ or @gfshare_create@ to construct sharing
126 * contexts.
6c1035f5 127 */
128
5d4fee2a 129void gfshare_mkshares(gfshare *s, grand *r, const void *buf)
6c1035f5 130{
3d64a35c 131 s->v = XS_ALLOC(s->sz * s->t);
132 r->ops->fill(r, s->v, s->sz * (s->t - 1));
5d4fee2a 133 memcpy(s->v + s->sz * (s->t - 1), buf, s->sz);
3d64a35c 134}
6c1035f5 135
3d64a35c 136/* --- @gfshare_get@ --- *
137 *
138 * Arguments: @gfshare *s@ = pointer to share conext
139 * @unsigned x@ = share index to fetch
140 * @void *buf@ = pointer to output buffer
141 *
ea303d6c 142 * Returns: ---
3d64a35c 143 *
144 * Use: Extracts a share from the system. You may extract up to 255
145 * shares from the system. Shares are indexed from 0.
146 */
6c1035f5 147
3d64a35c 148void gfshare_get(gfshare *s, unsigned x, void *buf)
149{
150 unsigned i;
151 const octet *p = s->v;
152 unsigned ilog = gflog[x + 1];
153
154 /* --- Evaluate the polynomial at %$x = i + 1$% --- */
155
156 memcpy(buf, p, s->sz);
157 p += s->sz;
158
159 for (i = 1; i < s->t; i++) {
160 octet *q = buf;
161 unsigned k;
162 for (k = 0; k < s->sz; k++) {
163 unsigned qq = *q;
164 if (qq)
165 qq = gfexp[ilog + gflog[qq]];
166 *q++ = qq ^ *p++;
6c1035f5 167 }
6c1035f5 168 }
6c1035f5 169}
170
171/* --- @gfshare_add@ --- *
172 *
173 * Arguments: @gfshare *s@ = pointer to sharing context
174 * @unsigned x@ = which share number this is
3d64a35c 175 * @const void *y@ = the share value
6c1035f5 176 *
177 * Returns: Number of shares required before recovery may be performed.
178 *
179 * Use: Adds a share to the context. The context must have been
180 * initialized with the correct threshold @t@.
181 */
182
3d64a35c 183unsigned gfshare_add(gfshare *s, unsigned x, const void *y)
6c1035f5 184{
3d64a35c 185 octet *p;
186
6c1035f5 187 /* --- If no vector has been allocated, create one --- */
188
189 if (!s->v) {
3d64a35c 190 s->v = XS_ALLOC(s->t * (s->sz + 1));
6c1035f5 191 s->i = 0;
192 }
193
194 assert(((void)"Share context is full", s->i < s->t));
195
196 /* --- Store the share in the vector --- */
197
3d64a35c 198 p = s->v + s->i * (s->sz + 1);
199 *p++ = x + 1;
200 memcpy(p, y, s->sz);
6c1035f5 201 s->i++;
202
203 /* --- Done --- */
204
205 return (s->t - s->i);
206}
207
208/* --- @gfshare_combine@ --- *
209 *
210 * Arguments: @gfshare *s@ = pointer to share context
3d64a35c 211 * @void *buf@ = pointer to output buffer for the secret
6c1035f5 212 *
213 * Returns: ---
214 *
215 * Use: Reconstructs a secret, given enough shares.
216 */
217
3d64a35c 218void gfshare_combine(gfshare *s, void *buf)
6c1035f5 219{
220 unsigned i, j;
3d64a35c 221 unsigned xi, xj;
6c1035f5 222
223 /* --- Sanity checking --- */
224
225 assert(((void)"Not enough shares yet", s->i == s->t));
226
cb06abce 227 /* --- Grind through the shares --- */
6c1035f5 228
cb06abce 229 memset(buf, 0, s->sz);
6c1035f5 230
231 for (i = 0; i < s->t; i++) {
3d64a35c 232 octet *p = buf;
233 octet *q = s->v + i * (s->sz + 1);
6c1035f5 234 unsigned c = 0, ci = 0;
cb06abce 235
236 /* --- Compute the magic coefficient --- */
237
3d64a35c 238 xi = *q++;
6c1035f5 239 for (j = 0; j < s->t; j++) {
240 if (i == j)
241 continue;
3d64a35c 242 xj = s->v[j * (s->sz + 1)];
243 c += gflog[xj];
6c1035f5 244 if (c >= 0xff)
245 c -= 0xff;
3d64a35c 246 ci += gflog[xi ^ xj];
6c1035f5 247 if (ci >= 0xff)
248 ci -= 0xff;
249 }
250 if (ci > c)
251 c += 0xff;
252 c -= ci;
6c1035f5 253
cb06abce 254 /* --- Work out another layer of the secret --- */
6c1035f5 255
3d64a35c 256 p = buf;
cb06abce 257 for (j = 0; j < s->sz; j++) {
3d64a35c 258 if (*q)
259 *p ^= gfexp[c + gflog[*q]];
260 p++, q++;
6c1035f5 261 }
6c1035f5 262 }
6c1035f5 263}
264
265/*----- Test rig ----------------------------------------------------------*/
266
267#ifdef TEST_RIG
268
269#include "fibrand.h"
270
271static int verify(grand *r)
272{
273 unsigned n = r->ops->range(r, 16) + 8;
274 unsigned t = r->ops->range(r, n - 1) + 1;
275 unsigned len = r->ops->range(r, 32) + 1;
276
3d64a35c 277 octet *v = xmalloc(t * len);
6c1035f5 278 unsigned *p = xmalloc(n * sizeof(unsigned));
279 octet *sec = xmalloc(len), *sbuf = xmalloc(len);
280 gfshare s;
281 unsigned i;
282
283 int ok = 1;
284
285 for (i = 0; i < n; i++)
286 p[i] = i;
287 for (i = 0; i < t; i++) {
288 unsigned long j = r->ops->range(r, n - i);
289 unsigned x = p[i];
290 p[i] = p[i + j];
291 p[i + j] = x;
292 }
293
294 r->ops->fill(r, sec, len);
295
3d64a35c 296 gfshare_create(&s, t, len);
6c1035f5 297
5d4fee2a 298 gfshare_mkshares(&s, r, sec);
3d64a35c 299 for (i = 0; i < t; i++)
300 gfshare_get(&s, p[i], v + (i * len));
6c1035f5 301 gfshare_destroy(&s);
302
3d64a35c 303 gfshare_create(&s, t, len);
304 for (i = 0; i < t; i++)
305 gfshare_add(&s, p[i], v + (i * len));
6c1035f5 306 gfshare_combine(&s, sbuf);
307 gfshare_destroy(&s);
308
309 if (memcmp(sec, sbuf, len) != 0) {
310 ok = 0;
311 fprintf(stderr, "\nbad recombination of shares\n");
312 };
313
314 xfree(sec);
315 xfree(sbuf);
316
6c1035f5 317 xfree(v);
318 xfree(p);
319
320 return (ok);
321}
322
323int main(void)
324{
325 grand *r = fibrand_create(0);
326 unsigned i;
327 int ok = 1;
328
329 fputs("gfshare: ", stdout);
330 for (i = 0; i < 40; i++) {
331 if (!verify(r))
332 ok = 0;
333 fputc('.', stdout);
334 fflush(stdout);
335 }
336
337 if (ok)
338 fputs(" ok\n", stdout);
339 else
340 fputs(" failed\n", stdout);
341 return (ok ? EXIT_SUCCESS : EXIT_FAILURE);
342}
343
344#endif
345
346/*----- That's all, folks -------------------------------------------------*/