2 cipher.c -- Symmetric block cipher handling
3 Copyright (C) 2007 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 {"none", GCRY_CIPHER_NONE, GCRY_CIPHER_MODE_NONE, 0},
34 {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_ECB, 92},
35 {"blowfish", GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_CBC, 91},
36 {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_CFB, 93},
37 {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_OFB, 94},
39 {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB, 418},
40 {"aes", GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CBC, 419},
41 {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CFB, 421},
42 {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_OFB, 420},
44 {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_ECB, 422},
45 {"aes192", GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CBC, 423},
46 {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CFB, 425},
47 {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_OFB, 424},
49 {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_ECB, 426},
50 {"aes256", GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CBC, 427},
51 {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CFB, 429},
52 {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_OFB, 428},
55 static bool nametocipher(const char *name, int *algo, int *mode) {
58 for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
59 if(ciphertable[i].name && !strcasecmp(name, ciphertable[i].name)) {
60 *algo = ciphertable[i].algo;
61 *mode = ciphertable[i].mode;
69 static bool nidtocipher(int nid, int *algo, int *mode) {
72 for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
73 if(nid == ciphertable[i].nid) {
74 *algo = ciphertable[i].algo;
75 *mode = ciphertable[i].mode;
83 static bool ciphertonid(int algo, int mode, int *nid) {
86 for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
87 if(algo == ciphertable[i].algo && mode == ciphertable[i].mode) {
88 *nid = ciphertable[i].nid;
96 static bool cipher_open(cipher_t *cipher, int algo, int mode) {
99 if(!ciphertonid(algo, mode, &cipher->nid)) {
100 logger(LOG_DEBUG, "Cipher %d mode %d has no corresponding nid!", algo, mode);
104 if((err = gcry_cipher_open(&cipher->handle, algo, mode, 0))) {
105 logger(LOG_DEBUG, "Unable to intialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err));
109 cipher->keylen = gcry_cipher_get_algo_keylen(algo);
110 cipher->blklen = gcry_cipher_get_algo_blklen(algo);
111 cipher->key = xmalloc(cipher->keylen + cipher->blklen);
112 cipher->padding = mode == GCRY_CIPHER_MODE_ECB || mode == GCRY_CIPHER_MODE_CBC;
117 bool cipher_open_by_name(cipher_t *cipher, const char *name) {
120 if(!nametocipher(name, &algo, &mode)) {
121 logger(LOG_DEBUG, "Unknown cipher name '%s'!", name);
125 return cipher_open(cipher, algo, mode);
128 bool cipher_open_by_nid(cipher_t *cipher, int nid) {
131 if(!nidtocipher(nid, &algo, &mode)) {
132 logger(LOG_DEBUG, "Unknown cipher ID %d!", nid);
136 return cipher_open(cipher, algo, mode);
139 bool cipher_open_blowfish_ofb(cipher_t *cipher) {
140 return cipher_open(cipher, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_OFB);
143 void cipher_close(cipher_t *cipher) {
145 gcry_cipher_close(cipher->handle);
146 cipher->handle = NULL;
155 size_t cipher_keylength(const cipher_t *cipher) {
156 return cipher->keylen + cipher->blklen;
159 void cipher_get_key(const cipher_t *cipher, void *key) {
160 memcpy(key, cipher->key, cipher->keylen + cipher->blklen);
163 bool cipher_set_key(cipher_t *cipher, void *key, bool encrypt) {
164 memcpy(cipher->key, key, cipher->keylen + cipher->blklen);
166 gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
167 gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
172 bool cipher_set_key_from_rsa(cipher_t *cipher, void *key, size_t len, bool encrypt) {
173 memcpy(cipher->key, key + len - cipher->keylen, cipher->keylen + cipher->blklen);
174 memcpy(cipher->key + cipher->keylen, key + len - cipher->keylen - cipher->blklen, cipher->blklen);
176 gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
177 gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
182 bool cipher_regenerate_key(cipher_t *cipher, bool encrypt) {
183 gcry_create_nonce(cipher->key, cipher->keylen + cipher->blklen);
185 gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
186 gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
191 bool cipher_encrypt(cipher_t *cipher, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot) {
193 uint8_t pad[cipher->blklen];
195 if(cipher->padding) {
199 size_t reqlen = ((inlen + cipher->blklen) / cipher->blklen) * cipher->blklen;
201 if(*outlen < reqlen) {
202 logger(LOG_ERR, "Error while encrypting: not enough room for padding");
206 uint8_t padbyte = reqlen - inlen;
207 inlen = reqlen - cipher->blklen;
209 for(int i = 0; i < cipher->blklen; i++)
210 if(i < cipher->blklen - padbyte)
211 pad[i] = ((uint8_t *)indata)[inlen + i];
217 gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
219 if((err = gcry_cipher_encrypt(cipher->handle, outdata, *outlen, indata, inlen))) {
220 logger(LOG_ERR, "Error while encrypting: %s", gcry_strerror(err));
224 if(cipher->padding) {
225 if((err = gcry_cipher_encrypt(cipher->handle, outdata + inlen, cipher->blklen, pad, cipher->blklen))) {
226 logger(LOG_ERR, "Error while encrypting: %s", gcry_strerror(err));
230 inlen += cipher->blklen;
237 bool cipher_decrypt(cipher_t *cipher, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot) {
241 gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
243 if((err = gcry_cipher_decrypt(cipher->handle, outdata, *outlen, indata, inlen))) {
244 logger(LOG_ERR, "Error while decrypting: %s", gcry_strerror(err));
248 if(cipher->padding) {
252 uint8_t padbyte = ((uint8_t *)outdata)[inlen - 1];
254 if(padbyte == 0 || padbyte > cipher->blklen || padbyte > inlen) {
255 logger(LOG_ERR, "Error while decrypting: invalid padding");
259 size_t origlen = inlen - padbyte;
261 for(int i = inlen - 1; i >= origlen; i--)
262 if(((uint8_t *)outdata)[i] != padbyte) {
263 logger(LOG_ERR, "Error while decrypting: invalid padding");
274 int cipher_get_nid(const cipher_t *cipher) {
278 bool cipher_active(const cipher_t *cipher) {
279 return cipher->nid != 0;