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.
14 * Copyright (C) 2007 anytun.org <satp@wirdorange.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program (see the file COPYING included with this
27 * distribution); if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "keyDerivation.h"
35 #include "threadUtils.hpp"
44 void KeyDerivation::setLogKDRate(const uint8_t log_rate
)
51 //****** NullKeyDerivation ******
53 void NullKeyDerivation::generate(satp_prf_label label
, seq_nr_t seq_nr
, Buffer
& key
)
55 for(u_int32_t i
=0; i
< key
.getLength(); ++i
) key
[i
] = 0;
58 //****** AesIcmKeyDerivation ******
60 AesIcmKeyDerivation::~AesIcmKeyDerivation()
64 gcry_cipher_close( cipher_
);
67 void AesIcmKeyDerivation::updateMasterKey()
72 gcry_error_t err
= gcry_cipher_setkey( cipher_
, master_key_
.getBuf(), master_key_
.getLength() );
74 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::updateMasterKey: Failed to set cipher key: " << gpg_strerror( err
);
77 void AesIcmKeyDerivation::init(Buffer key
, Buffer salt
)
81 gcry_cipher_close( cipher_
);
83 // TODO: hardcoded size
84 gcry_error_t err
= gcry_cipher_open( &cipher_
, GCRY_CIPHER_AES128
, GCRY_CIPHER_MODE_CTR
, 0 );
86 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::init: Failed to open cipher: " << gpg_strerror( err
);
90 master_salt_
= SyncBuffer(salt
);
91 master_key_
= SyncBuffer(key
);
96 void AesIcmKeyDerivation::generate(satp_prf_label label
, seq_nr_t seq_nr
, Buffer
& key
)
101 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::generate: cipher not opened";
105 gcry_error_t err
= gcry_cipher_reset( cipher_
);
107 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::generate: Failed to reset cipher: " << gpg_strerror( err
);
109 // see at: http://tools.ietf.org/html/rfc3711#section-4.3
110 // * Let r = index DIV key_derivation_rate (with DIV as defined above).
111 // * Let key_id = <label> || r.
112 // * Let x = key_id XOR master_salt, where key_id and master_salt are
113 // aligned so that their least significant bits agree (right-
117 Mpi
r(48); // ld(kdr) <= 48
118 if( ld_kdr_
== -1 ) // means key_derivation_rate = 0
119 r
= 0; // TODO: no new key should be generated if r == 0, except it is the first time
126 rate
= rate
.mul2exp(ld_kdr_
);
129 // TODO: generate key only if index % r == 0, except it is the first time
131 Mpi
key_id(128); // TODO: hardcoded size
132 Mpi
l(128); // TODO: hardcoded size
134 key_id
= l
.mul2exp(48) + r
;
136 Mpi
salt(master_salt_
.getBuf(), master_salt_
.getLength());
137 Mpi
x(128); // TODO: hardcoded size
141 u_int8_t
*ctr_buf
= x
.mul2exp(16).getNewBuf(&written
); // TODO: hardcoded size
142 err
= gcry_cipher_setctr( cipher_
, ctr_buf
, written
);
146 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::generate: Failed to set CTR: " << gpg_strerror( err
);
148 for(u_int32_t i
=0; i
< key
.getLength(); ++i
) key
[i
] = 0;
149 err
= gcry_cipher_encrypt( cipher_
, key
, key
.getLength(), NULL
, 0);
151 cLog
.msg(Log::PRIO_ERR
) << "KeyDerivation::generate: Failed to generate cipher bitstream: " << gpg_strerror( err
);