dcd8826c82950f2500ae915901e3044bff4faf82
[dragonfly.git] / contrib / opie / libopie / newseed.c
1 /* newseed.c: The opienewseed() library function.
2
3 %%% copyright-cmetz-96
4 This software is Copyright 1996-2001 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 3 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
8
9         History:
10
11         Modified by cmetz for OPIE 2.4. Greatly simplified increment. Now does
12                 not add digits. Reformatted the code.
13         Modified by cmetz for OPIE 2.32. Added syslog.h if DEBUG.
14         Modified by cmetz for OPIE 2.31. Added time.h.
15         Created by cmetz for OPIE 2.22.
16
17 $FreeBSD: src/contrib/opie/libopie/newseed.c,v 1.2.6.2 2002/07/15 14:48:47 des Exp $
18 */
19
20 #include "opie_cfg.h"
21 #ifndef HAVE_TIME_H
22 #define HAVE_TIME_H 1
23 #endif
24 #if HAVE_TIME_H
25 #include <time.h>
26 #endif /* HAVE_TIME_H */
27 #if HAVE_STRING_H
28 #include <string.h>
29 #endif /* HAVE_STRING_H */
30 #include <ctype.h>
31 #if HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif /* HAVE_UNISTD_H */
34 #if HAVE_SYS_UTSNAME_H
35 #include <sys/utsname.h>
36 #endif /* HAVE_SYS_UTSNAME_H */
37 #include <errno.h>
38 #if DEBUG
39 #include <syslog.h>
40 #endif /* DEBUG */
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include "opie.h"
44
45 int opienewseed FUNCTION((seed), char *seed)
46 {
47         if (!seed)
48                 return -1;
49
50         if (seed[0]) {
51                 char *c, *end;
52                 unsigned int i, max;
53                 size_t slen;
54
55                 if ((slen = strlen(seed)) > OPIE_SEED_MAX)
56                         slen = OPIE_SEED_MAX;
57
58                 for (c = end = seed + slen - 1, max = 1;
59                                 (c >= seed) && isdigit(*c); c--)
60                         max *= 10;
61
62                 /* c either points before seed or to an alpha, so skip */
63                 ++c;
64
65                 /* keep alphas, only look at numbers */
66                 slen -= c - seed;
67
68                 if ((i = strtoul(c, (char **)0, 10)) < max) {
69                         if (++i >= max)
70                                 i = 1;
71
72                         /*
73                          * If we roll over, we will have to generate a
74                          * seed which is at least as long as the previous one
75                          * was.  snprintf() will add a NUL character as well.
76                          */
77                         snprintf(c, slen + 1, "%0*d", slen, i);
78                         seed[OPIE_SEED_MAX] = 0;
79                         return 0;
80                 }
81         }
82
83         {
84                 time_t now;
85
86                 time(&now);
87                 srand(now);
88         }
89
90         {
91                 struct utsname utsname;
92
93                 if (uname(&utsname) < 0) {
94 #if DEBUG
95                         syslog(LOG_DEBUG, "uname: %s(%d)", strerror(errno),
96                                 errno);
97 #endif /* DEBUG */
98                         utsname.nodename[0] = 'k';
99                         utsname.nodename[1] = 'e';
100                 }
101                 utsname.nodename[2] = 0;
102
103                 if (snprintf(seed, OPIE_SEED_MAX+1, "%s%04d", utsname.nodename,
104                                 (rand() % 9999) + 1) >= OPIE_SEED_MAX+1)
105                         return -1;
106                 return 0;
107         }
108 }
109