Imported Upstream version 0.3.2
[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-2009 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 as published by
21  *  the Free Software Foundation, either version 3 of the License, or
22  *  any later version.
23  *
24  *  Anytun is distributed in the hope that it will be useful,
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *  GNU General Public License for more details.
28  *
29  *  You should have received a copy of the GNU General Public License
30  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
31  */
32
33 #ifndef ANYTUN_cryptinit_hpp_INCLUDED
34 #define ANYTUN_cryptinit_hpp_INCLUDED
35
36 #ifndef NO_CRYPT
37 #ifndef USE_SSL_CRYPTO
38 #include <gcrypt.h>
39
40 // boost thread callbacks for libgcrypt
41 #if defined(BOOST_HAS_PTHREADS)
42
43 static int boost_mutex_init(void **priv)
44 {
45   boost::mutex *lock = new boost::mutex();
46   if (!lock)
47     return ENOMEM;
48   *priv = lock;
49   return 0;
50 }
51
52 static int boost_mutex_destroy(void **lock)
53 {
54   delete reinterpret_cast<boost::mutex*>(*lock);
55   return 0;
56 }
57
58 static int boost_mutex_lock(void **lock)
59 {
60   reinterpret_cast<boost::mutex*>(*lock)->lock();
61   return 0;
62 }
63
64 static int boost_mutex_unlock(void **lock)
65 {
66   reinterpret_cast<boost::mutex*>(*lock)->unlock();
67   return 0;
68 }
69
70 static struct gcry_thread_cbs gcry_threads_boost =
71 { GCRY_THREAD_OPTION_USER, NULL,
72   boost_mutex_init, boost_mutex_destroy,
73   boost_mutex_lock, boost_mutex_unlock };
74 #else
75 #error this libgcrypt thread callbacks only work with pthreads
76 #endif
77
78
79 #define MIN_GCRYPT_VERSION "1.2.0"
80
81 bool initLibGCrypt()
82 {
83   // make libgcrypt thread safe 
84   // this must be called before any other libgcrypt call
85   gcry_control( GCRYCTL_SET_THREAD_CBS, &gcry_threads_boost );
86
87   // this must be called right after the GCRYCTL_SET_THREAD_CBS command
88   // no other function must be called till now
89   if( !gcry_check_version( MIN_GCRYPT_VERSION ) ) {
90     std::cout << "initLibGCrypt: Invalid Version of libgcrypt, should be >= " << MIN_GCRYPT_VERSION << std::endl;
91     return false;
92   }
93
94   gcry_error_t err = gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
95   if( err ) {
96     std::cout << "initLibGCrypt: Failed to disable secure memory: " << AnytunGpgError(err) << std::endl;
97     return false;
98   }
99
100   // Tell Libgcrypt that initialization has completed.
101   err = gcry_control(GCRYCTL_INITIALIZATION_FINISHED);
102   if( err ) {
103     std::cout << "initLibGCrypt: Failed to finish initialization: " << AnytunGpgError(err) << std::endl;
104     return false;
105   }
106
107   cLog.msg(Log::PRIO_NOTICE) << "initLibGCrypt: libgcrypt init finished";
108   return true;
109 }
110 #endif
111 #endif
112
113 #endif