- Allocate buffer large enough to contain UNIX_PATH_MAX size pathnames in case of...
[oweals/gnunet.git] / src / util / crypto_random.c
1 /*
2      This file is part of GNUnet.  (C) 2001-2013 Christian Grothoff
3      (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19
20 */
21
22 /**
23  * @file util/crypto_random.c
24  * @brief functions to gather random numbers
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include <gcrypt.h>
30
31 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
32
33 #define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall)
34
35
36 /* TODO: ndurner, move this to plibc? */
37 /* The code is derived from glibc, obviously */
38 #if !HAVE_RANDOM || !HAVE_SRANDOM
39 #ifdef RANDOM
40 #undef RANDOM
41 #endif
42 #ifdef SRANDOM
43 #undef SRANDOM
44 #endif
45 #define RANDOM() glibc_weak_rand32()
46 #define SRANDOM(s) glibc_weak_srand32(s)
47 #if defined(RAND_MAX)
48 #undef RAND_MAX
49 #endif
50 #define RAND_MAX 0x7fffffff /* Hopefully this is correct */
51
52
53 static int32_t glibc_weak_rand32_state = 1;
54
55
56 void
57 glibc_weak_srand32 (int32_t s)
58 {
59   glibc_weak_rand32_state = s;
60 }
61
62
63 int32_t
64 glibc_weak_rand32 ()
65 {
66   int32_t val = glibc_weak_rand32_state;
67
68   val = ((glibc_weak_rand32_state * 1103515245) + 12345) & 0x7fffffff;
69   glibc_weak_rand32_state = val;
70   return val;
71 }
72 #endif
73
74 /**
75  * Create a cryptographically weak pseudo-random number in the interval of 0 to 1.
76  *
77  * @return number between 0 and 1.
78  */
79 static double
80 get_weak_random ()
81 {
82   return ((double) RANDOM () / RAND_MAX);
83 }
84
85
86 /**
87  * Seed a weak random generator. Only GNUNET_CRYPTO_QUALITY_WEAK-mode generator
88  * can be seeded.
89  *
90  * @param seed the seed to use
91  */
92 void
93 GNUNET_CRYPTO_seed_weak_random (int32_t seed)
94 {
95   SRANDOM (seed);
96 }
97
98
99 /**
100  * @ingroup crypto
101  * Fill block with a random values.
102  *
103  * @param mode desired quality of the random number
104  * @param buffer the buffer to fill
105  * @param length buffer length
106  */
107 void
108 GNUNET_CRYPTO_random_block (enum GNUNET_CRYPTO_Quality mode, void *buffer, size_t length)
109 {
110 #ifdef gcry_fast_random_poll
111   static unsigned int invokeCount;
112 #endif
113   switch (mode)
114   {
115   case GNUNET_CRYPTO_QUALITY_STRONG:
116     /* see http://lists.gnupg.org/pipermail/gcrypt-devel/2004-May/000613.html */
117 #ifdef gcry_fast_random_poll
118     if ((invokeCount++ % 256) == 0)
119       gcry_fast_random_poll ();
120 #endif
121     gcry_randomize (buffer, length, GCRY_STRONG_RANDOM);
122     return;
123   case GNUNET_CRYPTO_QUALITY_NONCE:
124     gcry_create_nonce (buffer, length);
125     return;
126   case GNUNET_CRYPTO_QUALITY_WEAK:
127     /* see http://lists.gnupg.org/pipermail/gcrypt-devel/2004-May/000613.html */
128 #ifdef gcry_fast_random_poll
129     if ((invokeCount++ % 256) == 0)
130       gcry_fast_random_poll ();
131 #endif
132     gcry_randomize (buffer, length, GCRY_WEAK_RANDOM);
133     return;
134   default:
135     GNUNET_assert (0);
136   }
137 }
138
139
140 /**
141  * Produce a random value.
142  *
143  * @param mode desired quality of the random number
144  * @param i the upper limit (exclusive) for the random number
145  * @return a random value in the interval [0,i[.
146  */
147 uint32_t
148 GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode, uint32_t i)
149 {
150 #ifdef gcry_fast_random_poll
151   static unsigned int invokeCount;
152 #endif
153   uint32_t ret;
154   uint32_t ul;
155
156   GNUNET_assert (i > 0);
157
158   switch (mode)
159   {
160   case GNUNET_CRYPTO_QUALITY_STRONG:
161     /* see http://lists.gnupg.org/pipermail/gcrypt-devel/2004-May/000613.html */
162 #ifdef gcry_fast_random_poll
163     if ((invokeCount++ % 256) == 0)
164       gcry_fast_random_poll ();
165 #endif
166     ul = UINT32_MAX - (UINT32_MAX % i);
167     do
168     {
169       gcry_randomize ((unsigned char *) &ret, sizeof (uint32_t),
170                       GCRY_STRONG_RANDOM);
171     }
172     while (ret >= ul);
173     return ret % i;
174   case GNUNET_CRYPTO_QUALITY_NONCE:
175     ul = UINT32_MAX - (UINT32_MAX % i);
176     do
177     {
178       gcry_create_nonce (&ret, sizeof (ret));
179     }
180     while (ret >= ul);
181     return ret % i;
182   case GNUNET_CRYPTO_QUALITY_WEAK:
183     ret = i * get_weak_random ();
184     if (ret >= i)
185       ret = i - 1;
186     return ret;
187   default:
188     GNUNET_assert (0);
189   }
190   return 0;
191 }
192
193
194 /**
195  * Get an array with a random permutation of the
196  * numbers 0...n-1.
197  * @param mode GNUNET_RANDOM_QUALITY_STRONG if the strong (but expensive)
198  *        PRNG should be used, GNUNET_RANDOM_QUALITY_WEAK otherwise
199  * @param n the size of the array
200  * @return the permutation array (allocated from heap)
201  */
202 unsigned int *
203 GNUNET_CRYPTO_random_permute (enum GNUNET_CRYPTO_Quality mode, unsigned int n)
204 {
205   unsigned int *ret;
206   unsigned int i;
207   unsigned int tmp;
208   uint32_t x;
209
210   GNUNET_assert (n > 0);
211   ret = GNUNET_malloc (n * sizeof (unsigned int));
212   for (i = 0; i < n; i++)
213     ret[i] = i;
214   for (i = n - 1; i > 0; i--)
215   {
216     x = GNUNET_CRYPTO_random_u32 (mode, i + 1);
217     tmp = ret[x];
218     ret[x] = ret[i];
219     ret[i] = tmp;
220   }
221   return ret;
222 }
223
224
225 /**
226  * Random on unsigned 64-bit values.
227  *
228  *
229  * @param mode desired quality of the random number
230  * @param max value returned will be in range [0,max) (exclusive)
231  * @return random 64-bit number
232  */
233 uint64_t
234 GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode, uint64_t max)
235 {
236   uint64_t ret;
237   uint64_t ul;
238
239   GNUNET_assert (max > 0);
240   switch (mode)
241   {
242   case GNUNET_CRYPTO_QUALITY_STRONG:
243     ul = UINT64_MAX - (UINT64_MAX % max);
244     do
245     {
246       gcry_randomize ((unsigned char *) &ret, sizeof (uint64_t),
247                       GCRY_STRONG_RANDOM);
248     }
249     while (ret >= ul);
250     return ret % max;
251   case GNUNET_CRYPTO_QUALITY_NONCE:
252     ul = UINT64_MAX - (UINT64_MAX % max);
253     do
254     {
255       gcry_create_nonce (&ret, sizeof (ret));
256     }
257     while (ret >= ul);
258
259     return ret % max;
260   case GNUNET_CRYPTO_QUALITY_WEAK:
261     ret = max * get_weak_random ();
262     if (ret >= max)
263       ret = max - 1;
264     return ret;
265   default:
266     GNUNET_assert (0);
267   }
268   return 0;
269 }
270
271
272 void __attribute__ ((constructor))
273 GNUNET_CRYPTO_random_init ()
274 {
275   gcry_error_t rc;
276
277   if (! gcry_check_version (NEED_LIBGCRYPT_VERSION))
278   {
279     FPRINTF (stderr,
280              _("libgcrypt has not the expected version (version %s is required).\n"),
281              NEED_LIBGCRYPT_VERSION);
282     GNUNET_abort ();
283   }
284   if ((rc = gcry_control (GCRYCTL_DISABLE_SECMEM, 0)))
285     FPRINTF (stderr,
286              "Failed to set libgcrypt option %s: %s\n",
287              "DISABLE_SECMEM",
288              gcry_strerror (rc));
289   /* Otherwise gnunet-ecc takes forever to complete, besides
290      we are fine with "just" using GCRY_STRONG_RANDOM */
291   if ((rc = gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0)))
292     FPRINTF (stderr,
293              "Failed to set libgcrypt option %s: %s\n",
294              "ENABLE_QUICK_RANDOM",
295              gcry_strerror (rc));
296   gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
297   gcry_fast_random_poll ();
298   GNUNET_CRYPTO_seed_weak_random (time (NULL) ^
299                                   GNUNET_CRYPTO_random_u32
300                                   (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX));
301 }
302
303
304 void __attribute__ ((destructor))
305 GNUNET_CRYPTO_random_fini ()
306 {
307   gcry_set_progress_handler (NULL, NULL);
308   (void) gcry_control (GCRYCTL_CLOSE_RANDOM_DEVICE, 0);
309 }
310
311
312
313 /* end of crypto_random.c */