Imported Upstream version 0.3
[anytun.git] / src / cryptinit.hpp
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, 
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License version 3 as
21  *  published by the Free Software Foundation.
22  *
23  *  Anytun is distributed in the hope that it will be useful,
24  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *  GNU General Public License for more details.
27  *
28  *  You should have received a copy of the GNU General Public License
29  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 #ifndef _CRYPTINIT_HPP
33 #define _CRYPTINIT_HPP
34
35 #ifndef NO_CRYPT
36 #ifndef USE_SSL_CRYPTO
37 #include <gcrypt.h>
38
39 // boost thread callbacks for libgcrypt
40 #if defined(BOOST_HAS_PTHREADS)
41
42 static int boost_mutex_init(void **priv)
43 {
44   boost::mutex *lock = new boost::mutex();
45   if (!lock)
46     return ENOMEM;
47   *priv = lock;
48   return 0;
49 }
50
51 static int boost_mutex_destroy(void **lock)
52 {
53   delete reinterpret_cast<boost::mutex*>(*lock);
54   return 0;
55 }
56
57 static int boost_mutex_lock(void **lock)
58 {
59   reinterpret_cast<boost::mutex*>(*lock)->lock();
60   return 0;
61 }
62
63 static int boost_mutex_unlock(void **lock)
64 {
65   reinterpret_cast<boost::mutex*>(*lock)->unlock();
66   return 0;
67 }
68
69 static struct gcry_thread_cbs gcry_threads_boost =
70 { GCRY_THREAD_OPTION_USER, NULL,
71   boost_mutex_init, boost_mutex_destroy,
72   boost_mutex_lock, boost_mutex_unlock };
73 #else
74 #error this libgcrypt thread callbacks only work with pthreads
75 #endif
76
77
78 #define MIN_GCRYPT_VERSION "1.2.0"
79
80 bool initLibGCrypt()
81 {
82   // make libgcrypt thread safe 
83   // this must be called before any other libgcrypt call
84   gcry_control( GCRYCTL_SET_THREAD_CBS, &gcry_threads_boost );
85
86   // this must be called right after the GCRYCTL_SET_THREAD_CBS command
87   // no other function must be called till now
88   if( !gcry_check_version( MIN_GCRYPT_VERSION ) ) {
89     std::cout << "initLibGCrypt: Invalid Version of libgcrypt, should be >= " << MIN_GCRYPT_VERSION << std::endl;
90     return false;
91   }
92
93   gcry_error_t err = gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
94   if( err ) {
95     std::cout << "initLibGCrypt: Failed to disable secure memory: " << AnytunGpgError(err) << std::endl;
96     return false;
97   }
98
99   // Tell Libgcrypt that initialization has completed.
100   err = gcry_control(GCRYCTL_INITIALIZATION_FINISHED);
101   if( err ) {
102     std::cout << "initLibGCrypt: Failed to finish initialization: " << AnytunGpgError(err) << std::endl;
103     return false;
104   }
105
106   cLog.msg(Log::PRIO_NOTICE) << "initLibGCrypt: libgcrypt init finished";
107   return true;
108 }
109 #endif
110 #endif
111
112 #endif
113