aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/tls/gnutls_priority.c
blob: 709f5515b430f9e8412b90e1e674ad32a8f4f61c (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
/*
 * Copyright (C) 2004, 2005, 2006, 2007 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
 *
 */

/* Here lies the code of the gnutls_*_set_priority() functions.
 */

#include "gnutls_int.h"
#include "gnutls_algorithms.h"
#include "gnutls_errors.h"
#include <gnutls_num.h>

#define MAX_ELEMENTS 48

/**
 * MHD_gnutls_cipher_set_priority - Sets the priority on the ciphers supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_CipherAlgorithm elements.
 *
 * Sets the priority on the ciphers supported by gnutls.
 * Priority is higher for elements specified before others.
 * After specifying the ciphers you want, you must append a 0.
 * Note that the priority is set on the client. The server does
 * not use the algorithm's priority except for disabling
 * algorithms that were not specified.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_cipher_set_priority (mhd_gtls_session_t session, const int *list)
{
  int num = 0, i;

  while (list[num] != 0)
    num++;
  if (num > MAX_ALGOS)
    num = MAX_ALGOS;
  session->internals.priorities.cipher.num_algorithms = num;

  for (i = 0; i < num; i++)
    {
      session->internals.priorities.cipher.priority[i] = list[i];
    }

  return 0;
}

inline static int
_set_priority (mhd_gtls_priority_st * st, const int *list)
{
  int num = 0, i;

  while (list[num] != 0)
    num++;
  if (num > MAX_ALGOS)
    num = MAX_ALGOS;
  st->num_algorithms = num;

  for (i = 0; i < num; i++)
    {
      st->priority[i] = list[i];
    }

  return 0;
}

/**
 * MHD_gnutls_kx_set_priority - Sets the priority on the key exchange algorithms supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_KeyExchangeAlgorithm elements.
 *
 * Sets the priority on the key exchange algorithms supported by gnutls.
 * Priority is higher for elements specified before others.
 * After specifying the algorithms you want, you must append a 0.
 * Note that the priority is set on the client. The server does
 * not use the algorithm's priority except for disabling
 * algorithms that were not specified.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_kx_set_priority (mhd_gtls_session_t session, const int *list)
{
  return _set_priority (&session->internals.priorities.kx, list);
}

/**
 * MHD_gnutls_mac_set_priority - Sets the priority on the mac algorithms supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_HashAlgorithm elements.
 *
 * Sets the priority on the mac algorithms supported by gnutls.
 * Priority is higher for elements specified before others.
 * After specifying the algorithms you want, you must append a 0.
 * Note that the priority is set on the client. The server does
 * not use the algorithm's priority except for disabling
 * algorithms that were not specified.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_mac_set_priority (mhd_gtls_session_t session, const int *list)
{
  return _set_priority (&session->internals.priorities.mac, list);
}

/**
 * MHD_gnutls_compression_set_priority - Sets the priority on the compression algorithms supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_CompressionMethod elements.
 *
 * Sets the priority on the compression algorithms supported by gnutls.
 * Priority is higher for elements specified before others.
 * After specifying the algorithms you want, you must append a 0.
 * Note that the priority is set on the client. The server does
 * not use the algorithm's priority except for disabling
 * algorithms that were not specified.
 *
 * TLS 1.0 does not define any compression algorithms except
 * NULL. Other compression algorithms are to be considered
 * as gnutls extensions.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_compression_set_priority (mhd_gtls_session_t session,
                                     const int *list)
{
  return _set_priority (&session->internals.priorities.compression, list);
}

/**
 * MHD_gnutls_protocol_set_priority - Sets the priority on the protocol versions supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_Protocol elements.
 *
 * Sets the priority on the protocol versions supported by gnutls.
 * This function actually enables or disables protocols. Newer protocol
 * versions always have highest priority.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_protocol_set_priority (mhd_gtls_session_t session, const int *list)
{
  int ret;

  ret = _set_priority (&session->internals.priorities.protocol, list);
  /* set the current version to the first in the chain.
   * This will be overridden later.
   */
  mhd_gtls_set_current_version (session, list[0]);

  return ret;
}

