Add dependency on libgcrypt
[platform/upstream/libsecret.git] / egg / egg-libgcrypt.c
1 /* 
2  * gnome-keyring
3  * 
4  * Copyright (C) 2008 Stefan Walter
5  * 
6  * This program is free software; you can redistribute it and/or modify 
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *  
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *  
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19  * 02111-1307, USA.  
20  */
21
22 #include "config.h"
23
24 #include "egg-libgcrypt.h"
25 #include "egg-secure-memory.h"
26
27 #include <glib.h>
28
29 #include <gcrypt.h>
30
31 EGG_SECURE_DECLARE (libgcrypt);
32
33 static void
34 log_handler (gpointer unused, int unknown, const gchar *msg, va_list va)
35 {
36         /* TODO: Figure out additional arguments */
37         g_logv ("gcrypt", G_LOG_LEVEL_MESSAGE, msg, va);
38 }
39
40 static int 
41 no_mem_handler (gpointer unused, size_t sz, unsigned int unknown)
42 {
43         /* TODO: Figure out additional arguments */
44         g_error ("couldn't allocate %lu bytes of memory", 
45                  (unsigned long int)sz);
46         return 0;
47 }
48
49 static void
50 fatal_handler (gpointer unused, int unknown, const gchar *msg)
51 {
52         /* TODO: Figure out additional arguments */
53         g_log ("gcrypt", G_LOG_LEVEL_ERROR, "%s", msg);
54 }
55
56 static int
57 glib_thread_mutex_init (void **lock)
58 {
59         *lock = g_mutex_new ();
60         return 0;
61 }
62
63 static int 
64 glib_thread_mutex_destroy (void **lock)
65 {
66         g_mutex_free (*lock);
67         return 0;
68 }
69
70 static int 
71 glib_thread_mutex_lock (void **lock)
72 {
73         g_mutex_lock (*lock);
74         return 0;
75 }
76
77 static int 
78 glib_thread_mutex_unlock (void **lock)
79 {
80         g_mutex_unlock (*lock);
81         return 0;
82 }
83
84 static struct gcry_thread_cbs glib_thread_cbs = {
85         GCRY_THREAD_OPTION_USER, NULL,
86         glib_thread_mutex_init, glib_thread_mutex_destroy,
87         glib_thread_mutex_lock, glib_thread_mutex_unlock,
88         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 
89 };
90
91 void
92 egg_libgcrypt_initialize (void)
93 {
94         static volatile gsize gcrypt_initialized = 0;
95         unsigned seed;
96
97         if (g_once_init_enter (&gcrypt_initialized)) {
98                 
99                 /* Only initialize libgcrypt if it hasn't already been initialized */
100                 if (!gcry_control (GCRYCTL_INITIALIZATION_FINISHED_P)) {
101                         if (g_thread_supported())
102                                 gcry_control (GCRYCTL_SET_THREAD_CBS, &glib_thread_cbs);
103                         gcry_check_version (LIBGCRYPT_VERSION);
104                         gcry_set_log_handler (log_handler, NULL);
105                         gcry_set_outofcore_handler (no_mem_handler, NULL);
106                         gcry_set_fatalerror_handler (fatal_handler, NULL);
107                         gcry_set_allocation_handler ((gcry_handler_alloc_t)g_malloc, 
108                                                      (gcry_handler_alloc_t)egg_secure_alloc, 
109                                                      egg_secure_check, 
110                                                      (gcry_handler_realloc_t)egg_secure_realloc, 
111                                                      egg_secure_free);
112                         gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
113                 }
114                 
115                 gcry_create_nonce (&seed, sizeof (seed));
116                 srand (seed);
117
118                 g_once_init_leave (&gcrypt_initialized, 1);
119         }
120 }