2 * Copyright (c) 1999, 2000-2001 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
29 Contains: Core routines for the Counterpane Yarrow PRNG.
31 Written by: Counterpane, Inc.
33 Copyright: (c) 2000 by Apple Computer, Inc., all rights reserved.
35 Change History (most recent first):
37 02/10/99 dpm Created, based on Counterpane source.
43 Core routines for the Counterpane PRNG
45 #include "userdefines.h"
46 #include "assertverify.h"
47 #include "dev/random/YarrowCoreLib/include/yarrowUtils.h"
49 #if defined(macintosh) || defined(__APPLE__)
50 /* FIXME - this file needs to be in a platform-independent place */
53 #endif /* macintosh */
56 #include "entropysources.h"
58 #include "dev/random/YarrowCoreLib/include/yarrow.h"
63 #define _MAX(a,b) (((a)>(b))?(a):(b))
64 #define _MIN(a,b) (((a)<(b))?(a):(b))
66 #if defined(macintosh) || defined(__APPLE__)
68 * No mutexes in this module for Macintosh/OSX. We handle the
69 * required locking elsewhere.
71 #define MUTEX_ENABLE 0
73 #include <string.h> /* memcpy, etc. */
74 #if TARGET_API_MAC_OSX
75 #include <sys/time.h> /* for timespec */
76 #elif TARGET_API_MAC_CARBON
77 #include <Timer.h> /* Microseconds */
82 #error Unknown TARGET_API
83 #endif /* TARGET_API */
85 #define MUTEX_ENABLE 1
86 #endif /* macintosh */
89 static HANDLE Statmutex
= NULL
;
90 static DWORD mutexCreatorId
= 0;
94 #pragma mark * * * Static Utility functions * * *
96 /* All error checking should be done in the function that calls these */
99 * out := SHA1(IV | out)
102 prng_do_SHA1(GEN_CTX
*ctx
)
107 SHA1Update(&sha
,ctx
->IV
,20);
108 SHA1Update(&sha
,ctx
->out
,20);
109 SHA1Final(ctx
->out
,&sha
);
117 * Called from init, prngForceReseed(), and prngOutput()
118 * as anti-backtracking mechanism.
121 prng_make_new_state(GEN_CTX
*ctx
,BYTE
*newState
)
125 memcpy(ctx
->IV
,newState
,20);
127 SHA1Update(&sha
,ctx
->IV
,20);
128 SHA1Final(ctx
->out
,&sha
);
136 /* Initialize the secret state with a slow poll */
137 /* Currently only called from prngInitialize */
139 #define SPLEN 65536 /* 64K */
142 prng_slow_init(PRNG
*p
)
143 /* This fails silently and must be fixed. */
145 SHA1_CTX
* ctx
= NULL
;
146 MMPTR mmctx
= MM_NULL
;
148 MMPTR mmbigbuf
= MM_NULL
;
150 MMPTR mmbuf
= MM_NULL
;
153 mmbigbuf
= mmMalloc(SPLEN
);
154 if(mmbigbuf
== MM_NULL
) {goto cleanup_slow_init
;}
155 bigbuf
= (BYTE
*)mmGetPtr(mmbigbuf
);
157 mmbuf
= mmMalloc(20);
158 if(mmbuf
== MM_NULL
) {goto cleanup_slow_init
;}
159 buf
= (BYTE
*)mmGetPtr(mmbuf
);
161 mmctx
= mmMalloc(sizeof(SHA1_CTX
));
162 if(mmctx
== MM_NULL
) {goto cleanup_slow_init
;}
163 ctx
= (SHA1_CTX
*)mmGetPtr(mmctx
);
166 /* Initialize the secret state. */
167 /* Init entropy pool */
169 /* Init output generator */
170 polllength
= prng_slow_poll(bigbuf
,SPLEN
);
172 SHA1Update(ctx
,bigbuf
,polllength
);
174 prng_make_new_state(&p
->outstate
, buf
);
184 #endif /* SLOW_POLL_ENABLE */
186 /* In-place modifed bubble sort */
188 bubbleSort(UINT
*data
,UINT len
)
190 UINT i
,last
,newlast
,temp
;
198 if(data
[i
+1] > data
[i
])
211 #pragma mark * * * Public functions * * *
213 /* Set up the PRNG */
215 prngInitialize(PrngRef
*prng
)
218 comp_error_status resp
;
219 prng_error_status retval
= PRNG_ERR_LOW_MEMORY
;
226 /* Create the mutex */
227 /* NOTE: on return the mutex should bve held, since our caller (prngInitialize)
230 if(mutexCreatorId
!=0) {return PRNG_ERR_REINIT
;}
231 Statmutex
= CreateMutex(NULL
,TRUE
,NULL
);
232 if(Statmutex
== NULL
) {mutexCreatorId
= 0; return PRNG_ERR_MUTEX
;}
233 DuplicateHandle(GetCurrentProcess(),Statmutex
,GetCurrentProcess(),&mutex
,SYNCHRONIZE
,FALSE
,0);
234 mutexCreatorId
= GetCurrentProcessId();
235 #endif /* MUTEX_ENABLE */
238 mmp
= mmMalloc(sizeof(PRNG
));
245 p
= (PRNG
*)mmGetPtr(mmp
);
246 memset(p
, 0, sizeof(PRNG
));
249 /* Initialize Variables */
250 for(i
=0;i
<TOTAL_SOURCES
;i
++)
253 p
->poolEstBits
[i
] = 0;
257 /* Setup security on the registry so that remote users cannot predict the slow pool */
258 prng_set_NT_security();
261 /* Initialize the secret state. */
262 /* FIXME - might want to make this an option here and have the caller
263 * do it after we return....? */
266 prng_slow_init(p
); /* Does a slow poll and then calls prng_make_state(...) */
269 prng_do_SHA1(&p
->outstate
);
270 prng_make_new_state(&p
->outstate
, p
->outstate
.out
);
271 #endif /* SLOW_POLL_ENABLE */
273 /* Initialize compression routines */
274 for(i
=0;i
<COMP_SOURCES
;i
++)
276 resp
= comp_init((p
->comp_state
)+i
);
277 if(resp
!=COMP_SUCCESS
) {retval
= PRNG_ERR_COMPRESSION
; goto cleanup_init
;}
280 p
->ready
= PRNG_READY
;
286 /* Program failed on one of the mmmallocs */
291 CloseHandle(Statmutex
);
296 return retval
; /* default PRNG_ERR_LOW_MEMORY */
301 prngOutput(PRNG
*p
, BYTE
*outbuf
,UINT outbuflen
)
304 GEN_CTX
*ctx
= &p
->outstate
;
309 chASSERT(BACKTRACKLIMIT
> 0);
311 for(i
=0;i
<outbuflen
;i
++,ctx
->index
++,ctx
->numout
++)
313 /* Check backtracklimit */
314 if(ctx
->numout
> BACKTRACKLIMIT
)
317 prng_make_new_state(ctx
, ctx
->out
);
319 /* Check position in IV */
325 outbuf
[i
] = (ctx
->out
)[ctx
->index
];
332 /* Cause the PRNG to reseed now regardless of entropy pool */
333 /* Should this be public? */
335 prngForceReseed(PRNG
*p
, LONGLONG ticks
)
339 FILETIME a
,b
,c
,usertime
;
343 #if defined(macintosh) || defined(__APPLE__)
344 #if (defined(TARGET_API_MAC_OSX) || defined(KERNEL_BUILD))
346 int64_t endTime
, curTime
;
347 #else /* TARGET_API_MAC_CARBON */
348 UnsignedWide uwide
; /* struct needed for Microseconds() */
358 /* Set up start and end times */
359 #if defined(macintosh) || defined(__APPLE__)
360 #if (defined(TARGET_API_MAC_OSX) || defined(KERNEL_BUILD))
361 /* note we can't loop for more than a million microseconds */
365 gettimeofday(&tv
, NULL
);
367 endTime
= (int64_t)tv
.tv_sec
*1000000LL + (int64_t)tv
.tv_usec
+ ticks
;
368 #else /* TARGET_API_MAC_OSX */
369 Microseconds(&uwide
);
370 start
= UnsignedWideToUInt64(uwide
);
371 #endif /* TARGET_API_xxx */
372 #endif /* macintosh */
375 /* Do a couple of iterations between time checks */
376 prngOutput(p
, buf
,64);
377 SHA1Update(&p
->pool
,buf
,64);
378 prngOutput(p
, buf
,64);
379 SHA1Update(&p
->pool
,buf
,64);
380 prngOutput(p
, buf
,64);
381 SHA1Update(&p
->pool
,buf
,64);
382 prngOutput(p
, buf
,64);
383 SHA1Update(&p
->pool
,buf
,64);
384 prngOutput(p
, buf
,64);
385 SHA1Update(&p
->pool
,buf
,64);
387 #if defined(macintosh) || defined(__APPLE__)
388 #if defined(TARGET_API_MAC_OSX) || defined(KERNEL_BUILD)
389 #ifdef TARGET_API_MAC_OSX
390 gettimeofday(&tv
, NULL
);
393 curTime
= (int64_t)tv
.tv_sec
*1000000LL + (int64_t)tv
.tv_usec
;
395 } while(curTime
< endTime
);
397 Microseconds(&uwide
);
398 now
= UnsignedWideToUInt64(uwide
);
399 } while ( (now
-start
) < ticks
) ;
402 } while ( (now
-start
) < ticks
) ;
404 SHA1Final(dig
,&p
->pool
);
405 SHA1Update(&p
->pool
,dig
,20);
406 SHA1Final(dig
,&p
->pool
);
408 /* Reset secret state */
410 prng_make_new_state(&p
->outstate
,dig
);
412 /* Clear counter variables */
413 for(i
=0;i
<TOTAL_SOURCES
;i
++)
416 p
->poolEstBits
[i
] = 0;
420 trashMemory(dig
,20*sizeof(char));
421 trashMemory(buf
,64*sizeof(char));
427 /* Input a state into the PRNG */
429 prngProcessSeedBuffer(PRNG
*p
, BYTE
*buf
,LONGLONG ticks
)
435 /* Put the data into the entropy, add some data from the unknown state, reseed */
436 SHA1Update(&p
->pool
,buf
,20); /* Put it into the entropy pool */
437 prng_do_SHA1(&p
->outstate
); /* Output 20 more bytes and */
438 SHA1Update(&p
->pool
,p
->outstate
.out
,20);/* add it to the pool as well. */
439 prngForceReseed(p
, ticks
); /* Do a reseed */
440 return prngOutput(p
, buf
,20); /* Return the first 20 bytes of output in buf */
444 /* Take some "random" data and make more "random-looking" data from it */
445 /* note: this routine has no context, no mutex wrapper */
447 prngStretch(BYTE
*inbuf
,UINT inbuflen
,BYTE
*outbuf
,UINT outbuflen
) {
455 if(inbuflen
>= outbuflen
)
457 memcpy(outbuf
,inbuf
,outbuflen
);
460 else /* Extend using SHA1 hash of inbuf */
463 SHA1Update(&ctx
,inbuf
,inbuflen
);
465 for(prev
=0,left
=outbuflen
;left
>0;prev
+=20,left
-=20)
467 SHA1Update(&ctx
,dig
,20);
469 memcpy(outbuf
+prev
,dig
,(left
>20)?20:left
);
471 trashMemory(dig
,20*sizeof(BYTE
));
476 return PRNG_ERR_PROGRAM_FLOW
;
480 /* Add entropy to the PRNG from a source */
482 prngInput(PRNG
*p
, BYTE
*inbuf
,UINT inbuflen
,UINT poolnum
,UINT estbits
)
484 #ifndef YARROW_KERNEL
485 comp_error_status resp
;
491 if(poolnum
>= TOTAL_SOURCES
) {return PRNG_ERR_OUT_OF_BOUNDS
;}
493 /* Add to entropy pool */
494 SHA1Update(&p
->pool
,inbuf
,inbuflen
);
496 #ifndef YARROW_KERNEL
497 /* skip this step for the kernel */
499 /* Update pool size, pool user estimate and pool compression context */
500 p
->poolSize
[poolnum
] += inbuflen
;
501 p
->poolEstBits
[poolnum
] += estbits
;
502 if(poolnum
<COMP_SOURCES
)
504 resp
= comp_add_data((p
->comp_state
)+poolnum
,inbuf
,inbuflen
);
505 if(resp
!=COMP_SUCCESS
) {return PRNG_ERR_COMPRESSION
;}
507 #endif /* YARROW_KERNEL */
514 /* If we have enough entropy, allow a reseed of the system */
516 prngAllowReseed(PRNG
*p
, LONGLONG ticks
)
518 UINT temp
[TOTAL_SOURCES
];
524 comp_error_status resp
;
529 for(i
=0;i
<ENTROPY_SOURCES
;i
++)
531 /* Make sure that compression-based entropy estimates are current */
532 #ifndef KERNEL_BUILD // floating point in a kernel is BAD!
533 resp
= comp_get_ratio((p
->comp_state
)+i
,&ratio
);
534 if(resp
!=COMP_SUCCESS
) {return PRNG_ERR_COMPRESSION
;}
535 /* Use 4 instead of 8 to half compression estimate */
536 temp
[i
] = (int)(ratio
*p
->poolSize
[i
]*4);
538 temp
[i
] = p
->poolSize
[i
] * 4;
542 /* Use minumum of user and compression estimate for compressed sources */
543 for(i
=ENTROPY_SOURCES
;i
<COMP_SOURCES
;i
++)
546 /* Make sure that compression-based entropy estimates are current */
547 resp
= comp_get_ratio((p
->comp_state
)+i
,&ratio
);
548 if(resp
!=COMP_SUCCESS
) {return PRNG_ERR_COMPRESSION
;}
549 /* Use 4 instead of 8 to half compression estimate */
550 temp
[i
] = _MIN((int)(ratio
*p
->poolSize
[i
]*4),(int)p
->poolEstBits
[i
]);
552 temp
[i
] = _MIN (p
->poolSize
[i
] * 4, p
->poolEstBits
[i
]);
556 /* Use user estimate for remaining sources */
557 for(i
=COMP_SOURCES
;i
<TOTAL_SOURCES
;i
++) {temp
[i
] = p
->poolEstBits
[i
];}
560 /* pointless if we're not ignoring any sources */
561 bubbleSort(temp
,TOTAL_SOURCES
);
563 for(i
=K
,sum
=0;i
<TOTAL_SOURCES
;sum
+=temp
[i
++]); /* Stupid C trick */
565 return prngForceReseed(p
, ticks
);
567 return PRNG_ERR_NOT_ENOUGH_ENTROPY
;
569 return PRNG_ERR_PROGRAM_FLOW
;
573 /* Call a slow poll and insert the data into the entropy pool */
574 static prng_error_status
575 prngSlowPoll(PRNG
*p
, UINT pollsize
)
579 prng_error_status retval
;
583 buf
= (BYTE
*)malloc(pollsize
);
584 if(buf
==NULL
) {return PRNG_ERR_LOW_MEMORY
;}
585 len
= prng_slow_poll(buf
,pollsize
); /* OS specific call */
586 retval
= prngInput(p
, buf
,len
,SLOWPOLLSOURCE
, len
* 8);
587 trashMemory(buf
,pollsize
);
592 #endif /* SLOW_POLL_ENABLE */
595 /* Delete the PRNG */
602 if(GetCurrentProcessId()!=mutexCreatorId
) {return PRNG_ERR_WRONG_CALLER
;}
604 if(p
==NULL
) {return PRNG_SUCCESS
;} /* Well, there is nothing to destroy... */
606 p
->ready
= PRNG_NOT_READY
;
608 for(i
=0;i
<COMP_SOURCES
;i
++)
610 comp_end((p
->comp_state
)+i
);
614 CloseHandle(Statmutex
);