5 * Copyright (c) 2005 Marko Kreen
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $PostgreSQL: pgsql/contrib/pgcrypto/fortuna.c,v 1.8 2006/10/04 00:29:46 momjian Exp $
36 __RCSID("$Heimdal: rand-fortuna.c 21196 2007-06-20 05:08:58Z lha $"
50 * Why Fortuna-like: There does not seem to be any definitive reference
51 * on Fortuna in the net. Instead this implementation is based on
52 * following references:
54 * http://en.wikipedia.org/wiki/Fortuna_(PRNG)
56 * http://jlcooke.ca/random/
57 * - Jean-Luc Cooke Fortuna-based /dev/random driver for Linux.
61 * There is some confusion about whether and how to carry forward
62 * the state of the pools. Seems like original Fortuna does not
63 * do it, resetting hash after each request. I guess expecting
64 * feeding to happen more often that requesting. This is absolutely
65 * unsuitable for pgcrypto, as nothing asynchronous happens here.
67 * J.L. Cooke fixed this by feeding previous hash to new re-initialized
70 * Fortuna predecessor Yarrow requires ability to query intermediate
71 * 'final result' from hash, without affecting it.
73 * This implementation uses the Yarrow method - asking intermediate
74 * results, but continuing with old state.
79 * Algorithm parameters
85 #define RESEED_INTERVAL 100000 /* 0.1 sec */
87 /* for one big request, reseed after this many bytes */
88 #define RESEED_BYTES (1024*1024)
91 * Skip reseed if pool 0 has less than this many
92 * bytes added since last reseed.
94 #define POOL0_FILL (256/8)
100 /* Both cipher key size and hash result size */
103 /* cipher block size */
104 #define CIPH_BLOCK 16
106 /* for internal wrappers */
107 #define MD_CTX SHA256_CTX
108 #define CIPH_CTX AES_KEY
112 unsigned char counter
[CIPH_BLOCK
];
113 unsigned char result
[CIPH_BLOCK
];
114 unsigned char key
[BLOCK
];
115 MD_CTX pool
[NUM_POOLS
];
117 unsigned reseed_count
;
118 struct timeval last_reseed_time
;
119 unsigned pool0_bytes
;
123 typedef struct fortuna_state FState
;
127 * Use our own wrappers here.
128 * - Need to get intermediate result from digest, without affecting it.
129 * - Need re-set key on a cipher context.
130 * - Algorithms are guaranteed to exist.
131 * - No memory allocations.
135 ciph_init(CIPH_CTX
* ctx
, const unsigned char *key
, int klen
)
137 AES_set_encrypt_key(key
, klen
* 8, ctx
);
141 ciph_encrypt(CIPH_CTX
* ctx
, const unsigned char *in
, unsigned char *out
)
143 AES_encrypt(in
, out
, ctx
);
147 md_init(MD_CTX
* ctx
)
153 md_update(MD_CTX
* ctx
, const unsigned char *data
, int len
)
155 SHA256_Update(ctx
, data
, len
);
159 md_result(MD_CTX
* ctx
, unsigned char *dst
)
163 memcpy(&tmp
, ctx
, sizeof(*ctx
));
164 SHA256_Final(dst
, &tmp
);
165 memset(&tmp
, 0, sizeof(tmp
));
172 init_state(FState
* st
)
176 memset(st
, 0, sizeof(*st
));
177 for (i
= 0; i
< NUM_POOLS
; i
++)
178 md_init(&st
->pool
[i
]);
182 * Endianess does not matter.
183 * It just needs to change without repeating.
186 inc_counter(FState
* st
)
188 uint32_t *val
= (uint32_t *) st
->counter
;
200 * This is called 'cipher in counter mode'.
203 encrypt_counter(FState
* st
, unsigned char *dst
)
205 ciph_encrypt(&st
->ciph
, st
->counter
, dst
);
211 * The time between reseed must be at least RESEED_INTERVAL
215 enough_time_passed(FState
* st
)
219 struct timeval
*last
= &st
->last_reseed_time
;
221 gettimeofday(&tv
, NULL
);
223 /* check how much time has passed */
225 if (tv
.tv_sec
> last
->tv_sec
+ 1)
227 else if (tv
.tv_sec
== last
->tv_sec
+ 1)
229 if (1000000 + tv
.tv_usec
- last
->tv_usec
>= RESEED_INTERVAL
)
232 else if (tv
.tv_usec
- last
->tv_usec
>= RESEED_INTERVAL
)
235 /* reseed will happen, update last_reseed_time */
237 memcpy(last
, &tv
, sizeof(tv
));
239 memset(&tv
, 0, sizeof(tv
));
245 * generate new key from all the pools
253 unsigned char buf
[BLOCK
];
255 /* set pool as empty */
259 * Both #0 and #1 reseed would use only pool 0. Just skip #0 then.
261 n
= ++st
->reseed_count
;
264 * The goal: use k-th pool only 1/(2^k) of the time.
267 for (k
= 0; k
< NUM_POOLS
; k
++)
269 md_result(&st
->pool
[k
], buf
);
270 md_update(&key_md
, buf
, BLOCK
);
277 /* add old key into mix too */
278 md_update(&key_md
, st
->key
, BLOCK
);
280 /* now we have new key */
281 md_result(&key_md
, st
->key
);
284 ciph_init(&st
->ciph
, st
->key
, BLOCK
);
286 memset(&key_md
, 0, sizeof(key_md
));
287 memset(buf
, 0, BLOCK
);
291 * Pick a random pool. This uses key bytes as random source.
294 get_rand_pool(FState
* st
)
299 * This slightly prefers lower pools - thats OK.
301 rnd
= st
->key
[st
->rnd_pos
] % NUM_POOLS
;
304 if (st
->rnd_pos
>= BLOCK
)
314 add_entropy(FState
* st
, const unsigned char *data
, unsigned len
)
317 unsigned char hash
[BLOCK
];
320 /* hash given data */
322 md_update(&md
, data
, len
);
323 md_result(&md
, hash
);
326 * Make sure the pool 0 is initialized, then update randomly.
328 if (st
->reseed_count
== 0)
331 pos
= get_rand_pool(st
);
332 md_update(&st
->pool
[pos
], hash
, BLOCK
);
335 st
->pool0_bytes
+= len
;
337 memset(hash
, 0, BLOCK
);
338 memset(&md
, 0, sizeof(md
));
342 * Just take 2 next blocks as new key
347 encrypt_counter(st
, st
->key
);
348 encrypt_counter(st
, st
->key
+ CIPH_BLOCK
);
349 ciph_init(&st
->ciph
, st
->key
, BLOCK
);
353 * Hide public constants. (counter, pools > 0)
355 * This can also be viewed as spreading the startup
356 * entropy over all of the components.
359 startup_tricks(FState
* st
)
362 unsigned char buf
[BLOCK
];
364 /* Use next block as counter. */
365 encrypt_counter(st
, st
->counter
);
367 /* Now shuffle pools, excluding #0 */
368 for (i
= 1; i
< NUM_POOLS
; i
++)
370 encrypt_counter(st
, buf
);
371 encrypt_counter(st
, buf
+ CIPH_BLOCK
);
372 md_update(&st
->pool
[i
], buf
, BLOCK
);
374 memset(buf
, 0, BLOCK
);
379 /* This can be done only once. */
384 extract_data(FState
* st
, unsigned count
, unsigned char *dst
)
387 unsigned block_nr
= 0;
389 /* Should we reseed? */
390 if (st
->pool0_bytes
>= POOL0_FILL
|| st
->reseed_count
== 0)
391 if (enough_time_passed(st
))
394 /* Do some randomization on first call */
395 if (!st
->tricks_done
)
401 encrypt_counter(st
, st
->result
);
404 if (count
> CIPH_BLOCK
)
408 memcpy(dst
, st
->result
, n
);
412 /* must not give out too many bytes with one key */
414 if (block_nr
> (RESEED_BYTES
/ CIPH_BLOCK
))
420 /* Set new key for next request. */
428 static FState main_state
;
429 static int init_done
;
430 static int have_entropy
;
431 #define FORTUNA_RESEED_BYTE 10000
432 static unsigned resend_bytes
;
435 * Try our best to do an inital seed
437 #define INIT_BYTES 128
448 unsigned char buf
[INIT_BYTES
];
449 if ((*hc_rand_unix_method
.bytes
)(buf
, sizeof(buf
)) == 1) {
450 add_entropy(&main_state
, buf
, sizeof(buf
));
452 memset(buf
, 0, sizeof(buf
));
455 #ifdef HAVE_ARC4RANDOM
457 uint32_t buf
[INIT_BYTES
/ sizeof(uint32_t)];
460 for (i
= 0; i
< sizeof(buf
)/sizeof(buf
[0]); i
++)
461 buf
[i
] = arc4random();
462 add_entropy(&main_state
, (void *)buf
, sizeof(buf
));
467 * Only to get egd entropy if /dev/random or arc4rand failed since
468 * it can be horribly slow to generate new bits.
471 unsigned char buf
[INIT_BYTES
];
472 if ((*hc_rand_egd_method
.bytes
)(buf
, sizeof(buf
)) == 1) {
473 add_entropy(&main_state
, buf
, sizeof(buf
));
475 memset(buf
, 0, sizeof(buf
));
479 * Fall back to gattering data from timer and secret files, this
480 * is really the last resort.
483 /* to save stackspace */
485 unsigned char buf
[INIT_BYTES
];
486 unsigned char shad
[1001];
491 if ((*hc_rand_timer_method
.bytes
)(u
.buf
, sizeof(u
.buf
)) == 1)
492 add_entropy(&main_state
, u
.buf
, sizeof(u
.buf
));
493 /* add /etc/shadow */
494 fd
= open("/etc/shadow", O_RDONLY
, 0);
497 /* add_entropy will hash the buf */
498 while ((n
= read(fd
, (char *)u
.shad
, sizeof(u
.shad
))) > 0)
499 add_entropy(&main_state
, u
.shad
, sizeof(u
.shad
));
503 memset(&u
, 0, sizeof(u
));
505 entropy_p
= 1; /* sure about this ? */
508 pid_t pid
= getpid();
509 add_entropy(&main_state
, (void *)&pid
, sizeof(pid
));
513 gettimeofday(&tv
, NULL
);
514 add_entropy(&main_state
, (void *)&tv
, sizeof(tv
));
518 add_entropy(&main_state
, (void *)&u
, sizeof(u
));
528 init_state(&main_state
);
532 have_entropy
= fortuna_reseed();
533 return (init_done
&& have_entropy
);
539 fortuna_seed(const void *indata
, int size
)
542 add_entropy(&main_state
, indata
, size
);
543 if (size
>= INIT_BYTES
)
548 fortuna_bytes(unsigned char *outdata
, int size
)
552 resend_bytes
+= size
;
553 if (resend_bytes
> FORTUNA_RESEED_BYTE
|| resend_bytes
< size
) {
557 extract_data(&main_state
, size
, outdata
);
562 fortuna_cleanup(void)
566 memset(&main_state
, 0, sizeof(main_state
));
570 fortuna_add(const void *indata
, int size
, double entropi
)
572 fortuna_seed(indata
, size
);
576 fortuna_pseudorand(unsigned char *outdata
, int size
)
578 return fortuna_bytes(outdata
, size
);
584 return fortuna_init() ? 1 : 0;
587 const RAND_METHOD hc_rand_fortuna_method
= {
597 RAND_fortuna_method(void)
599 return &hc_rand_fortuna_method
;