-rename files/symbols from _aes to _symmetric
[oweals/gnunet.git] / src / util / crypto_hash.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001-2013 Christian Grothoff (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_hash.c
24  * @brief SHA-512 GNUNET_CRYPTO_hash related functions
25  * @author Christian Grothoff
26  */
27
28 #include "platform.h"
29 #include "gnunet_common.h"
30 #include "gnunet_crypto_lib.h"
31 #include "gnunet_disk_lib.h"
32 #include "gnunet_strings_lib.h"
33 #include <gcrypt.h>
34
35 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
36
37 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
38
39 /**
40  * Hash block of given size.
41  *
42  * @param block the data to GNUNET_CRYPTO_hash, length is given as a second argument
43  * @param size the length of the data to GNUNET_CRYPTO_hash
44  * @param ret pointer to where to write the hashcode
45  */
46 void
47 GNUNET_CRYPTO_hash (const void *block, size_t size, struct GNUNET_HashCode * ret)
48 {
49   gcry_md_hash_buffer (GCRY_MD_SHA512, ret, block, size);
50 }
51
52
53 /**
54  * Context used when hashing a file.
55  */
56 struct GNUNET_CRYPTO_FileHashContext
57 {
58
59   /**
60    * Function to call upon completion.
61    */
62   GNUNET_CRYPTO_HashCompletedCallback callback;
63
64   /**
65    * Closure for callback.
66    */
67   void *callback_cls;
68
69   /**
70    * IO buffer.
71    */
72   unsigned char *buffer;
73
74   /**
75    * Name of the file we are hashing.
76    */
77   char *filename;
78
79   /**
80    * File descriptor.
81    */
82   struct GNUNET_DISK_FileHandle *fh;
83
84   /**
85    * Cummulated hash.
86    */
87   gcry_md_hd_t md;
88
89   /**
90    * Size of the file.
91    */
92   uint64_t fsize;
93
94   /**
95    * Current offset.
96    */
97   uint64_t offset;
98
99   /**
100    * Current task for hashing.
101    */
102   GNUNET_SCHEDULER_TaskIdentifier task;
103
104   /**
105    * Priority we use.
106    */
107   enum GNUNET_SCHEDULER_Priority priority;
108
109   /**
110    * Blocksize.
111    */
112   size_t bsize;
113
114 };
115
116
117 /**
118  * Report result of hash computation to callback
119  * and free associated resources.
120  */
121 static void
122 file_hash_finish (struct GNUNET_CRYPTO_FileHashContext *fhc,
123                   const struct GNUNET_HashCode * res)
124 {
125   fhc->callback (fhc->callback_cls, res);
126   GNUNET_free (fhc->filename);
127   if (!GNUNET_DISK_handle_invalid (fhc->fh))
128     GNUNET_break (GNUNET_OK == GNUNET_DISK_file_close (fhc->fh));
129   gcry_md_close (fhc->md);
130   GNUNET_free (fhc);            /* also frees fhc->buffer */
131 }
132
133
134 /**
135  * File hashing task.
136  *
137  * @param cls closure
138  * @param tc context
139  */
140 static void
141 file_hash_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
142 {
143   struct GNUNET_CRYPTO_FileHashContext *fhc = cls;
144   struct GNUNET_HashCode *res;
145   size_t delta;
146
147   fhc->task = GNUNET_SCHEDULER_NO_TASK;
148   GNUNET_assert (fhc->offset <= fhc->fsize);
149   delta = fhc->bsize;
150   if (fhc->fsize - fhc->offset < delta)
151     delta = fhc->fsize - fhc->offset;
152   if (delta != GNUNET_DISK_file_read (fhc->fh, fhc->buffer, delta))
153   {
154     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "read", fhc->filename);
155     file_hash_finish (fhc, NULL);
156     return;
157   }
158   gcry_md_write (fhc->md, fhc->buffer, delta);
159   fhc->offset += delta;
160   if (fhc->offset == fhc->fsize)
161   {
162     res = (struct GNUNET_HashCode *) gcry_md_read (fhc->md, GCRY_MD_SHA512);
163     file_hash_finish (fhc, res);
164     return;
165   }
166   fhc->task = GNUNET_SCHEDULER_add_with_priority (fhc->priority,
167                                                   &file_hash_task, fhc);
168 }
169
170
171 /**
172  * Compute the hash of an entire file.
173  *
174  * @param priority scheduling priority to use
175  * @param filename name of file to hash
176  * @param blocksize number of bytes to process in one task
177  * @param callback function to call upon completion
178  * @param callback_cls closure for callback
179  * @return NULL on (immediate) errror
180  */
181 struct GNUNET_CRYPTO_FileHashContext *
182 GNUNET_CRYPTO_hash_file (enum GNUNET_SCHEDULER_Priority priority,
183                          const char *filename, size_t blocksize,
184                          GNUNET_CRYPTO_HashCompletedCallback callback,
185                          void *callback_cls)
186 {
187   struct GNUNET_CRYPTO_FileHashContext *fhc;
188
189   GNUNET_assert (blocksize > 0);
190   fhc =
191       GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_FileHashContext) + blocksize);
192   fhc->callback = callback;
193   fhc->callback_cls = callback_cls;
194   fhc->buffer = (unsigned char *) &fhc[1];
195   fhc->filename = GNUNET_strdup (filename);
196   if (GPG_ERR_NO_ERROR != gcry_md_open (&fhc->md, GCRY_MD_SHA512, 0))
197   {
198     GNUNET_break (0);
199     GNUNET_free (fhc);
200     return NULL;
201   }
202   fhc->bsize = blocksize;
203   if (GNUNET_OK != GNUNET_DISK_file_size (filename, &fhc->fsize, GNUNET_NO, GNUNET_YES))
204   {
205     GNUNET_free (fhc->filename);
206     GNUNET_free (fhc);
207     return NULL;
208   }
209   fhc->fh =
210       GNUNET_DISK_file_open (filename, GNUNET_DISK_OPEN_READ,
211                              GNUNET_DISK_PERM_NONE);
212   if (!fhc->fh)
213   {
214     GNUNET_free (fhc->filename);
215     GNUNET_free (fhc);
216     return NULL;
217   }
218   fhc->priority = priority;
219   fhc->task =
220       GNUNET_SCHEDULER_add_with_priority (priority, &file_hash_task, fhc);
221   return fhc;
222 }
223
224
225 /**
226  * Cancel a file hashing operation.
227  *
228  * @param fhc operation to cancel (callback must not yet have been invoked)
229  */
230 void
231 GNUNET_CRYPTO_hash_file_cancel (struct GNUNET_CRYPTO_FileHashContext *fhc)
232 {
233   GNUNET_SCHEDULER_cancel (fhc->task);
234   GNUNET_free (fhc->filename);
235   GNUNET_break (GNUNET_OK == GNUNET_DISK_file_close (fhc->fh));
236   GNUNET_free (fhc);
237 }
238
239
240 /* ***************** binary-ASCII encoding *************** */
241
242
243 /**
244  * Convert GNUNET_CRYPTO_hash to ASCII encoding.  The ASCII encoding is rather
245  * GNUnet specific.  It was chosen such that it only uses characters
246  * in [0-9A-V], can be produced without complex arithmetics and uses a
247  * small number of characters.  The GNUnet encoding uses 103
248  * characters plus a null terminator.
249  *
250  * @param block the hash code
251  * @param result where to store the encoding (struct GNUNET_CRYPTO_HashAsciiEncoded can be
252  *  safely cast to char*, a '\\0' termination is set).
253  */
254 void
255 GNUNET_CRYPTO_hash_to_enc (const struct GNUNET_HashCode *block,
256                            struct GNUNET_CRYPTO_HashAsciiEncoded *result)
257 {
258   char *np;
259
260   np = GNUNET_STRINGS_data_to_string ((const unsigned char *) block,
261                                       sizeof (struct GNUNET_HashCode),
262                                       (char*) result,
263                                       sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1);
264   GNUNET_assert (NULL != np);
265   *np = '\0';
266 }
267
268
269 /**
270  * Convert ASCII encoding back to hash code.
271  *
272  * @param enc the encoding
273  * @param enclen number of characters in @a enc (without 0-terminator, which can be missing)
274  * @param result where to store the hash code
275  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
276  */
277 int
278 GNUNET_CRYPTO_hash_from_string2 (const char *enc,
279                                  size_t enclen,
280                                 struct GNUNET_HashCode *result)
281 {
282   char upper_enc[enclen];
283   char* up_ptr = upper_enc;
284
285   GNUNET_STRINGS_utf8_toupper(enc, &up_ptr);
286
287   return GNUNET_STRINGS_string_to_data (upper_enc, enclen,
288                                         (unsigned char*) result,
289                                         sizeof (struct GNUNET_HashCode));
290 }
291
292
293 /**
294  * @ingroup hash
295  * 
296  * Compute the distance between 2 hashcodes.  The computation must be
297  * fast, not involve bits[0] or bits[4] (they're used elsewhere), and be
298  * somewhat consistent. And of course, the result should be a positive
299  * number.
300  *
301  * @param a some hash code
302  * @param b some hash code
303  * @return a positive number which is a measure for
304  *  hashcode proximity.
305  */
306 unsigned int
307 GNUNET_CRYPTO_hash_distance_u32 (const struct GNUNET_HashCode *a,
308                                  const struct GNUNET_HashCode *b)
309 {
310   unsigned int x1 = (a->bits[1] - b->bits[1]) >> 16;
311   unsigned int x2 = (b->bits[1] - a->bits[1]) >> 16;
312
313   return (x1 * x2);
314 }
315
316
317 /**
318  * Create a random hash code.
319  *
320  * @param mode desired quality level
321  * @param result hash code that is randomized
322  */
323 void
324 GNUNET_CRYPTO_hash_create_random (enum GNUNET_CRYPTO_Quality mode,
325                                   struct GNUNET_HashCode *result)
326 {
327   int i;
328
329   for (i = (sizeof (struct GNUNET_HashCode) / sizeof (uint32_t)) - 1; i >= 0; i--)
330     result->bits[i] = GNUNET_CRYPTO_random_u32 (mode, UINT32_MAX);
331 }
332
333
334 /**
335  * compute result(delta) = b - a
336  *
337  * @param a some hash code
338  * @param b some hash code
339  * @param result set to b - a
340  */
341 void
342 GNUNET_CRYPTO_hash_difference (const struct GNUNET_HashCode *a,
343                                const struct GNUNET_HashCode *b,
344                                struct GNUNET_HashCode *result)
345 {
346   int i;
347
348   for (i = (sizeof (struct GNUNET_HashCode) / sizeof (unsigned int)) - 1; i >= 0; i--)
349     result->bits[i] = b->bits[i] - a->bits[i];
350 }
351
352
353 /**
354  * compute result(b) = a + delta
355  *
356  * @param a some hash code
357  * @param delta some hash code
358  * @param result set to a + delta
359  */
360 void
361 GNUNET_CRYPTO_hash_sum (const struct GNUNET_HashCode * a,
362                         const struct GNUNET_HashCode * delta, struct GNUNET_HashCode * result)
363 {
364   int i;
365
366   for (i = (sizeof (struct GNUNET_HashCode) / sizeof (unsigned int)) - 1; i >= 0; i--)
367     result->bits[i] = delta->bits[i] + a->bits[i];
368 }
369
370
371 /**
372  * compute result = a ^ b
373  *
374  * @param a some hash code
375  * @param b some hash code
376  * @param result set to a ^ b
377  */
378 void
379 GNUNET_CRYPTO_hash_xor (const struct GNUNET_HashCode * a, const struct GNUNET_HashCode * b,
380                         struct GNUNET_HashCode * result)
381 {
382   int i;
383
384   for (i = (sizeof (struct GNUNET_HashCode) / sizeof (unsigned int)) - 1; i >= 0; i--)
385     result->bits[i] = a->bits[i] ^ b->bits[i];
386 }
387
388
389 /**
390  * Convert a hashcode into a key.
391  *
392  * @param hc hash code that serves to generate the key
393  * @param skey set to a valid session key
394  * @param iv set to a valid initialization vector
395  */
396 void
397 GNUNET_CRYPTO_hash_to_aes_key (const struct GNUNET_HashCode *hc,
398                                struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
399                                struct GNUNET_CRYPTO_SymmetricInitializationVector *iv)
400 {
401   GNUNET_assert (GNUNET_YES ==
402                  GNUNET_CRYPTO_kdf (skey, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
403                                     "Hash key derivation", strlen ("Hash key derivation"),
404                                     hc, sizeof (struct GNUNET_HashCode),
405                                     NULL, 0));
406   GNUNET_assert (GNUNET_YES ==
407                  GNUNET_CRYPTO_kdf (iv, sizeof (struct GNUNET_CRYPTO_SymmetricInitializationVector),
408                                     "Initialization vector derivation", strlen ("Initialization vector derivation"),
409                                     hc, sizeof (struct GNUNET_HashCode),
410                                     NULL, 0));
411 }
412
413
414 /**
415  * Obtain a bit from a hashcode.
416  * @param code the GNUNET_CRYPTO_hash to index bit-wise
417  * @param bit index into the hashcode, [0...511]
418  * @return Bit \a bit from hashcode \a code, -1 for invalid index
419  */
420 int
421 GNUNET_CRYPTO_hash_get_bit (const struct GNUNET_HashCode * code, unsigned int bit)
422 {
423   GNUNET_assert (bit < 8 * sizeof (struct GNUNET_HashCode));
424   return (((unsigned char *) code)[bit >> 3] & (1 << (bit & 7))) > 0;
425 }
426
427
428 /**
429  * Determine how many low order bits match in two
430  * `struct GNUNET_HashCode`s.  i.e. - 010011 and 011111 share
431  * the first two lowest order bits, and therefore the
432  * return value is two (NOT XOR distance, nor how many
433  * bits match absolutely!).
434  *
435  * @param first the first hashcode
436  * @param second the hashcode to compare first to
437  *
438  * @return the number of bits that match
439  */
440 unsigned int
441 GNUNET_CRYPTO_hash_matching_bits (const struct GNUNET_HashCode * first,
442                                   const struct GNUNET_HashCode * second)
443 {
444   unsigned int i;
445
446   for (i = 0; i < sizeof (struct GNUNET_HashCode) * 8; i++)
447     if (GNUNET_CRYPTO_hash_get_bit (first, i) !=
448         GNUNET_CRYPTO_hash_get_bit (second, i))
449       return i;
450   return sizeof (struct GNUNET_HashCode) * 8;
451 }
452
453
454 /**
455  * Compare function for HashCodes, producing a total ordering
456  * of all hashcodes.
457  *
458  * @param h1 some hash code
459  * @param h2 some hash code
460  * @return 1 if h1 > h2, -1 if h1 < h2 and 0 if h1 == h2.
461  */
462 int
463 GNUNET_CRYPTO_hash_cmp (const struct GNUNET_HashCode *h1, 
464                         const struct GNUNET_HashCode *h2)
465 {
466   unsigned int *i1;
467   unsigned int *i2;
468   int i;
469
470   i1 = (unsigned int *) h1;
471   i2 = (unsigned int *) h2;
472   for (i = (sizeof (struct GNUNET_HashCode) / sizeof (unsigned int)) - 1; i >= 0; i--)
473   {
474     if (i1[i] > i2[i])
475       return 1;
476     if (i1[i] < i2[i])
477       return -1;
478   }
479   return 0;
480 }
481
482
483 /**
484  * Find out which of the two `struct GNUNET_HashCode`s is closer to target
485  * in the XOR metric (Kademlia).
486  *
487  * @param h1 some hash code
488  * @param h2 some hash code
489  * @param target some hash code
490  * @return -1 if h1 is closer, 1 if h2 is closer and 0 if h1==h2.
491  */
492 int
493 GNUNET_CRYPTO_hash_xorcmp (const struct GNUNET_HashCode *h1,
494                            const struct GNUNET_HashCode *h2,
495                            const struct GNUNET_HashCode *target)
496 {
497   int i;
498   unsigned int d1;
499   unsigned int d2;
500
501   for (i = sizeof (struct GNUNET_HashCode) / sizeof (unsigned int) - 1; i >= 0; i--)
502   {
503     d1 = ((unsigned int *) h1)[i] ^ ((unsigned int *) target)[i];
504     d2 = ((unsigned int *) h2)[i] ^ ((unsigned int *) target)[i];
505     if (d1 > d2)
506       return 1;
507     else if (d1 < d2)
508       return -1;
509   }
510   return 0;
511 }
512
513
514 /**
515  * @brief Derive an authentication key
516  * @param key authentication key
517  * @param rkey root key
518  * @param salt salt
519  * @param salt_len size of the @a salt
520  * @param ... pair of void * & size_t for context chunks, terminated by NULL
521  */
522 void
523 GNUNET_CRYPTO_hmac_derive_key (struct GNUNET_CRYPTO_AuthKey *key,
524                                const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
525                                const void *salt, size_t salt_len, ...)
526 {
527   va_list argp;
528
529   va_start (argp, salt_len);
530   GNUNET_CRYPTO_hmac_derive_key_v (key, rkey, salt, salt_len, argp);
531   va_end (argp);
532 }
533
534
535 /**
536  * @brief Derive an authentication key
537  * @param key authentication key
538  * @param rkey root key
539  * @param salt salt
540  * @param salt_len size of the @a salt
541  * @param argp pair of void * & size_t for context chunks, terminated by NULL
542  */
543 void
544 GNUNET_CRYPTO_hmac_derive_key_v (struct GNUNET_CRYPTO_AuthKey *key,
545                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
546                                  const void *salt, size_t salt_len,
547                                  va_list argp)
548 {
549   GNUNET_CRYPTO_kdf_v (key->key, sizeof (key->key), 
550                        salt, salt_len, 
551                        rkey, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
552                        argp);
553 }
554
555
556 /**
557  * Calculate HMAC of a message (RFC 2104)
558  *
559  * @param key secret key
560  * @param plaintext input plaintext
561  * @param plaintext_len length of @a plaintext
562  * @param hmac where to store the hmac
563  */
564 void
565 GNUNET_CRYPTO_hmac (const struct GNUNET_CRYPTO_AuthKey *key,
566                     const void *plaintext, size_t plaintext_len,
567                     struct GNUNET_HashCode * hmac)
568 {
569   gcry_md_hd_t md;
570   const unsigned char *mc;
571
572   GNUNET_assert (GPG_ERR_NO_ERROR ==
573                  gcry_md_open (&md, GCRY_MD_SHA512, GCRY_MD_FLAG_HMAC));
574   gcry_md_setkey (md, key->key, sizeof (key->key));
575   gcry_md_write (md, plaintext, plaintext_len);
576   mc = gcry_md_read (md, GCRY_MD_SHA512);
577   if (mc != NULL)
578     memcpy (hmac->bits, mc, sizeof (hmac->bits));
579   gcry_md_close (md);
580 }
581
582
583 /* end of crypto_hash.c */