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
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include "tls/extensions/s2n_client_server_name.h"
#include <stdint.h>
#include <sys/param.h>
#include "tls/s2n_tls.h"
#include "tls/s2n_tls_parameters.h"
#include "utils/s2n_safety.h"
#define S2N_NAME_TYPE_HOST_NAME 0
static bool s2n_client_server_name_should_send(struct s2n_connection *conn);
static int s2n_client_server_name_send(struct s2n_connection *conn, struct s2n_stuffer *out);
static int s2n_client_server_name_recv(struct s2n_connection *conn, struct s2n_stuffer *extension);
const s2n_extension_type s2n_client_server_name_extension = {
.iana_value = TLS_EXTENSION_SERVER_NAME,
.is_response = false,
.send = s2n_client_server_name_send,
.recv = s2n_client_server_name_recv,
.should_send = s2n_client_server_name_should_send,
.if_missing = s2n_extension_noop_if_missing,
};
static bool s2n_client_server_name_should_send(struct s2n_connection *conn)
{
return conn && conn->server_name[0] != '\0';
}
static int s2n_client_server_name_send(struct s2n_connection *conn, struct s2n_stuffer *out)
{
struct s2n_stuffer_reservation server_name_list_size = { 0 };
POSIX_GUARD(s2n_stuffer_reserve_uint16(out, &server_name_list_size));
/* NameType, as described by RFC6066.
* host_name is currently the only possible NameType defined. */
POSIX_GUARD(s2n_stuffer_write_uint8(out, S2N_NAME_TYPE_HOST_NAME));
POSIX_GUARD(s2n_stuffer_write_uint16(out, strlen(conn->server_name)));
POSIX_GUARD(s2n_stuffer_write_bytes(out, (const uint8_t *) conn->server_name, strlen(conn->server_name)));
POSIX_GUARD(s2n_stuffer_write_vector_size(&server_name_list_size));
return S2N_SUCCESS;
}
/* Read the extension up to the first item in ServerNameList. Store the first entry's length in server_name_len.
* For now s2n ignores all subsequent items in ServerNameList.
*/
static int s2n_client_server_name_check(struct s2n_connection *conn, struct s2n_stuffer *extension, uint16_t *server_name_len)
{
POSIX_ENSURE_REF(conn);
uint16_t size_of_all;
POSIX_GUARD(s2n_stuffer_read_uint16(extension, &size_of_all));
POSIX_ENSURE_LTE(size_of_all, s2n_stuffer_data_available(extension));
uint8_t server_name_type;
POSIX_GUARD(s2n_stuffer_read_uint8(extension, &server_name_type));
POSIX_ENSURE_EQ(server_name_type, S2N_NAME_TYPE_HOST_NAME);
POSIX_GUARD(s2n_stuffer_read_uint16(extension, server_name_len));
POSIX_ENSURE_LT(*server_name_len, sizeof(conn->server_name));
POSIX_ENSURE_LTE(*server_name_len, s2n_stuffer_data_available(extension));
return S2N_SUCCESS;
}
static int s2n_client_server_name_recv(struct s2n_connection *conn, struct s2n_stuffer *extension)
{
POSIX_ENSURE_REF(conn);
/* Exit early if we've already parsed the server name */
if (conn->server_name[0]) {
return S2N_SUCCESS;
}
/* Ignore if malformed. We just won't use the server name. */
uint16_t server_name_len;
if (s2n_client_server_name_check(conn, extension, &server_name_len) != S2N_SUCCESS) {
return S2N_SUCCESS;
}
uint8_t *server_name;
POSIX_ENSURE_REF(server_name = s2n_stuffer_raw_read(extension, server_name_len));
POSIX_CHECKED_MEMCPY(conn->server_name, server_name, server_name_len);
return S2N_SUCCESS;
}
|