aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/tls/gnutls_cipher.c
blob: 5004d13ce77b3f3b0647e748dc7a2f263c04704e (plain) (blame)
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/*
 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GNUTLS.
 *
 * The GNUTLS library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 * USA
 *
 */

/* Some high level functions to be used in the record encryption are
 * included here.
 */

#include "gnutls_int.h"
#include "gnutls_errors.h"
#include "gnutls_cipher.h"
#include "gnutls_algorithms.h"
#include "gnutls_hash_int.h"
#include "gnutls_cipher_int.h"
#include "debug.h"
#include "gnutls_num.h"
#include "gnutls_datum.h"
#include "gnutls_kx.h"
#include "gnutls_record.h"
#include "gnutls_constate.h"
#include <gc.h>

/* returns ciphertext which contains the headers too. This also
 * calculates the size in the header field.
 *
 * If random pad != 0 then the random pad data will be appended.
 */
int
MHD_gtls_encrypt (MHD_gtls_session_t session, const opaque * headers,
                  size_t headers_size, const opaque * data,
                  size_t data_size, opaque * ciphertext,
                  size_t ciphertext_size, content_type_t type, int random_pad)
{
  MHD_gnutls_datum_t plain;
  MHD_gnutls_datum_t comp;
  int ret;
  int free_comp = 1;

  plain.data = (opaque *) data;
  plain.size = data_size;

  comp = plain;
  free_comp = 0;
  ret = MHD_gtls_compressed2ciphertext (session, &ciphertext[headers_size],
                                        ciphertext_size - headers_size,
                                        comp, type, random_pad);

  if (free_comp)
    MHD__gnutls_free_datum (&comp);

  if (ret < 0)
    {
      MHD_gnutls_assert ();
      return ret;
    }


  /* copy the headers */
  memcpy (ciphertext, headers, headers_size);
  MHD_gtls_write_uint16 (ret, &ciphertext[3]);

  return ret + headers_size;
}

/* Decrypts the given data.
 * Returns the decrypted data length.
 */
int
MHD_gtls_decrypt (MHD_gtls_session_t session, opaque * ciphertext,
                  size_t ciphertext_size, uint8_t * data,
                  size_t max_data_size, content_type_t type)
{
  MHD_gnutls_datum_t gcipher;

  if (ciphertext_size == 0)
    return 0;

  gcipher.size = ciphertext_size;
  gcipher.data = ciphertext;

  return
    MHD_gtls_ciphertext2compressed (session, data, max_data_size,
                                    gcipher, type);
}

inline static mac_hd_t
mac_init (enum MHD_GNUTLS_HashAlgorithm mac, opaque * secret, int secret_size,
          int ver)
{
  mac_hd_t td;

  if (mac == MHD_GNUTLS_MAC_NULL)
    return GNUTLS_MAC_FAILED;

  if (ver == MHD_GNUTLS_PROTOCOL_SSL3)
    {                           /* SSL 3.0 */
      td = MHD_gnutls_mac_init_ssl3 (mac, secret, secret_size);
    }
  else
    {                           /* TLS 1.x */
      td = MHD_gtls_MHD_hmac_init (mac, secret, secret_size);
    }

  return td;
}

inline static void
mac_deinit (mac_hd_t td, opaque * res, int ver)
{
  if (ver == MHD_GNUTLS_PROTOCOL_SSL3)
    {                           /* SSL 3.0 */
      MHD_gnutls_mac_deinit_ssl3 (td, res);
    }
  else
    {
      MHD_gnutls_MHD_hmac_deinit (td, res);
    }
}

inline static int
calc_enc_length (MHD_gtls_session_t session, int data_size,
                 int hash_size, uint8_t * pad, int random_pad,
                 cipher_type_t block_algo, uint16_t blocksize)
{
  uint8_t rnd;
  int length;

  *pad = 0;

  switch (block_algo)
    {
    case CIPHER_STREAM:
      length = data_size + hash_size;

      break;
    case CIPHER_BLOCK:
      if (MHD_gc_nonce ((char *) &rnd, 1) != GC_OK)
        {
          MHD_gnutls_assert ();
          return GNUTLS_E_RANDOM_FAILED;
        }

      /* make rnd a multiple of blocksize */
      if (session->security_parameters.version == MHD_GNUTLS_PROTOCOL_SSL3 ||
          random_pad == 0)
        {
          rnd = 0;
        }
      else
        {
          rnd = (rnd / blocksize) * blocksize;
          /* added to avoid the case of pad calculated 0
           * seen below for pad calculation.
           */
          if (rnd > blocksize)
            rnd -= blocksize;
        }

      length = data_size + hash_size;

      *pad = (uint8_t) (blocksize - (length % blocksize)) + rnd;

      length += *pad;
      if (session->security_parameters.version >= MHD_GNUTLS_PROTOCOL_TLS1_1)
        length += blocksize;    /* for the IV */

      break;
    default:
      MHD_gnutls_assert ();
      return GNUTLS_E_INTERNAL_ERROR;
    }

  return length;
}

