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