summaryrefslogtreecommitdiff
path: root/mysys_ssl/my_crypt.cc
blob: d92f76d633b54d0811722284a35c22609ea2219a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
  TODO: add support for YASSL
*/

#include <my_global.h>
#include <my_crypt.h>

/* YASSL doesn't support EVP_CIPHER_CTX */
#ifdef HAVE_EncryptAes128Ctr

#include "mysql.h"
#include <openssl/evp.h>
#include <openssl/aes.h>

static const int CRYPT_ENCRYPT = 1;
static const int CRYPT_DECRYPT = 0;

class Encrypter {
 public:
  virtual ~Encrypter() {}

  virtual Crypt_result Encrypt(const uchar* plaintext,
                               int plaintext_size,
                               uchar* ciphertext,
                               int* ciphertext_used) = 0;
  virtual Crypt_result GetTag(uchar* tag, int tag_size) = 0;
};

class Decrypter {
 public:
  virtual ~Decrypter() {}

  virtual Crypt_result SetTag(const uchar* tag, int tag_size) = 0;
  virtual Crypt_result Decrypt(const uchar* ciphertext,
                               int ciphertext_size,
                               uchar* plaintext,
                               int* plaintext_used) = 0;
  virtual Crypt_result CheckTag() = 0;
};

class Crypto {
 public:
  virtual ~Crypto();

  Crypt_result Crypt(const uchar* input, int input_size,
                     uchar* output, int* output_used);

 protected:
  Crypto();

  EVP_CIPHER_CTX ctx;
};


/* Various crypto implementations */

class Aes128CtrCrypto : public Crypto {
 public:
  virtual Crypt_result Init(const uchar* key, const uchar* iv,
                            int iv_size);

 protected:
  Aes128CtrCrypto() {}

  virtual int mode() = 0;
};

class Aes128CtrEncrypter : public Aes128CtrCrypto, public Encrypter {
 public:
  Aes128CtrEncrypter() {}
  virtual Crypt_result Encrypt(const uchar* plaintext,
                               int plaintext_size,
                               uchar* ciphertext,
                               int* ciphertext_used);

  virtual Crypt_result GetTag(uchar* tag, int tag_size) {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

 protected:
  virtual int mode() {
    return CRYPT_ENCRYPT;
  }

 private:
  Aes128CtrEncrypter(const Aes128CtrEncrypter& o);
  Aes128CtrEncrypter& operator=(const Aes128CtrEncrypter& o);
};

class Aes128CtrDecrypter : public Aes128CtrCrypto, public Decrypter {
 public:
  Aes128CtrDecrypter() {}
  virtual Crypt_result Decrypt(const uchar* ciphertext,
                               int ciphertext_size,
                               uchar* plaintext,
                               int* plaintext_used);

