Drop localisation and checkpoint tracing in files not covered by the merge.
[tinc] / src / gcrypt / cipher.c
1 /*
2     cipher.c -- Symmetric block cipher handling
3     Copyright (C) 2007 Guus Sliepen <guus@tinc-vpn.org>
4
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.
9
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.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19     $Id$
20 */
21
22 #include "system.h"
23
24 #include "cipher.h"
25 #include "logger.h"
26 #include "xalloc.h"
27
28 static struct {
29         const char *name;
30         int algo;
31         int mode;
32         int nid;
33 } ciphertable[] = {
34         {"none", GCRY_CIPHER_NONE, GCRY_CIPHER_MODE_NONE, 0},
35
36         {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_ECB, 92},
37         {"blowfish", GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_CBC, 91},
38         {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_CFB, 93},
39         {NULL, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_OFB, 94},
40
41         {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB, 418},
42         {"aes", GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CBC, 419},
43         {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CFB, 421},
44         {NULL, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_OFB, 420},
45
46         {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_ECB, 422},
47         {"aes192", GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CBC, 423},
48         {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CFB, 425},
49         {NULL, GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_OFB, 424},
50
51         {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_ECB, 426},
52         {"aes256", GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CBC, 427},
53         {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CFB, 429},
54         {NULL, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_OFB, 428},
55 };
56
57 static bool nametocipher(const char *name, int *algo, int *mode) {
58         size_t i;
59
60         for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
61                 if(ciphertable[i].name && !strcasecmp(name, ciphertable[i].name)) {
62                         *algo = ciphertable[i].algo;
63                         *mode = ciphertable[i].mode;
64                         return true;
65                 }
66         }
67
68         return false;
69 }
70
71 static bool nidtocipher(int nid, int *algo, int *mode) {
72         size_t i;
73
74         for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
75                 if(nid == ciphertable[i].nid) {
76                         *algo = ciphertable[i].algo;
77                         *mode = ciphertable[i].mode;
78                         return true;
79                 }
80         }
81
82         return false;
83 }
84
85 static bool ciphertonid(int algo, int mode, int *nid) {
86         size_t i;
87
88         for(i = 0; i < sizeof ciphertable / sizeof *ciphertable; i++) {
89                 if(algo == ciphertable[i].algo && mode == ciphertable[i].mode) {
90                         *nid = ciphertable[i].nid;
91                         return true;
92                 }
93         }
94
95         return false;
96 }
97
98 static bool cipher_open(cipher_t *cipher, int algo, int mode) {
99         gcry_error_t err;
100
101         if(!ciphertonid(algo, mode, &cipher->nid)) {
102                 logger(LOG_DEBUG, "Cipher %d mode %d has no corresponding nid!", algo, mode);
103                 return false;
104         }
105
106         if((err = gcry_cipher_open(&cipher->handle, algo, mode, 0))) {
107                 logger(LOG_DEBUG, "Unable to intialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err));
108                 return false;
109         }
110
111         cipher->keylen = gcry_cipher_get_algo_keylen(algo);
112         if(mode == GCRY_CIPHER_MODE_ECB || mode == GCRY_CIPHER_MODE_CBC)
113                 cipher->blklen = gcry_cipher_get_algo_blklen(algo);
114         else
115                 cipher->blklen = 0;
116         cipher->key = xmalloc(cipher->keylen + cipher->blklen);
117
118         return true;
119 }
120
121 bool cipher_open_by_name(cipher_t *cipher, const char *name) {
122         int algo, mode;
123
124         if(!nametocipher(name, &algo, &mode)) {
125                 logger(LOG_DEBUG, "Unknown cipher name '%s'!", name);
126                 return false;
127         }
128
129         return cipher_open(cipher, algo, mode);
130 }
131
132 bool cipher_open_by_nid(cipher_t *cipher, int nid) {
133         int algo, mode;
134
135         if(!nidtocipher(nid, &algo, &mode)) {
136                 logger(LOG_DEBUG, "Unknown cipher ID %d!", nid);
137                 return false;
138         }
139
140         return cipher_open(cipher, algo, mode);
141 }
142
143 bool cipher_open_blowfish_ofb(cipher_t *cipher) {
144         return cipher_open(cipher, GCRY_CIPHER_BLOWFISH, GCRY_CIPHER_MODE_OFB);
145 }
146
147 void cipher_close(cipher_t *cipher) {
148         if(cipher->handle) {
149                 gcry_cipher_close(cipher->handle);
150                 cipher->handle = NULL;
151         }
152
153         if(cipher->key) {
154                 free(cipher->key);
155                 cipher->key = NULL;
156         }
157 }
158
159 size_t cipher_keylength(const cipher_t *cipher) {
160         return cipher->keylen + cipher->blklen;
161 }
162
163 void cipher_get_key(const cipher_t *cipher, void *key) {
164         memcpy(key, cipher->key, cipher->keylen + cipher->blklen);
165 }
166
167 bool cipher_set_key(cipher_t *cipher, void *key, bool encrypt) {
168         memcpy(cipher->key, key, cipher->keylen + cipher->blklen);
169
170         gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
171         gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
172
173         return true;
174 }
175
176 bool cipher_set_key_from_rsa(cipher_t *cipher, void *key, size_t len, bool encrypt) {
177         memcpy(cipher->key, key + len - cipher->keylen, cipher->keylen + cipher->blklen);
178         memcpy(cipher->key + cipher->keylen, key + len - cipher->keylen - cipher->blklen, cipher->blklen);
179
180         gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
181         gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
182
183         return true;
184 }
185
186 bool cipher_regenerate_key(cipher_t *cipher, bool encrypt) {
187         gcry_create_nonce(cipher->key, cipher->keylen + cipher->blklen);
188
189         gcry_cipher_setkey(cipher->handle, cipher->key, cipher->keylen);
190         gcry_cipher_setiv(cipher->handle, cipher->key + cipher->keylen, cipher->blklen);
191
192         return true;
193 }
194
195 static bool cipher_add_padding(cipher_t *cipher, void *indata, size_t inlen, size_t *outlen) {
196         size_t reqlen;
197
198         if(cipher->blklen == 1) {
199                 *outlen = inlen;
200                 return true;
201         }
202
203         reqlen = ((inlen + 1) / cipher->blklen) * cipher->blklen;
204         if(reqlen > *outlen)
205                 return false;
206
207         // add padding
208
209         *outlen = reqlen;
210         return true;
211 }
212
213 static bool cipher_remove_padding(cipher_t *cipher, void *indata, size_t inlen, size_t *outlen) {
214         size_t origlen;
215
216         if(cipher->blklen == 1) {
217                 *outlen = inlen;
218                 return true;
219         }
220
221         if(inlen % cipher->blklen)
222                 return false;
223
224         // check and remove padding
225
226         *outlen = origlen;
227         return true;
228 }
229
230 bool cipher_encrypt(cipher_t *cipher, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot) {
231         gcry_error_t err;
232
233         // To be fixed
234
235         if((err = gcry_cipher_encrypt(cipher->handle, outdata, inlen, indata, inlen))) {
236                 logger(LOG_ERR, "Error while encrypting: %s", gcry_strerror(err));
237                 return false;
238         }
239
240         return true;
241 }
242
243 bool cipher_decrypt(cipher_t *cipher, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot) {
244         gcry_error_t err;
245
246         // To be fixed
247
248         if((err = gcry_cipher_decrypt(cipher->handle, outdata, inlen, indata, inlen))) {
249                 logger(LOG_ERR, "Error while decrypting: %s", gcry_strerror(err));
250                 return false;
251         }
252
253         return true;
254 }
255
256 int cipher_get_nid(const cipher_t *cipher) {
257         return cipher->nid;
258 }
259
260 bool cipher_active(const cipher_t *cipher) {
261         return cipher->nid != 0;
262 }