2 * Copyright (C) 2002-2012 Free Software Foundation, Inc.
4 * Author: Nikos Mavrogiannopoulos
6 * This file is part of GnuTLS.
8 * The GnuTLS is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>
23 /* Functions to manipulate the session (gnutls_int.h), and some other stuff
24 * are included here. The file's name is traditionally gnutls_state even if the
25 * state has been renamed to session.
28 #include <gnutls_int.h>
29 #include <gnutls_errors.h>
30 #include <gnutls_auth.h>
31 #include <gnutls_num.h>
32 #include <gnutls_datum.h>
33 #include <gnutls_db.h>
34 #include <gnutls_record.h>
35 #include <gnutls_handshake.h>
36 #include <gnutls_dh.h>
37 #include <gnutls_buffers.h>
38 #include <gnutls_mbuffers.h>
39 #include <gnutls_state.h>
40 #include <gnutls_constate.h>
41 #include <auth/cert.h>
42 #include <auth/anon.h>
44 #include <algorithms.h>
45 #include <gnutls_rsa_export.h>
46 #include <gnutls_extensions.h>
48 #include <gnutls/dtls.h>
51 /* These should really be static, but src/tests.c calls them. Make
52 them public functions? */
54 _gnutls_rsa_pms_set_version (gnutls_session_t session
,
55 unsigned char major
, unsigned char minor
);
58 _gnutls_session_cert_type_set (gnutls_session_t session
,
59 gnutls_certificate_type_t ct
)
61 _gnutls_handshake_log("HSK[%p]: Selected certificate type %s (%d)\n", session
,
62 gnutls_certificate_type_get_name(ct
), ct
);
63 session
->security_parameters
.cert_type
= ct
;
67 _gnutls_session_ecc_curve_set (gnutls_session_t session
,
70 _gnutls_handshake_log("HSK[%p]: Selected ECC curve %s (%d)\n", session
, gnutls_ecc_curve_get_name(c
), c
);
71 session
->security_parameters
.ecc_curve
= c
;
76 * @session: is a #gnutls_session_t structure.
78 * Get currently used cipher.
80 * Returns: the currently used cipher, a #gnutls_cipher_algorithm_t
83 gnutls_cipher_algorithm_t
84 gnutls_cipher_get (gnutls_session_t session
)
86 record_parameters_st
*record_params
;
89 ret
= _gnutls_epoch_get (session
, EPOCH_READ_CURRENT
, &record_params
);
91 return gnutls_assert_val(GNUTLS_CIPHER_NULL
);
93 return record_params
->cipher_algorithm
;
97 * gnutls_certificate_type_get:
98 * @session: is a #gnutls_session_t structure.
100 * The certificate type is by default X.509, unless it is negotiated
101 * as a TLS extension.
103 * Returns: the currently used #gnutls_certificate_type_t certificate
106 gnutls_certificate_type_t
107 gnutls_certificate_type_get (gnutls_session_t session
)
109 return session
->security_parameters
.cert_type
;
114 * @session: is a #gnutls_session_t structure.
116 * Get currently used key exchange algorithm.
118 * Returns: the key exchange algorithm used in the last handshake, a
119 * #gnutls_kx_algorithm_t value.
121 gnutls_kx_algorithm_t
122 gnutls_kx_get (gnutls_session_t session
)
124 return session
->security_parameters
.kx_algorithm
;
129 * @session: is a #gnutls_session_t structure.
131 * Get currently used MAC algorithm.
133 * Returns: the currently used mac algorithm, a
134 * #gnutls_mac_algorithm_t value.
136 gnutls_mac_algorithm_t
137 gnutls_mac_get (gnutls_session_t session
)
139 record_parameters_st
*record_params
;
142 ret
= _gnutls_epoch_get (session
, EPOCH_READ_CURRENT
, &record_params
);
144 return gnutls_assert_val(GNUTLS_MAC_NULL
);
146 return record_params
->mac_algorithm
;
150 * gnutls_compression_get:
151 * @session: is a #gnutls_session_t structure.
153 * Get currently used compression algorithm.
155 * Returns: the currently used compression method, a
156 * #gnutls_compression_method_t value.
158 gnutls_compression_method_t
159 gnutls_compression_get (gnutls_session_t session
)
161 record_parameters_st
*record_params
;
164 ret
= _gnutls_epoch_get (session
, EPOCH_READ_CURRENT
, &record_params
);
166 return gnutls_assert_val(GNUTLS_COMP_NULL
);
168 return record_params
->compression_algorithm
;
171 /* Check if the given certificate type is supported.
172 * This means that it is enabled by the priority functions,
173 * and a matching certificate exists.
176 _gnutls_session_cert_type_supported (gnutls_session_t session
,
177 gnutls_certificate_type_t cert_type
)
180 unsigned cert_found
= 0;
181 gnutls_certificate_credentials_t cred
;
183 if (session
->security_parameters
.entity
== GNUTLS_SERVER
)
185 cred
= (gnutls_certificate_credentials_t
)
186 _gnutls_get_cred (session
, GNUTLS_CRD_CERTIFICATE
, NULL
);
189 return GNUTLS_E_UNSUPPORTED_CERTIFICATE_TYPE
;
191 if (cred
->server_get_cert_callback
== NULL
192 && cred
->get_cert_callback
== NULL
)
194 for (i
= 0; i
< cred
->ncerts
; i
++)
196 if (cred
->certs
[i
].cert_list
[0].type
== cert_type
)
204 /* no certificate is of that type.
206 return GNUTLS_E_UNSUPPORTED_CERTIFICATE_TYPE
;
210 if (session
->internals
.priorities
.cert_type
.algorithms
== 0
211 && cert_type
== DEFAULT_CERT_TYPE
)
214 for (i
= 0; i
< session
->internals
.priorities
.cert_type
.algorithms
; i
++)
216 if (session
->internals
.priorities
.cert_type
.priority
[i
] == cert_type
)
222 return GNUTLS_E_UNSUPPORTED_CERTIFICATE_TYPE
;
226 /* this function deinitializes all the internal parameters stored
227 * in a session struct.
230 deinit_internal_params (gnutls_session_t session
)
232 if (session
->internals
.params
.free_dh_params
)
233 gnutls_dh_params_deinit (session
->internals
.params
.dh_params
);
235 if (session
->internals
.params
.free_rsa_params
)
236 gnutls_rsa_params_deinit (session
->internals
.params
.rsa_params
);
238 _gnutls_handshake_hash_buffers_clear (session
);
240 memset (&session
->internals
.params
, 0, sizeof (session
->internals
.params
));
243 /* This function will clear all the variables in internals
244 * structure within the session, which depend on the current handshake.
245 * This is used to allow further handshakes.
248 _gnutls_handshake_internal_state_init (gnutls_session_t session
)
250 session
->internals
.extensions_sent_size
= 0;
252 /* by default no selected certificate */
253 session
->internals
.adv_version_major
= 0;
254 session
->internals
.adv_version_minor
= 0;
255 session
->internals
.direction
= 0;
257 /* use out of band data for the last
258 * handshake messages received.
260 session
->internals
.last_handshake_in
= -1;
261 session
->internals
.last_handshake_out
= -1;
263 session
->internals
.resumable
= RESUME_TRUE
;
265 session
->internals
.dtls
.hsk_read_seq
= 0;
266 session
->internals
.dtls
.hsk_write_seq
= 0;
267 gettime(&session
->internals
.dtls
.handshake_start_time
);
271 _gnutls_handshake_internal_state_clear (gnutls_session_t session
)
273 _gnutls_handshake_internal_state_init (session
);
275 deinit_internal_params (session
);
277 _gnutls_epoch_gc(session
);
279 session
->internals
.handshake_endtime
= 0;
282 #define MIN_DH_BITS 727
285 * @session: is a pointer to a #gnutls_session_t structure.
286 * @flags: indicate if this session is to be used for server or client.
288 * This function initializes the current session to null. Every
289 * session must be initialized before use, so internal structures can
290 * be allocated. This function allocates structures which can only
291 * be free'd by calling gnutls_deinit(). Returns %GNUTLS_E_SUCCESS (0) on success.
293 * @flags can be one of %GNUTLS_CLIENT and %GNUTLS_SERVER. For a DTLS
294 * entity, the flags %GNUTLS_DATAGRAM and %GNUTLS_NONBLOCK are
295 * also available. The latter flag will enable a non-blocking
296 * operation of the DTLS timers.
298 * Note that since version 3.1.2 this function enables some common
299 * TLS extensions such as session tickets and OCSP certificate status
300 * request in client side by default. To prevent that use the %GNUTLS_NO_EXTENSIONS
303 * Returns: %GNUTLS_E_SUCCESS on success, or an error code.
306 gnutls_init (gnutls_session_t
* session
, unsigned int flags
)
309 record_parameters_st
*epoch
;
311 *session
= gnutls_calloc (1, sizeof (struct gnutls_session_int
));
312 if (*session
== NULL
)
313 return GNUTLS_E_MEMORY_ERROR
;
315 ret
= _gnutls_epoch_alloc (*session
, 0, &epoch
);
319 return GNUTLS_E_MEMORY_ERROR
;
322 /* Set all NULL algos on epoch 0 */
323 _gnutls_epoch_set_null_algos (*session
, epoch
);
325 (*session
)->security_parameters
.epoch_next
= 1;
327 (*session
)->security_parameters
.entity
= (flags
&GNUTLS_SERVER
?GNUTLS_SERVER
:GNUTLS_CLIENT
);
329 /* the default certificate type for TLS */
330 (*session
)->security_parameters
.cert_type
= DEFAULT_CERT_TYPE
;
332 /* Initialize buffers */
333 _gnutls_buffer_init (&(*session
)->internals
.handshake_hash_buffer
);
334 _gnutls_buffer_init (&(*session
)->internals
.hb_remote_data
);
335 _gnutls_buffer_init (&(*session
)->internals
.hb_local_data
);
337 _mbuffer_head_init (&(*session
)->internals
.record_buffer
);
338 _mbuffer_head_init (&(*session
)->internals
.record_send_buffer
);
339 _mbuffer_head_init (&(*session
)->internals
.record_recv_buffer
);
341 _mbuffer_head_init (&(*session
)->internals
.handshake_send_buffer
);
342 _gnutls_handshake_recv_buffer_init(*session
);
344 (*session
)->internals
.expire_time
= DEFAULT_EXPIRE_TIME
; /* one hour default */
346 gnutls_dh_set_prime_bits ((*session
), MIN_DH_BITS
);
348 gnutls_handshake_set_max_packet_length ((*session
),
349 MAX_HANDSHAKE_PACKET_SIZE
);
351 /* set the socket pointers to -1;
353 (*session
)->internals
.transport_recv_ptr
= (gnutls_transport_ptr_t
) - 1;
354 (*session
)->internals
.transport_send_ptr
= (gnutls_transport_ptr_t
) - 1;
356 /* set the default maximum record size for TLS
358 (*session
)->security_parameters
.max_record_recv_size
=
359 DEFAULT_MAX_RECORD_SIZE
;
360 (*session
)->security_parameters
.max_record_send_size
=
361 DEFAULT_MAX_RECORD_SIZE
;
363 /* everything else not initialized here is initialized
364 * as NULL or 0. This is why calloc is used.
367 _gnutls_handshake_internal_state_init (*session
);
369 /* emulate old gnutls behavior for old applications that do not use the priority_*
372 (*session
)->internals
.priorities
.sr
= SR_PARTIAL
;
375 gnutls_transport_set_vec_push_function (*session
, system_writev
);
377 gnutls_transport_set_push_function (*session
, system_write
);
379 gnutls_transport_set_pull_function (*session
, system_read
);
380 gnutls_transport_set_errno_function (*session
, system_errno
);
381 gnutls_transport_set_pull_timeout_function (*session
, system_recv_timeout
);
383 (*session
)->internals
.hb_retrans_timeout_ms
= 1000;
384 (*session
)->internals
.hb_total_timeout_ms
= 60000;
386 if (flags
& GNUTLS_DATAGRAM
)
388 (*session
)->internals
.dtls
.mtu
= DTLS_DEFAULT_MTU
;
389 (*session
)->internals
.transport
= GNUTLS_DGRAM
;
391 (*session
)->internals
.dtls
.retrans_timeout_ms
= 1000;
392 (*session
)->internals
.dtls
.total_timeout_ms
= 60000;
395 (*session
)->internals
.transport
= GNUTLS_STREAM
;
397 if (flags
& GNUTLS_NONBLOCK
)
398 (*session
)->internals
.dtls
.blocking
= 0;
400 (*session
)->internals
.dtls
.blocking
= 1;
402 /* Enable useful extensions */
403 if ((flags
& GNUTLS_CLIENT
) && !(flags
& GNUTLS_NO_EXTENSIONS
))
405 gnutls_session_ticket_enable_client(*session
);
406 gnutls_ocsp_status_request_enable_client(*session
, NULL
, 0, NULL
);
412 /* returns RESUME_FALSE or RESUME_TRUE.
415 _gnutls_session_is_resumable (gnutls_session_t session
)
417 return session
->internals
.resumable
;
423 * @session: is a #gnutls_session_t structure.
425 * This function clears all buffers associated with the @session.
426 * This function will also remove session data from the session
427 * database if the session was terminated abnormally.
430 gnutls_deinit (gnutls_session_t session
)
437 /* remove auth info firstly */
438 _gnutls_free_auth_info (session
);
440 _gnutls_handshake_internal_state_clear (session
);
441 _gnutls_handshake_io_buffer_clear (session
);
442 _gnutls_ext_free_session_data (session
);
444 for (i
= 0; i
< MAX_EPOCH_INDEX
; i
++)
445 if (session
->record_parameters
[i
] != NULL
)
447 _gnutls_epoch_free (session
, session
->record_parameters
[i
]);
448 session
->record_parameters
[i
] = NULL
;
451 _gnutls_buffer_clear (&session
->internals
.handshake_hash_buffer
);
452 _gnutls_buffer_clear (&session
->internals
.hb_remote_data
);
453 _gnutls_buffer_clear (&session
->internals
.hb_local_data
);
455 _mbuffer_head_clear (&session
->internals
.record_buffer
);
456 _mbuffer_head_clear (&session
->internals
.record_recv_buffer
);
457 _mbuffer_head_clear (&session
->internals
.record_send_buffer
);
459 gnutls_credentials_clear (session
);
460 _gnutls_selected_certs_deinit (session
);
462 gnutls_pk_params_release(&session
->key
.ecdh_params
);
463 _gnutls_mpi_release (&session
->key
.ecdh_x
);
464 _gnutls_mpi_release (&session
->key
.ecdh_y
);
466 _gnutls_mpi_release (&session
->key
.KEY
);
467 _gnutls_mpi_release (&session
->key
.client_Y
);
468 _gnutls_mpi_release (&session
->key
.client_p
);
469 _gnutls_mpi_release (&session
->key
.client_g
);
471 _gnutls_mpi_release (&session
->key
.u
);
472 _gnutls_mpi_release (&session
->key
.a
);
473 _gnutls_mpi_release (&session
->key
.x
);
474 _gnutls_mpi_release (&session
->key
.A
);
475 _gnutls_mpi_release (&session
->key
.B
);
476 _gnutls_mpi_release (&session
->key
.b
);
479 _gnutls_mpi_release (&session
->key
.rsa
[0]);
480 _gnutls_mpi_release (&session
->key
.rsa
[1]);
482 _gnutls_mpi_release (&session
->key
.dh_secret
);
484 memset (session
, 0, sizeof (struct gnutls_session_int
));
485 gnutls_free (session
);
488 /* Returns the minimum prime bits that are acceptable.
491 _gnutls_dh_set_peer_public (gnutls_session_t session
, bigint_t
public)
496 switch (gnutls_auth_get_type (session
))
498 case GNUTLS_CRD_ANON
:
500 anon_auth_info_t info
;
501 info
= _gnutls_get_auth_info (session
);
503 return GNUTLS_E_INTERNAL_ERROR
;
510 psk_auth_info_t info
;
511 info
= _gnutls_get_auth_info (session
);
513 return GNUTLS_E_INTERNAL_ERROR
;
518 case GNUTLS_CRD_CERTIFICATE
:
520 cert_auth_info_t info
;
522 info
= _gnutls_get_auth_info (session
);
524 return GNUTLS_E_INTERNAL_ERROR
;
531 return GNUTLS_E_INTERNAL_ERROR
;
534 if (dh
->public_key
.data
)
535 _gnutls_free_datum (&dh
->public_key
);
537 ret
= _gnutls_mpi_dprint_lz (public, &dh
->public_key
);
548 _gnutls_dh_set_secret_bits (gnutls_session_t session
, unsigned bits
)
550 switch (gnutls_auth_get_type (session
))
552 case GNUTLS_CRD_ANON
:
554 anon_auth_info_t info
;
555 info
= _gnutls_get_auth_info (session
);
557 return GNUTLS_E_INTERNAL_ERROR
;
558 info
->dh
.secret_bits
= bits
;
563 psk_auth_info_t info
;
564 info
= _gnutls_get_auth_info (session
);
566 return GNUTLS_E_INTERNAL_ERROR
;
567 info
->dh
.secret_bits
= bits
;
570 case GNUTLS_CRD_CERTIFICATE
:
572 cert_auth_info_t info
;
574 info
= _gnutls_get_auth_info (session
);
576 return GNUTLS_E_INTERNAL_ERROR
;
578 info
->dh
.secret_bits
= bits
;
582 return GNUTLS_E_INTERNAL_ERROR
;
589 /* This function will set in the auth info structure the
590 * RSA exponent and the modulus.
593 _gnutls_rsa_export_set_pubkey (gnutls_session_t session
,
594 bigint_t exponent
, bigint_t modulus
)
596 cert_auth_info_t info
;
599 info
= _gnutls_get_auth_info (session
);
601 return GNUTLS_E_INTERNAL_ERROR
;
603 if (info
->rsa_export
.modulus
.data
)
604 _gnutls_free_datum (&info
->rsa_export
.modulus
);
606 if (info
->rsa_export
.exponent
.data
)
607 _gnutls_free_datum (&info
->rsa_export
.exponent
);
609 ret
= _gnutls_mpi_dprint_lz (modulus
, &info
->rsa_export
.modulus
);
616 ret
= _gnutls_mpi_dprint_lz (exponent
, &info
->rsa_export
.exponent
);
620 _gnutls_free_datum (&info
->rsa_export
.modulus
);
628 /* Sets the prime and the generator in the auth info structure.
631 _gnutls_dh_set_group (gnutls_session_t session
, bigint_t gen
, bigint_t prime
)
636 switch (gnutls_auth_get_type (session
))
638 case GNUTLS_CRD_ANON
:
640 anon_auth_info_t info
;
641 info
= _gnutls_get_auth_info (session
);
643 return GNUTLS_E_INTERNAL_ERROR
;
650 psk_auth_info_t info
;
651 info
= _gnutls_get_auth_info (session
);
653 return GNUTLS_E_INTERNAL_ERROR
;
658 case GNUTLS_CRD_CERTIFICATE
:
660 cert_auth_info_t info
;
662 info
= _gnutls_get_auth_info (session
);
664 return GNUTLS_E_INTERNAL_ERROR
;
671 return GNUTLS_E_INTERNAL_ERROR
;
675 _gnutls_free_datum (&dh
->prime
);
677 if (dh
->generator
.data
)
678 _gnutls_free_datum (&dh
->generator
);
682 ret
= _gnutls_mpi_dprint_lz (prime
, &dh
->prime
);
691 ret
= _gnutls_mpi_dprint_lz (gen
, &dh
->generator
);
695 _gnutls_free_datum (&dh
->prime
);
702 #ifdef ENABLE_OPENPGP
704 * gnutls_openpgp_send_cert:
705 * @session: is a pointer to a #gnutls_session_t structure.
706 * @status: is one of GNUTLS_OPENPGP_CERT, or GNUTLS_OPENPGP_CERT_FINGERPRINT
708 * This function will order gnutls to send the key fingerprint
709 * instead of the key in the initial handshake procedure. This should
710 * be used with care and only when there is indication or knowledge
711 * that the server can obtain the client's key.
714 gnutls_openpgp_send_cert (gnutls_session_t session
,
715 gnutls_openpgp_crt_status_t status
)
717 session
->internals
.pgp_fingerprint
= status
;
722 * gnutls_certificate_send_x509_rdn_sequence:
723 * @session: is a pointer to a #gnutls_session_t structure.
726 * If status is non zero, this function will order gnutls not to send
727 * the rdnSequence in the certificate request message. That is the
728 * server will not advertise its trusted CAs to the peer. If status
729 * is zero then the default behaviour will take effect, which is to
730 * advertise the server's trusted CAs.
732 * This function has no effect in clients, and in authentication
733 * methods other than certificate with X.509 certificates.
736 gnutls_certificate_send_x509_rdn_sequence (gnutls_session_t session
,
739 session
->internals
.ignore_rdn_sequence
= status
;
742 #ifdef ENABLE_OPENPGP
744 _gnutls_openpgp_send_fingerprint (gnutls_session_t session
)
746 return session
->internals
.pgp_fingerprint
;
751 * _gnutls_record_set_default_version - Used to set the default version for the first record packet
752 * @session: is a #gnutls_session_t structure.
753 * @major: is a tls major version
754 * @minor: is a tls minor version
756 * This function sets the default version that we will use in the first
757 * record packet (client hello). This function is only useful to people
758 * that know TLS internals and want to debug other implementations.
761 _gnutls_record_set_default_version (gnutls_session_t session
,
762 unsigned char major
, unsigned char minor
)
764 session
->internals
.default_record_version
[0] = major
;
765 session
->internals
.default_record_version
[1] = minor
;
769 * gnutls_handshake_set_private_extensions:
770 * @session: is a #gnutls_session_t structure.
771 * @allow: is an integer (0 or 1)
773 * This function will enable or disable the use of private cipher
774 * suites (the ones that start with 0xFF). By default or if @allow
775 * is 0 then these cipher suites will not be advertized nor used.
777 * Currently GnuTLS does not include such cipher-suites or
778 * compression algorithms.
780 * Enabling the private ciphersuites when talking to other than
781 * gnutls servers and clients may cause interoperability problems.
784 gnutls_handshake_set_private_extensions (gnutls_session_t session
, int allow
)
786 session
->internals
.enable_private
= allow
;
790 _gnutls_cal_PRF_A (gnutls_mac_algorithm_t algorithm
,
791 const void *secret
, int secret_size
,
792 const void *seed
, int seed_size
, void *result
)
796 ret
= _gnutls_hmac_fast (algorithm
, secret
, secret_size
, seed
, seed_size
, result
);
798 return gnutls_assert_val(ret
);
803 #define MAX_SEED_SIZE 200
805 /* Produces "total_bytes" bytes using the hash algorithm specified.
806 * (used in the PRF function)
809 P_hash (gnutls_mac_algorithm_t algorithm
,
810 const uint8_t * secret
, int secret_size
,
811 const uint8_t * seed
, int seed_size
,
812 int total_bytes
, uint8_t * ret
)
816 int i
, times
, how
, blocksize
, A_size
;
817 uint8_t final
[MAX_HASH_SIZE
], Atmp
[MAX_SEED_SIZE
];
818 int output_bytes
, result
;
820 if (seed_size
> MAX_SEED_SIZE
|| total_bytes
<= 0)
823 return GNUTLS_E_INTERNAL_ERROR
;
826 blocksize
= _gnutls_hmac_get_algo_len (algorithm
);
831 output_bytes
+= blocksize
;
833 while (output_bytes
< total_bytes
);
837 memcpy (Atmp
, seed
, seed_size
);
840 times
= output_bytes
/ blocksize
;
842 for (i
= 0; i
< times
; i
++)
844 result
= _gnutls_hmac_init (&td2
, algorithm
, secret
, secret_size
);
851 /* here we calculate A(i+1) */
853 _gnutls_cal_PRF_A (algorithm
, secret
, secret_size
, Atmp
,
857 _gnutls_hmac_deinit (&td2
, final
);
863 _gnutls_hmac (&td2
, Atmp
, A_size
);
864 _gnutls_hmac (&td2
, seed
, seed_size
);
865 _gnutls_hmac_deinit (&td2
, final
);
867 if ((1 + i
) * blocksize
< total_bytes
)
873 how
= total_bytes
- (i
) * blocksize
;
878 memcpy (&ret
[i
* blocksize
], final
, how
);
885 #define MAX_PRF_BYTES 200
887 /* The PRF function expands a given secret
888 * needed by the TLS specification. ret must have a least total_bytes
892 _gnutls_PRF (gnutls_session_t session
,
893 const uint8_t * secret
, unsigned int secret_size
, const char *label
,
894 int label_size
, const uint8_t * seed
, int seed_size
,
895 int total_bytes
, void *ret
)
897 int l_s
, s_seed_size
;
898 const uint8_t *s1
, *s2
;
899 uint8_t s_seed
[MAX_SEED_SIZE
];
900 uint8_t o1
[MAX_PRF_BYTES
], o2
[MAX_PRF_BYTES
];
902 gnutls_protocol_t ver
= gnutls_protocol_get_version (session
);
904 if (total_bytes
> MAX_PRF_BYTES
)
907 return GNUTLS_E_INTERNAL_ERROR
;
909 /* label+seed = s_seed */
910 s_seed_size
= seed_size
+ label_size
;
912 if (s_seed_size
> MAX_SEED_SIZE
)
915 return GNUTLS_E_INTERNAL_ERROR
;
918 memcpy (s_seed
, label
, label_size
);
919 memcpy (&s_seed
[label_size
], seed
, seed_size
);
921 if (_gnutls_version_has_selectable_prf (ver
))
924 P_hash (_gnutls_cipher_suite_get_prf(session
->security_parameters
.cipher_suite
),
926 s_seed
, s_seed_size
, total_bytes
, ret
);
935 l_s
= secret_size
/ 2;
940 if (secret_size
% 2 != 0)
946 P_hash (GNUTLS_MAC_MD5
, s1
, l_s
, s_seed
, s_seed_size
,
955 P_hash (GNUTLS_MAC_SHA1
, s2
, l_s
, s_seed
, s_seed_size
,
963 memxor (o1
, o2
, total_bytes
);
965 memcpy (ret
, o1
, total_bytes
);
974 * @session: is a #gnutls_session_t structure.
975 * @label_size: length of the @label variable.
976 * @label: label used in PRF computation, typically a short string.
977 * @seed_size: length of the @seed variable.
978 * @seed: optional extra data to seed the PRF with.
979 * @outsize: size of pre-allocated output buffer to hold the output.
980 * @out: pre-allocate buffer to hold the generated data.
982 * Apply the TLS Pseudo-Random-Function (PRF) on the master secret
983 * and the provided data.
985 * The @label variable usually contains a string denoting the purpose
986 * for the generated data. The @seed usually contains data such as the
987 * client and server random, perhaps together with some additional
988 * data that is added to guarantee uniqueness of the output for a
989 * particular purpose.
991 * Because the output is not guaranteed to be unique for a particular
992 * session unless @seed includes the client random and server random
993 * fields (the PRF would output the same data on another connection
994 * resumed from the first one), it is not recommended to use this
995 * function directly. The gnutls_prf() function seeds the PRF with the
996 * client and server random fields directly, and is recommended if you
997 * want to generate pseudo random data unique for each session.
999 * Returns: %GNUTLS_E_SUCCESS on success, or an error code.
1002 gnutls_prf_raw (gnutls_session_t session
,
1005 size_t seed_size
, const char *seed
, size_t outsize
, char *out
)
1009 ret
= _gnutls_PRF (session
,
1010 session
->security_parameters
.master_secret
,
1013 label_size
, (uint8_t *) seed
, seed_size
, outsize
, out
);
1020 * @session: is a #gnutls_session_t structure.
1021 * @label_size: length of the @label variable.
1022 * @label: label used in PRF computation, typically a short string.
1023 * @server_random_first: non-0 if server random field should be first in seed
1024 * @extra_size: length of the @extra variable.
1025 * @extra: optional extra data to seed the PRF with.
1026 * @outsize: size of pre-allocated output buffer to hold the output.
1027 * @out: pre-allocate buffer to hold the generated data.
1029 * Apply the TLS Pseudo-Random-Function (PRF) on the master secret
1030 * and the provided data, seeded with the client and server random fields.
1032 * The @label variable usually contains a string denoting the purpose
1033 * for the generated data. The @server_random_first indicates whether
1034 * the client random field or the server random field should be first
1035 * in the seed. Non-0 indicates that the server random field is first,
1036 * 0 that the client random field is first.
1038 * The @extra variable can be used to add more data to the seed, after
1039 * the random variables. It can be used to make sure the
1040 * generated output is strongly connected to some additional data
1041 * (e.g., a string used in user authentication).
1043 * The output is placed in @out, which must be pre-allocated.
1045 * Returns: %GNUTLS_E_SUCCESS on success, or an error code.
1048 gnutls_prf (gnutls_session_t session
,
1051 int server_random_first
,
1052 size_t extra_size
, const char *extra
, size_t outsize
, char *out
)
1056 size_t seedsize
= 2 * GNUTLS_RANDOM_SIZE
+ extra_size
;
1058 seed
= gnutls_malloc (seedsize
);
1062 return GNUTLS_E_MEMORY_ERROR
;
1065 memcpy (seed
, server_random_first
?
1066 session
->security_parameters
.server_random
:
1067 session
->security_parameters
.client_random
, GNUTLS_RANDOM_SIZE
);
1068 memcpy (seed
+ GNUTLS_RANDOM_SIZE
, server_random_first
?
1069 session
->security_parameters
.client_random
:
1070 session
->security_parameters
.server_random
, GNUTLS_RANDOM_SIZE
);
1072 memcpy (seed
+ 2 * GNUTLS_RANDOM_SIZE
, extra
, extra_size
);
1074 ret
= _gnutls_PRF (session
, session
->security_parameters
.master_secret
,
1076 label
, label_size
, seed
, seedsize
, outsize
, out
);
1084 * gnutls_session_is_resumed:
1085 * @session: is a #gnutls_session_t structure.
1087 * Check whether session is resumed or not.
1089 * Returns: non zero if this session is resumed, or a zero if this is
1093 gnutls_session_is_resumed (gnutls_session_t session
)
1095 if (session
->security_parameters
.entity
== GNUTLS_CLIENT
)
1097 if (session
->security_parameters
.session_id_size
> 0 &&
1098 session
->security_parameters
.session_id_size
==
1099 session
->internals
.resumed_security_parameters
.session_id_size
1100 && memcmp (session
->security_parameters
.session_id
,
1102 resumed_security_parameters
.session_id
,
1103 session
->security_parameters
.session_id_size
) == 0)
1108 if (session
->internals
.resumed
!= RESUME_FALSE
)
1116 * gnutls_session_resumption_requested:
1117 * @session: is a #gnutls_session_t structure.
1119 * Check whether the client has asked for session resumption.
1120 * This function is valid only on server side.
1122 * Returns: non zero if session resumption was asked, or a zero if not.
1125 gnutls_session_resumption_requested(gnutls_session_t session
)
1127 if (session
->security_parameters
.entity
== GNUTLS_CLIENT
)
1133 return session
->internals
.resumption_requested
;
1138 * _gnutls_session_is_export - Used to check whether this session is of export grade
1139 * @session: is a #gnutls_session_t structure.
1141 * This function will return non zero if this session is of export grade.
1144 _gnutls_session_is_export (gnutls_session_t session
)
1146 gnutls_cipher_algorithm_t cipher
;
1149 _gnutls_cipher_suite_get_cipher_algo (session
->
1150 security_parameters
.cipher_suite
);
1152 if (_gnutls_cipher_get_export_flag (cipher
) != 0)
1159 * _gnutls_session_is_psk - Used to check whether this session uses PSK kx
1160 * @session: is a #gnutls_session_t structure.
1162 * This function will return non zero if this session uses a PSK key
1163 * exchange algorithm.
1166 _gnutls_session_is_psk (gnutls_session_t session
)
1168 gnutls_kx_algorithm_t kx
;
1171 _gnutls_cipher_suite_get_kx_algo (session
->
1172 security_parameters
.cipher_suite
);
1173 if (kx
== GNUTLS_KX_PSK
|| kx
== GNUTLS_KX_DHE_PSK
)
1180 * _gnutls_session_is_ecc - Used to check whether this session uses ECC kx
1181 * @session: is a #gnutls_session_t structure.
1183 * This function will return non zero if this session uses an elliptic
1184 * curves key exchange exchange algorithm.
1187 _gnutls_session_is_ecc (gnutls_session_t session
)
1189 gnutls_kx_algorithm_t kx
;
1191 /* We get the key exchange algorithm through the ciphersuite because
1192 * the negotiated key exchange might not have been set yet.
1195 _gnutls_cipher_suite_get_kx_algo (session
->
1196 security_parameters
.cipher_suite
);
1198 return _gnutls_kx_is_ecc(kx
);
1202 * gnutls_session_get_ptr:
1203 * @session: is a #gnutls_session_t structure.
1205 * Get user pointer for session. Useful in callbacks. This is the
1206 * pointer set with gnutls_session_set_ptr().
1208 * Returns: the user given pointer from the session structure, or
1209 * %NULL if it was never set.
1212 gnutls_session_get_ptr (gnutls_session_t session
)
1214 return session
->internals
.user_ptr
;
1218 * gnutls_session_set_ptr:
1219 * @session: is a #gnutls_session_t structure.
1220 * @ptr: is the user pointer
1222 * This function will set (associate) the user given pointer @ptr to
1223 * the session structure. This pointer can be accessed with
1224 * gnutls_session_get_ptr().
1227 gnutls_session_set_ptr (gnutls_session_t session
, void *ptr
)
1229 session
->internals
.user_ptr
= ptr
;
1234 * gnutls_record_get_direction:
1235 * @session: is a #gnutls_session_t structure.
1237 * This function provides information about the internals of the
1238 * record protocol and is only useful if a prior gnutls function call
1239 * (e.g. gnutls_handshake()) was interrupted for some reason, that
1240 * is, if a function returned %GNUTLS_E_INTERRUPTED or
1241 * %GNUTLS_E_AGAIN. In such a case, you might want to call select()
1242 * or poll() before calling the interrupted gnutls function again. To
1243 * tell you whether a file descriptor should be selected for either
1244 * reading or writing, gnutls_record_get_direction() returns 0 if the
1245 * interrupted function was trying to read data, and 1 if it was
1246 * trying to write data.
1248 * Returns: 0 if trying to read data, 1 if trying to write data.
1251 gnutls_record_get_direction (gnutls_session_t session
)
1253 return session
->internals
.direction
;
1257 * _gnutls_rsa_pms_set_version - Sets a version to be used at the RSA PMS
1258 * @session: is a #gnutls_session_t structure.
1259 * @major: is the major version to use
1260 * @minor: is the minor version to use
1262 * This function will set the given version number to be used at the
1263 * RSA PMS secret. This is only useful to clients, which want to
1264 * test server's capabilities.
1267 _gnutls_rsa_pms_set_version (gnutls_session_t session
,
1268 unsigned char major
, unsigned char minor
)
1270 session
->internals
.rsa_pms_version
[0] = major
;
1271 session
->internals
.rsa_pms_version
[1] = minor
;
1275 * gnutls_handshake_set_post_client_hello_function:
1276 * @session: is a #gnutls_session_t structure.
1277 * @func: is the function to be called
1279 * This function will set a callback to be called after the client
1280 * hello has been received (callback valid in server side only). This
1281 * allows the server to adjust settings based on received extensions.
1283 * Those settings could be ciphersuites, requesting certificate, or
1284 * anything else except for version negotiation (this is done before
1285 * the hello message is parsed).
1287 * This callback must return 0 on success or a gnutls error code to
1288 * terminate the handshake.
1290 * Warning: You should not use this function to terminate the
1291 * handshake based on client input unless you know what you are
1292 * doing. Before the handshake is finished there is no way to know if
1293 * there is a man-in-the-middle attack being performed.
1296 gnutls_handshake_set_post_client_hello_function (gnutls_session_t session
,
1297 gnutls_handshake_post_client_hello_func
1300 session
->internals
.user_hello_func
= func
;
1304 * gnutls_session_enable_compatibility_mode:
1305 * @session: is a #gnutls_session_t structure.
1307 * This function can be used to disable certain (security) features in
1308 * TLS in order to maintain maximum compatibility with buggy
1309 * clients. Because several trade-offs with security are enabled,
1310 * if required they will be reported through the audit subsystem.
1312 * Normally only servers that require maximum compatibility with
1313 * everything out there, need to call this function.
1316 gnutls_session_enable_compatibility_mode (gnutls_session_t session
)
1318 ENABLE_COMPAT(&session
->internals
.priorities
);
1322 * gnutls_session_channel_binding:
1323 * @session: is a #gnutls_session_t structure.
1324 * @cbtype: an #gnutls_channel_binding_t enumeration type
1325 * @cb: output buffer array with data
1327 * Extract given channel binding data of the @cbtype (e.g.,
1328 * %GNUTLS_CB_TLS_UNIQUE) type.
1330 * Returns: %GNUTLS_E_SUCCESS on success,
1331 * %GNUTLS_E_UNIMPLEMENTED_FEATURE if the @cbtype is unsupported,
1332 * %GNUTLS_E_CHANNEL_BINDING_NOT_AVAILABLE if the data is not
1333 * currently available, or an error code.
1338 gnutls_session_channel_binding (gnutls_session_t session
,
1339 gnutls_channel_binding_t cbtype
,
1340 gnutls_datum_t
* cb
)
1342 if (cbtype
!= GNUTLS_CB_TLS_UNIQUE
)
1343 return GNUTLS_E_UNIMPLEMENTED_FEATURE
;
1345 if (!session
->internals
.initial_negotiation_completed
)
1346 return GNUTLS_E_CHANNEL_BINDING_NOT_AVAILABLE
;
1348 cb
->size
= session
->internals
.cb_tls_unique_len
;
1349 cb
->data
= gnutls_malloc (cb
->size
);
1350 if (cb
->data
== NULL
)
1351 return GNUTLS_E_MEMORY_ERROR
;
1353 memcpy (cb
->data
, session
->internals
.cb_tls_unique
, cb
->size
);
1359 * gnutls_ecc_curve_get:
1360 * @session: is a #gnutls_session_t structure.
1362 * Returns the currently used elliptic curve. Only valid
1363 * when using an elliptic curve ciphersuite.
1365 * Returns: the currently used curve, a #gnutls_ecc_curve_t
1370 gnutls_ecc_curve_t
gnutls_ecc_curve_get(gnutls_session_t session
)
1372 return _gnutls_session_ecc_curve_get(session
);
1375 #undef gnutls_protocol_get_version
1377 * gnutls_protocol_get_version:
1378 * @session: is a #gnutls_session_t structure.
1380 * Get TLS version, a #gnutls_protocol_t value.
1382 * Returns: The version of the currently used protocol.
1385 gnutls_protocol_get_version (gnutls_session_t session
)
1387 return _gnutls_protocol_get_version(session
);
1391 * gnutls_session_get_random:
1392 * @session: is a #gnutls_session_t structure.
1393 * @client: the client part of the random
1394 * @server: the server part of the random
1396 * This function returns pointers to the client and server
1397 * random fields used in the TLS handshake. The pointers are
1398 * not to be modified or deallocated.
1400 * If a client random value has not yet been established, the output
1406 gnutls_session_get_random (gnutls_session_t session
, gnutls_datum_t
* client
, gnutls_datum_t
* server
)
1410 client
->data
= session
->security_parameters
.client_random
;
1411 client
->size
= sizeof(session
->security_parameters
.client_random
);
1416 server
->data
= session
->security_parameters
.server_random
;
1417 server
->size
= sizeof(session
->security_parameters
.server_random
);