1
10
13
14
20
21
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
102
103
104
105
106
107
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
134
135
136
138
139
140
141
142
143
145
146
147
149
151
154
157
159
161
163
164
165
166
167
172
173
177
181
182
183
184
...
...
...
#define NX_SECURE_SOURCE_CODE
#include "nx_secure_tls.h"
#include "nx_secure_x509.h"
...
...
UINT _nx_secure_tls_remote_certificate_verify(NX_SECURE_TLS_SESSION *tls_session)
{
UINT status;
NX_SECURE_X509_CERT *remote_certificate;
NX_SECURE_X509_CERTIFICATE_STORE *store;
ULONG current_time;
/* ... */
store = &tls_session -> nx_secure_tls_credentials.nx_secure_tls_certificate_store;
status = _nx_secure_x509_remote_endpoint_certificate_get(store, &remote_certificate);
if (status)
{
return(NX_SECURE_TLS_NO_CERT_SPACE_ALLOCATED);
}if (status) { ... }
remote_certificate -> nx_secure_x509_public_cipher_metadata_area = tls_session -> nx_secure_public_cipher_metadata_area;
remote_certificate -> nx_secure_x509_public_cipher_metadata_size = tls_session -> nx_secure_public_cipher_metadata_size;
remote_certificate -> nx_secure_x509_hash_metadata_area = tls_session -> nx_secure_hash_mac_metadata_area;
remote_certificate -> nx_secure_x509_hash_metadata_size = tls_session -> nx_secure_hash_mac_metadata_size;
current_time = 0;
if (tls_session -> nx_secure_tls_session_time_function != NX_NULL)
{
current_time = tls_session -> nx_secure_tls_session_time_function();
status = _nx_secure_x509_expiration_check(remote_certificate, current_time);
if (status != NX_SUCCESS)
{
return(status);
}if (status != NX_SUCCESS) { ... }
}if (tls_session -> nx_secure_tls_session_time_function != NX_NULL) { ... }
/* ... */
status = _nx_secure_x509_certificate_chain_verify(store, remote_certificate);
if (status != NX_SUCCESS)
{
/* ... */
switch (status)
{
case NX_SECURE_X509_UNSUPPORTED_PUBLIC_CIPHER:
return(NX_SECURE_TLS_UNSUPPORTED_PUBLIC_CIPHER);case NX_SECURE_X509_UNSUPPORTED_PUBLIC_CIPHER:
case NX_SECURE_X509_UNKNOWN_CERT_SIG_ALGORITHM:
return(NX_SECURE_TLS_UNKNOWN_CERT_SIG_ALGORITHM);case NX_SECURE_X509_UNKNOWN_CERT_SIG_ALGORITHM:
case NX_SECURE_X509_CERTIFICATE_SIG_CHECK_FAILED:
return(NX_SECURE_TLS_CERTIFICATE_SIG_CHECK_FAILED);
#ifndef NX_SECURE_ALLOW_SELF_SIGNED_CERTIFICATEScase NX_SECURE_X509_CERTIFICATE_SIG_CHECK_FAILED:
case NX_SECURE_X509_INVALID_SELF_SIGNED_CERT:
return(NX_SECURE_TLS_INVALID_SELF_SIGNED_CERT);/* ... */
#endifcase NX_SECURE_X509_INVALID_SELF_SIGNED_CERT:
case NX_SECURE_X509_ISSUER_CERTIFICATE_NOT_FOUND:
return(NX_SECURE_TLS_ISSUER_CERTIFICATE_NOT_FOUND);case NX_SECURE_X509_ISSUER_CERTIFICATE_NOT_FOUND:
case NX_SECURE_X509_MISSING_CRYPTO_ROUTINE:
return(NX_SECURE_TLS_MISSING_CRYPTO_ROUTINE);case NX_SECURE_X509_MISSING_CRYPTO_ROUTINE:
default:
return(status);default
}switch (status) { ... }
}if (status != NX_SUCCESS) { ... }
if (tls_session -> nx_secure_tls_session_certificate_callback != NX_NULL)
{
status = tls_session -> nx_secure_tls_session_certificate_callback(tls_session, remote_certificate);
}if (tls_session -> nx_secure_tls_session_certificate_callback != NX_NULL) { ... }
/* ... */
if (tls_session -> nx_secure_tls_socket_type == NX_SECURE_TLS_SESSION_TYPE_CLIENT && status == NX_SUCCESS)
{
tls_session -> nx_secure_tls_received_remote_credentials = NX_TRUE;
}if (tls_session -> nx_secure_tls_socket_type == NX_SECURE_TLS_SESSION_TYPE_CLIENT && status == NX_SUCCESS) { ... }
return(status);
}{ ... }