/**
 * MHD_gnutls_certificate_type_set_priority - Sets the priority on the certificate types supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @list: is a 0 terminated list of enum MHD_GNUTLS_CertificateType elements.
 *
 * Sets the priority on the certificate types supported by gnutls.
 * Priority is higher for elements specified before others.
 * After specifying the types you want, you must append a 0.
 * Note that the certificate type priority is set on the client.
 * The server does not use the cert type priority except for disabling
 * types that were not specified.
 *
 * Returns 0 on success.
 *
 **/
int
MHD_gnutls_certificate_type_set_priority (mhd_gtls_session_t session,
                                          const int *list)
{
#if ENABLE_OPENPGP
  return _set_priority (&session->internals.priorities.cert_type, list);
#else

  return GNUTLS_E_UNIMPLEMENTED_FEATURE;

#endif
}

static const int mhd_gtls_protocol_priority[] = { MHD_GNUTLS_TLS1_1,
  MHD_GNUTLS_TLS1_0,
  MHD_GNUTLS_SSL3,
  0
};

static const int mhd_gtls_cipher_priority_secure256[] =
  { MHD_GNUTLS_CIPHER_AES_256_CBC,
  0
};

static const int mhd_gtls_kx_priority_secure[] = { MHD_GNUTLS_KX_RSA,
  0
};

static const int mhd_gtls_mac_priority_secure[] = { MHD_GNUTLS_MAC_SHA1,
  0
};

static int mhd_gtls_cert_type_priority[] = { MHD_GNUTLS_CRT_X509,
  0
};

static const int mhd_gtls_comp_priority[] = { MHD_GNUTLS_COMP_NULL,
  0
};

typedef void (rmadd_func) (mhd_gtls_priority_st * priority_list, int alg);

/**
 * MHD_gnutls_priority_set - Sets priorities for the cipher suites supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @priority: is a #gnutls_priority_t structure.
 *
 * Sets the priorities to use on the ciphers, key exchange methods,
 * macs and compression methods.
 *
 * On success 0 is returned.
 *
 **/
int
MHD_gnutls_priority_set (mhd_gtls_session_t session,
                         gnutls_priority_t priority)
{
  if (priority == NULL)
    {
      gnutls_assert ();
      return GNUTLS_E_NO_CIPHER_SUITES;
    }

  memcpy (&session->internals.priorities, priority,
          sizeof (struct MHD_gtls_priority_st));

  return 0;
}

/**
 * MHD_tls_set_default_priority - Sets priorities for the cipher suites supported by gnutls.
 * @priority_cache: is a #gnutls_prioritity_t structure.
 * @priorities: is a string describing priorities
 * @err_pos: In case of an error this will have the position in the string the error occured
 *
 * Sets priorities for the ciphers, key exchange methods, macs and
 * compression methods. This is to avoid using the
 * gnutls_*_priority() functions.
 *
 * The #priorities option allows you to specify a semi-colon
 * separated list of the cipher priorities to enable.
 *
 * Unless the first keyword is "NONE" the defaults are:
 * Protocols: TLS1.1, TLS1.0, and SSL3.0.
 * Compression: NULL.
 * Certificate types: X.509, OpenPGP.
 *
 * You can also use predefined sets of ciphersuites: "PERFORMANCE"
 * all the "secure" ciphersuites are enabled, limited to 128 bit
 * ciphers and sorted by terms of speed performance.
 *
 * "NORMAL" option enables all "secure" ciphersuites. The 256-bit ciphers
 * are included as a fallback only. The ciphers are sorted by security margin.
 *
 * "SECURE128" flag enables all "secure" ciphersuites with ciphers up to
 * 128 bits, sorted by security margin.
 *
 * "SECURE256" flag enables all "secure" ciphersuites including the 256 bit
 * ciphers, sorted by security margin.
 *
 * "EXPORT" all the ciphersuites are enabled, including the
 * low-security 40 bit ciphers.
 *
 * "NONE" nothing is enabled. This disables even protocols and
 * compression methods.
 *
 * Special keywords:
 * '!' or '-' appended with an algorithm will remove this algorithm.
 * '+' appended with an algorithm will add this algorithm.
 * '%COMPAT' will enable compatibility features for a server.
 *
 * To avoid collisions in order to specify a compression algorithm in
 * this string you have to prefix it with "COMP-", protocol versions
 * with "VERS-" and certificate types with "CTYPE-". All other
 * algorithms don't need a prefix.
 *
 * For key exchange algorithms when in NORMAL or SECURE levels the
 * perfect forward secrecy algorithms take precendence of the other
 * protocols.  In all cases all the supported key exchange algorithms
 * are enabled (except for the RSA-EXPORT which is only enabled in
 * EXPORT level).
 *
 * Note that although one can select very long key sizes (such as 256 bits)
 * for symmetric algorithms, to actually increase security the public key
 * algorithms have to use longer key sizes as well.
 *
 * Examples: "NORMAL:!AES-128-CBC",
 * "EXPORT:!VERS-TLS1.0:+COMP-DEFLATE:+CTYPE-OPENPGP",
 * "NONE:+VERS-TLS1.0:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL", "NORMAL",
 * "NORMAL:%COMPAT".
 *
 * Returns: On syntax error GNUTLS_E_INVALID_REQUEST is returned and
 * 0 on success.
 **/
