X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fmagic.c;h=4797f0b19fd636f09c357b786b3378c002519ebd;hp=71647633d024a586dae624b4bfc59633693e2804;hb=dee72905271845128ad26cff5cf770c433f3f4a7;hpb=a3396b002507d72b3e1f1169bd02ae018539654b diff --git a/pppd/magic.c b/pppd/magic.c index 7164763..4797f0b 100644 --- a/pppd/magic.c +++ b/pppd/magic.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: magic.c,v 1.3 1994/09/21 06:47:37 paulus Exp $"; +static char rcsid[] = "$Id: magic.c,v 1.5 1995/06/06 01:52:25 paulus Exp $"; #endif #include @@ -30,41 +30,61 @@ static char rcsid[] = "$Id: magic.c,v 1.3 1994/09/21 06:47:37 paulus Exp $"; static u_int32_t next; /* Next value to return */ -extern u_int32_t gethostid __P((void)); -extern long random __P((void)); -extern void srandom __P((int)); +extern int gethostid __P((void)); +extern long mrand48 __P((void)); +extern void srand48 __P((long)); /* * magic_init - Initialize the magic number generator. * - * Computes first magic number and seed for random number generator. * Attempts to compute a random number seed which will not repeat. - * The current method uses the current hostid and current time. + * The current method uses the current hostid, current process ID + * and current time, currently. */ -void magic_init() +void +magic_init() { - struct timeval tv; + long seed; + struct timeval t; - next = gethostid(); - if (gettimeofday(&tv, NULL)) { - perror("gettimeofday"); - exit(1); - } - next ^= (u_int32_t) tv.tv_sec ^ (u_int32_t) tv.tv_usec; - - srandom((int) next); + gettimeofday(&t, NULL); + seed = gethostid() ^ t.tv_sec ^ t.tv_usec ^ getpid(); + srand48(seed); } - /* * magic - Returns the next magic number. */ -u_int32_t magic() +u_int32_t +magic() { - u_int32_t m; + return (u_int32_t) mrand48(); +} + +#ifdef NO_DRAND48 +/* + * Substitute procedures for those systems which don't have + * drand48 et al. + */ - m = next; - next = (u_int32_t) random(); - return (m); +double +drand48() +{ + return (double)random() / (double)0x7fffffffL; /* 2**31-1 */ } + +long +mrand48() +{ + return random(); +} + +void +srand48(seedval) +long seedval; +{ + srandom((int)seedval); +} + +#endif