/* This is the actual encryption
 * Encrypts the given compressed datum, and puts the result to cipher_data,
 * which has cipher_size size.
 * return the actual encrypted data length.
 */
int
MHD_gtls_compressed2ciphertext (MHD_gtls_session_t session,
                                opaque * cipher_data, int cipher_size,
                                MHD_gnutls_datum_t compressed,
                                content_type_t _type, int random_pad)
{
  uint8_t MAC[MAX_HASH_SIZE];
  uint16_t c_length;
  uint8_t pad;
  int length, ret;
  mac_hd_t td;
  uint8_t type = _type;
  uint8_t major, minor;
  int hash_size =
    MHD_gnutls_hash_get_algo_len (session->security_parameters.
                                  write_mac_algorithm);
  enum MHD_GNUTLS_Protocol ver;
  int blocksize =
    MHD_gtls_cipher_get_block_size (session->security_parameters.
                                    write_bulk_cipher_algorithm);
  cipher_type_t block_algo =
    MHD_gtls_cipher_is_block (session->security_parameters.
                              write_bulk_cipher_algorithm);
  opaque *data_ptr;


  ver = MHD__gnutls_protocol_get_version (session);
  minor = MHD_gtls_version_get_minor (ver);
  major = MHD_gtls_version_get_major (ver);


  /* Initialize MAC */
  td = mac_init (session->security_parameters.write_mac_algorithm,
                 session->connection_state.write_mac_secret.data,
                 session->connection_state.write_mac_secret.size, ver);

  if (td == GNUTLS_MAC_FAILED
      && session->security_parameters.write_mac_algorithm !=
      MHD_GNUTLS_MAC_NULL)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_INTERNAL_ERROR;
    }

  c_length = MHD_gtls_conv_uint16 (compressed.size);

  if (td != GNUTLS_MAC_FAILED)
    {                           /* actually when the algorithm in not the NULL one */
      MHD_gnutls_hash (td,
                       UINT64DATA (session->connection_state.
                                   write_sequence_number), 8);

      MHD_gnutls_hash (td, &type, 1);
      if (ver >= MHD_GNUTLS_PROTOCOL_TLS1_0)
        {                       /* TLS 1.0 or higher */
          MHD_gnutls_hash (td, &major, 1);
          MHD_gnutls_hash (td, &minor, 1);
        }
      MHD_gnutls_hash (td, &c_length, 2);
      MHD_gnutls_hash (td, compressed.data, compressed.size);
      mac_deinit (td, MAC, ver);
    }


  /* Calculate the encrypted length (padding etc.)
   */
  length =
    calc_enc_length (session, compressed.size, hash_size, &pad,
                     random_pad, block_algo, blocksize);
  if (length < 0)
    {
      MHD_gnutls_assert ();
      return length;
    }

  /* copy the encrypted data to cipher_data.
   */
  if (cipher_size < length)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_MEMORY_ERROR;
    }

  data_ptr = cipher_data;
  if (block_algo == CIPHER_BLOCK &&
      session->security_parameters.version >= MHD_GNUTLS_PROTOCOL_TLS1_1)
    {
      /* copy the random IV.
       */
      if (MHD_gc_nonce ((char *) data_ptr, blocksize) != GC_OK)
        {
          MHD_gnutls_assert ();
          return GNUTLS_E_RANDOM_FAILED;
        }
      data_ptr += blocksize;
    }

  memcpy (data_ptr, compressed.data, compressed.size);
  data_ptr += compressed.size;

  if (hash_size > 0)
    {
      memcpy (data_ptr, MAC, hash_size);
      data_ptr += hash_size;
    }
  if (block_algo == CIPHER_BLOCK && pad > 0)
    {
      memset (data_ptr, pad - 1, pad);
    }


  /* Actual encryption (inplace).
   */
  ret =
    MHD_gtls_cipher_encrypt (session->connection_state.write_cipher_state,
                             cipher_data, length);
  if (ret < 0)
    {
      MHD_gnutls_assert ();
      return ret;
    }

  return length;
}

/* Deciphers the ciphertext packet, and puts the result to compress_data, of compress_size.
 * Returns the actual compressed packet size.
 */