int
MHD_tls_set_default_priority (gnutls_priority_t * priority_cache,
                              const char *priorities, const char **err_pos)
{
  *priority_cache = gnutls_calloc (1, sizeof (struct MHD_gtls_priority_st));
  if (*priority_cache == NULL)
    {
      gnutls_assert ();
      return GNUTLS_E_MEMORY_ERROR;
    }

  /* set mode to "SECURE256" */
  _set_priority (&(*priority_cache)->protocol, mhd_gtls_protocol_priority);
  _set_priority (&(*priority_cache)->cipher,
                 mhd_gtls_cipher_priority_secure256);
  _set_priority (&(*priority_cache)->kx, mhd_gtls_kx_priority_secure);
  _set_priority (&(*priority_cache)->mac, mhd_gtls_mac_priority_secure);
  _set_priority (&(*priority_cache)->cert_type, mhd_gtls_cert_type_priority);
  _set_priority (&(*priority_cache)->compression, mhd_gtls_comp_priority);

  (*priority_cache)->no_padding = 0;
  return 0;
}

/**
 * MHD_gnutls_priority_deinit - Deinitialize the priorities cache for the cipher suites supported by gnutls.
 * @priority_cache: is a #gnutls_prioritity_t structure.
 *
 * Deinitializes the priority cache.
 *
 **/
void
MHD_gnutls_priority_deinit (gnutls_priority_t priority_cache)
{
  gnutls_free (priority_cache);
}

/**
 * MHD_gnutls_priority_set_direct - Sets priorities for the cipher suites supported by gnutls.
 * @session: is a #mhd_gtls_session_t structure.
 * @priorities: is a string describing priorities
 * @err_pos: In case of an error this will have the position in the string the error occured
 *
 * Sets the priorities to use on the ciphers, key exchange methods,
 * macs and compression methods. This function avoids keeping a
 * priority cache and is used to directly set string priorities to a
 * TLS session.  For documentation check the MHD_tls_set_default_priority().
 *
 * On syntax error GNUTLS_E_INVALID_REQUEST is returned and 0 on success.
 *
 **/
int
MHD_gnutls_priority_set_direct (mhd_gtls_session_t session,
                                const char *priorities, const char **err_pos)
{
  gnutls_priority_t prio;
  int ret;

  ret = MHD_tls_set_default_priority (&prio, priorities, err_pos);
  if (ret < 0)
    {
      gnutls_assert ();
      return ret;
    }

  ret = MHD_gnutls_priority_set (session, prio);
  if (ret < 0)
    {
      gnutls_assert ();
      return ret;
    }

  MHD_gnutls_priority_deinit (prio);

  return 0;
}