  virtual Crypt_result SetTag(const uchar* tag, int tag_size) {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

  virtual Crypt_result CheckTag() {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

 protected:
  virtual int mode() {
    return CRYPT_DECRYPT;
  }

 private:
  Aes128CtrDecrypter(const Aes128CtrDecrypter& o);
  Aes128CtrDecrypter& operator=(const Aes128CtrDecrypter& o);
};

class Aes128EcbCrypto : public Crypto {
 public:
  virtual Crypt_result Init(const unsigned char* key);

 protected:
  Aes128EcbCrypto() {}

  virtual int mode() = 0;
};

class Aes128EcbEncrypter : public Aes128EcbCrypto, public Encrypter {
 public:
  Aes128EcbEncrypter() {}
  virtual Crypt_result Encrypt(const unsigned char* plaintext,
                               int plaintext_size,
                               unsigned char* ciphertext,
                               int* ciphertext_used);

  virtual Crypt_result GetTag(unsigned char* tag, int tag_size) {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

 protected:
  virtual int mode() {
    return CRYPT_ENCRYPT;
  }

 private:
  Aes128EcbEncrypter(const Aes128EcbEncrypter& o);
  Aes128EcbEncrypter& operator=(const Aes128EcbEncrypter& o);
};

class Aes128EcbDecrypter : public Aes128EcbCrypto, public Decrypter {
 public:
  Aes128EcbDecrypter() {}
  virtual Crypt_result Decrypt(const unsigned char* ciphertext,
                              int ciphertext_size,
                              unsigned char* plaintext,
                              int* plaintext_used);

  virtual Crypt_result SetTag(const unsigned char* tag, int tag_size) {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

  virtual Crypt_result CheckTag() {
    DBUG_ASSERT(false);
    return AES_INVALID;
  }

 protected:
  virtual int mode() {
    return CRYPT_DECRYPT;
  }

 private:
  Aes128EcbDecrypter(const Aes128EcbDecrypter& o);
  Aes128EcbDecrypter& operator=(const Aes128EcbDecrypter& o);
};


Crypto::~Crypto() {
  EVP_CIPHER_CTX_cleanup(&ctx);
}

Crypto::Crypto() {
  EVP_CIPHER_CTX_init(&ctx);
}

/*
  WARNING: It is allowed to have output == NULL, for special cases like AAD
  support in AES GCM. output_used however must never be NULL.
*/

Crypt_result Crypto::Crypt(const uchar* input, int input_size,
                           uchar* output, int* output_used) {
  DBUG_ASSERT(input != NULL);
  DBUG_ASSERT(output_used != NULL);
  if (!EVP_CipherUpdate(&ctx, output, output_used, input, input_size)) {
    return AES_OPENSSL_ERROR;
  }

  return AES_OK;
}

Crypt_result Aes128CtrCrypto::Init(const uchar* key,
                                   const uchar* iv,
                                   int iv_size) {
  if (iv_size != 16) {
    DBUG_ASSERT(false);
    return AES_BAD_IV;
  }

  if (!EVP_CipherInit_ex(&ctx, EVP_aes_128_ctr(), NULL, key, iv, mode())) {
    return AES_OPENSSL_ERROR;
  }

  return AES_OK;
}

Crypt_result Aes128CtrEncrypter::Encrypt(const uchar* plaintext,
                                         int plaintext_size,
                                         uchar* ciphertext,
                                         int* ciphertext_used) {
  Crypt_result res = Crypt(plaintext, plaintext_size, ciphertext,
                          ciphertext_used);
  DBUG_ASSERT(*ciphertext_used == plaintext_size);
  return res;
}

Crypt_result Aes128CtrDecrypter::Decrypt(const uchar* ciphertext,
                                         int ciphertext_size,
                                         uchar* plaintext,
                                         int* plaintext_used) {
  Crypt_result res = Crypt(ciphertext, ciphertext_size, plaintext,
                           plaintext_used);
  DBUG_ASSERT(*plaintext_used == ciphertext_size);
  return res;
}


Crypt_result Aes128EcbCrypto::Init(const unsigned char* key) {
  if (!EVP_CipherInit_ex(&ctx, EVP_aes_128_ecb(), NULL, key, NULL, mode())) {
    return AES_OPENSSL_ERROR;
  }

  return AES_OK;
}

Crypt_result Aes128EcbEncrypter::Encrypt(const unsigned char* plaintext,
                                        int plaintext_size,
                                        unsigned char* ciphertext,
                                        int* ciphertext_used) {
  Crypt_result res = Crypt(plaintext, plaintext_size,
                           ciphertext, ciphertext_used);
  DBUG_ASSERT(*ciphertext_used == plaintext_size);
  return res;
}

Crypt_result Aes128EcbDecrypter::Decrypt(const unsigned char* ciphertext,
                                         int ciphertext_size,
                                         unsigned char* plaintext,
                                         int* plaintext_used) {
  Crypt_result res = Crypt(ciphertext, ciphertext_size,
                           plaintext, plaintext_used);
  DBUG_ASSERT(*plaintext_used == ciphertext_size);
  return res;
}

C_MODE_START


  /* Encrypt and decrypt according to Aes128Ctr */

Crypt_result my_aes_encrypt_ctr(const uchar* source, uint32 source_length,
                                uchar* dest, uint32* dest_length,
                                const unsigned char* key, uint8 key_length,
                                const unsigned char* iv, uint8 iv_length,
                                uint noPadding)
{
  Aes128CtrEncrypter encrypter;
  Crypt_result res = encrypter.Init(key, iv, iv_length);
  if (res != AES_OK)
    return res;
  return encrypter.Encrypt(source, source_length, dest, (int*)dest_length);
}


Crypt_result my_aes_decrypt_ctr(const uchar* source, uint32 source_length,
                                uchar* dest, uint32* dest_length,
                                const unsigned char* key, uint8 key_length,
                                const unsigned char* iv, uint8 iv_length,
                                uint noPadding)
{
  Aes128CtrDecrypter decrypter;

  Crypt_result res = decrypter.Init(key, iv, iv_length);
  if (res != AES_OK)
    return res;
  return decrypter.Decrypt(source, source_length, dest, (int*)dest_length);
}


Crypt_result my_aes_encrypt_ecb(const uchar* source, uint32 source_length,
                                uchar* dest, uint32* dest_length,
                                const unsigned char* key, uint8 key_length,
                                const unsigned char* iv, uint8 iv_length,
                                uint noPadding)
{
  Aes128EcbEncrypter encrypter;
  Crypt_result res = encrypter.Init(key);
  if (res != AES_OK)
    return res;
  return encrypter.Encrypt(source, source_length, dest, (int*)dest_length);
}

Crypt_result my_aes_decrypt_ecb(const uchar* source, uint32 source_length,
                                uchar* dest, uint32* dest_length,
                                const unsigned char* key, uint8 key_length,
                                const unsigned char* iv, uint8 iv_length,
                                uint noPadding)
{
  Aes128EcbDecrypter decrypter;

  Crypt_result res = decrypter.Init(key);

  if (res != AES_OK)
    return res;
  return decrypter.Decrypt(source, source_length, dest, (int*)dest_length);
}

C_MODE_END

#endif /* HAVE_EncryptAes128Ctr */

#if defined(HAVE_YASSL)

#include <random.hpp>

C_MODE_START

Crypt_result my_random_bytes(uchar* buf, int num)
{
  TaoCrypt::RandomNumberGenerator rand;
  rand.GenerateBlock((TaoCrypt::byte*) buf, num);
  return AES_OK;
}

C_MODE_END

#else  /* OpenSSL */

#include <openssl/rand.h>

C_MODE_START

Crypt_result my_random_bytes(uchar* buf, int num)
{
  /*
    Unfortunately RAND_bytes manual page does not provide any guarantees
    in relation to blocking behavior. Here we explicitly use SSLeay random
    instead of whatever random engine is currently set in OpenSSL. That way
    we are guaranteed to have a non-blocking random.
  */
  RAND_METHOD* rand = RAND_SSLeay();
  if (rand == NULL || rand->bytes(buf, num) != 1)
    return AES_OPENSSL_ERROR;
  return AES_OK;
}

C_MODE_END
#endif /* HAVE_YASSL */