int
MHD_gtls_ciphertext2compressed (MHD_gtls_session_t session,
                                opaque * compress_data,
                                int compress_size,
                                MHD_gnutls_datum_t ciphertext, uint8_t type)
{
  uint8_t MAC[MAX_HASH_SIZE];
  uint16_t c_length;
  uint8_t pad;
  int length;
  mac_hd_t td;
  uint16_t blocksize;
  int ret, i, pad_failed = 0;
  uint8_t major, minor;
  enum MHD_GNUTLS_Protocol ver;
  int hash_size =
    MHD_gnutls_hash_get_algo_len (session->security_parameters.
                                  read_mac_algorithm);

  ver = MHD__gnutls_protocol_get_version (session);
  minor = MHD_gtls_version_get_minor (ver);
  major = MHD_gtls_version_get_major (ver);

  blocksize =
    MHD_gtls_cipher_get_block_size (session->security_parameters.
                                    read_bulk_cipher_algorithm);

  /* initialize MAC
   */
  td = mac_init (session->security_parameters.read_mac_algorithm,
                 session->connection_state.read_mac_secret.data,
                 session->connection_state.read_mac_secret.size, ver);

  if (td == GNUTLS_MAC_FAILED
      && session->security_parameters.read_mac_algorithm !=
      MHD_GNUTLS_MAC_NULL)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_INTERNAL_ERROR;
    }


  /* actual decryption (inplace)
   */
  switch (MHD_gtls_cipher_is_block
          (session->security_parameters.read_bulk_cipher_algorithm))
    {
    case CIPHER_STREAM:
      if ((ret =
           MHD_gtls_cipher_decrypt (session->connection_state.
                                    read_cipher_state, ciphertext.data,
                                    ciphertext.size)) < 0)
        {
          MHD_gnutls_assert ();
          return ret;
        }

      length = ciphertext.size - hash_size;

      break;
    case CIPHER_BLOCK:
      if ((ciphertext.size < blocksize) || (ciphertext.size % blocksize != 0))
        {
          MHD_gnutls_assert ();
          return GNUTLS_E_DECRYPTION_FAILED;
        }

      if ((ret =
           MHD_gtls_cipher_decrypt (session->connection_state.
                                    read_cipher_state, ciphertext.data,
                                    ciphertext.size)) < 0)
        {
          MHD_gnutls_assert ();
          return ret;
        }

      /* ignore the IV in TLS 1.1.
       */
      if (session->security_parameters.version >= MHD_GNUTLS_PROTOCOL_TLS1_1)
        {
          ciphertext.size -= blocksize;
          ciphertext.data += blocksize;

          if (ciphertext.size == 0)
            {
              MHD_gnutls_assert ();
              return GNUTLS_E_DECRYPTION_FAILED;
            }
        }

      pad = ciphertext.data[ciphertext.size - 1] + 1;   /* pad */

      length = ciphertext.size - hash_size - pad;

      if (pad > ciphertext.size - hash_size)
        {
          MHD_gnutls_assert ();
          /* We do not fail here. We check below for the
           * the pad_failed. If zero means success.
           */
          pad_failed = GNUTLS_E_DECRYPTION_FAILED;
        }

      /* Check the pading bytes (TLS 1.x)
       */
      if (ver >= MHD_GNUTLS_PROTOCOL_TLS1_0 && pad_failed == 0)
        for (i = 2; i < pad; i++)
          {
            if (ciphertext.data[ciphertext.size - i] !=
                ciphertext.data[ciphertext.size - 1])
              pad_failed = GNUTLS_E_DECRYPTION_FAILED;
          }
      break;
    default:
      MHD_gnutls_assert ();
      return GNUTLS_E_INTERNAL_ERROR;
    }

  if (length < 0)
    length = 0;
  c_length = MHD_gtls_conv_uint16 ((uint16_t) length);

  /* Pass the type, version, length and compressed through
   * MAC.
   */
  if (td != GNUTLS_MAC_FAILED)
    {
      MHD_gnutls_hash (td,
                       UINT64DATA (session->connection_state.
                                   read_sequence_number), 8);

      MHD_gnutls_hash (td, &type, 1);
      if (ver >= MHD_GNUTLS_PROTOCOL_TLS1_0)
        {                       /* TLS 1.x */
          MHD_gnutls_hash (td, &major, 1);
          MHD_gnutls_hash (td, &minor, 1);
        }
      MHD_gnutls_hash (td, &c_length, 2);

      if (length > 0)
        MHD_gnutls_hash (td, ciphertext.data, length);

      mac_deinit (td, MAC, ver);
    }

  /* This one was introduced to avoid a timing attack against the TLS
   * 1.0 protocol.
   */
  if (pad_failed != 0)
    return pad_failed;

  /* HMAC was not the same.
   */
  if ( (td != GNUTLS_MAC_FAILED) &&
       (memcmp (MAC, &ciphertext.data[length], hash_size) != 0) )
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_DECRYPTION_FAILED;
    }

  /* copy the decrypted stuff to compress_data.
   */
  if (compress_size < length)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_DECOMPRESSION_FAILED;
    }
  memcpy (compress_data, ciphertext.data, length);

  return length;
}