-
Notifications
You must be signed in to change notification settings - Fork 18
/
evp-function-specs.saw
216 lines (165 loc) · 9.5 KB
/
evp-function-specs.saw
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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
let {{ ia32cap = [0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff] : [4][32] }};
let EVP_PKEY_CTX_new_id_spec = do {
crucible_alloc_global "EVP_PKEY_rsa_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_rsa_pss_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_ec_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_hkdf_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_hmac_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_rsa_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_rsa_pss_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_ec_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_hkdf_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_hmac_pkey_meth_once";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.0";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.1";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.2";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.3";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.4";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_once";
crucible_execute_func [(crucible_term {{ `EVP_PKEY_EC : [32] }}), crucible_null];
ctx_ptr <- ptr_to_new_evp_pkey_ctx_st crucible_null;
crucible_return ctx_ptr;
};
let EVP_PKEY_CTX_new_spec = do {
crucible_alloc_global "EVP_PKEY_rsa_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_rsa_pss_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_ec_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_hkdf_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_hmac_pkey_meth_storage";
crucible_alloc_global "EVP_PKEY_rsa_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_rsa_pss_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_ec_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_hkdf_pkey_meth_once";
crucible_alloc_global "EVP_PKEY_hmac_pkey_meth_once";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.0";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.1";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.2";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.3";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_storage.0.4";
crucible_alloc_global "AWSLC_fips_evp_pkey_methods_once";
pkey_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_st");
ec_key_ptr <- crucible_fresh_pointer (llvm_struct "struct.ec_key_st");
references <- crucible_fresh_var "references" i32;
points_to_evp_pkey_st_with_references pkey_ptr references ec_key_ptr;
crucible_execute_func [pkey_ptr, crucible_null];
references' <- crucible_fresh_var "references'" i32;
points_to_evp_pkey_st_with_references pkey_ptr references' ec_key_ptr;
ctx_ptr <- ptr_to_new_evp_pkey_ctx_st pkey_ptr;
crucible_return ctx_ptr;
};
let EVP_PKEY_operation_init_spec op = do {
ctx_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
points_to_evp_pkey_ctx_st_common ctx_ptr pmeth_ptr;
crucible_execute_func [ctx_ptr, (crucible_term {{ `op : [32] }})];
points_to_evp_pkey_ctx_st_common ctx_ptr pmeth_ptr;
crucible_points_to (crucible_field ctx_ptr "operation") (crucible_term {{ `op : [32] }});
crucible_return (crucible_term {{ 1 : [32] }});
};
let EVP_PKEY_CTX_set_ec_paramgen_curve_nid_spec = do {
ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
points_to_evp_pkey_ctx_st_common ctx_ptr pmeth_ptr;
crucible_points_to (crucible_field ctx_ptr "operation") (crucible_term {{ `EVP_PKEY_OP_PARAMGEN : [32] }});
ec_pkey_ctx_ptr <- crucible_alloc (llvm_struct "struct.EC_PKEY_CTX");
crucible_points_to (crucible_field ec_pkey_ctx_ptr "gen_group") crucible_null;
crucible_points_to (crucible_field ctx_ptr "data") ec_pkey_ctx_ptr;
crucible_execute_func [ctx_ptr, (crucible_term {{ `NID_secp384r1 : [32] }})];
group_ptr <- pointer_to_fresh_ec_group_st;
crucible_points_to (crucible_field ec_pkey_ctx_ptr "gen_group") group_ptr;
crucible_return (crucible_term {{ 1 : [32] }});
};
let EVP_PKEY_paramgen_spec = do {
ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
points_to_evp_pkey_ctx_st_common ctx_ptr pmeth_ptr;
crucible_points_to (crucible_field ctx_ptr "operation") (crucible_term {{ `EVP_PKEY_OP_PARAMGEN : [32] }});
ec_pkey_ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.EC_PKEY_CTX");
group_ptr <- pointer_to_fresh_ec_group_st;
crucible_points_to (crucible_field ec_pkey_ctx_ptr "gen_group") group_ptr;
crucible_points_to (crucible_field ctx_ptr "data") ec_pkey_ctx_ptr;
out_pkey_ptr_ptr <- crucible_alloc i64;
crucible_points_to out_pkey_ptr_ptr crucible_null;
crucible_execute_func [ctx_ptr, out_pkey_ptr_ptr];
out_key_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_st");
ec_key_ptr <- crucible_alloc (llvm_struct "struct.ec_key_st");
points_to_ec_key_st ec_key_ptr group_ptr crucible_null (true, crucible_null);
points_to_evp_pkey_st_with_references out_key_ptr {{ 1 : [32] }} ec_key_ptr;
crucible_points_to out_pkey_ptr_ptr out_key_ptr;
crucible_return (crucible_term {{ 1 : [32] }});
};
let EVP_PKEY_keygen_spec = do {
global_alloc_init "OPENSSL_ia32cap_P" {{ ia32cap }};
alloc_p384_felem_methods_globals;
d <- crucible_fresh_cryptol_var "d" {| Integer |};
crucible_ghost_value ec_random_nonzero_scalar_out d;
crucible_ghost_value bn_rand_range_words_out d;
ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
points_to_evp_pkey_ctx_st_common ctx_ptr pmeth_ptr;
crucible_points_to (crucible_field ctx_ptr "operation") (crucible_term {{ `EVP_PKEY_OP_KEYGEN : [32] }});
ec_pkey_ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.EC_PKEY_CTX");
group_ptr <- pointer_to_fresh_ec_group_st;
crucible_points_to (crucible_field ec_pkey_ctx_ptr "gen_group") group_ptr;
crucible_points_to (crucible_field ctx_ptr "data") ec_pkey_ctx_ptr;
out_pkey_ptr_ptr <- crucible_alloc i64;
crucible_points_to out_pkey_ptr_ptr crucible_null;
crucible_execute_func [ctx_ptr, out_pkey_ptr_ptr];
global_points_to "OPENSSL_ia32cap_P" {{ ia32cap }};
out_key_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_st");
ec_key_ptr <- crucible_alloc (llvm_struct "struct.ec_key_st");
pub_key_ptr <- crucible_alloc (llvm_struct "struct.ec_point_st");
pub_key <- points_to_fresh_ec_point_st pub_key_ptr group_ptr;
crucible_postcond {{ fromJacobian (jacobianFromMontBV pub_key) == EC_keyPrivateToPublic d }};
priv_key_ptr <- crucible_alloc (llvm_struct "struct.EC_WRAPPED_SCALAR");
points_to_EC_WRAPPED_SCALAR priv_key_ptr {{ scalarToBV (d % `P384_n) }};
points_to_ec_key_st ec_key_ptr group_ptr pub_key_ptr (true, priv_key_ptr);
points_to_evp_pkey_st_with_references out_key_ptr {{ 1 : [32] }} ec_key_ptr;
crucible_points_to out_pkey_ptr_ptr out_key_ptr;
crucible_return (crucible_term {{ 1 : [32] }});
};
let EVP_PKEY_derive_set_peer_spec = do {
ctx_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
ec_group_ptr <- pointer_to_fresh_ec_group_st;
pkey_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_st");
(ec_key_ptr, _pub_key, _priv_key) <- pointer_to_fresh_ec_key_st ec_group_ptr true;
points_to_evp_pkey_st pkey_ptr ec_key_ptr;
points_to_evp_pkey_ctx_st ctx_ptr pmeth_ptr pkey_ptr crucible_null EVP_PKEY_OP_DERIVE crucible_null;
peerkey_ptr <- crucible_alloc (llvm_struct "struct.evp_pkey_st");
(peer_ec_key_ptr, _peer_pub_key, _peer_priv_key) <- pointer_to_fresh_ec_key_st ec_group_ptr false;
points_to_evp_pkey_st peerkey_ptr peer_ec_key_ptr;
crucible_execute_func [ctx_ptr, peerkey_ptr];
references <- crucible_fresh_var "references" i32;
points_to_evp_pkey_st_with_references peerkey_ptr references peer_ec_key_ptr;
points_to_evp_pkey_ctx_st ctx_ptr pmeth_ptr pkey_ptr peerkey_ptr EVP_PKEY_OP_DERIVE crucible_null;
crucible_return (crucible_term {{ 1 : [32] }});
};
let EVP_PKEY_derive_spec = do {
global_alloc_init "OPENSSL_ia32cap_P" {{ ia32cap }};
alloc_p384_felem_methods_globals;
ctx_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_ctx_st");
pmeth_ptr <- pointer_to_evp_pkey_method_st;
ec_group_ptr <- pointer_to_fresh_ec_group_st;
pkey_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_st");
(ec_key_ptr, _pub_key, priv_key) <- pointer_to_fresh_ec_key_st ec_group_ptr true;
points_to_evp_pkey_st pkey_ptr ec_key_ptr;
peerkey_ptr <- crucible_alloc_readonly (llvm_struct "struct.evp_pkey_st");
(peer_ec_key_ptr, peer_pub_key, _peer_priv_key) <- pointer_to_fresh_ec_key_st ec_group_ptr false;
points_to_evp_pkey_st peerkey_ptr peer_ec_key_ptr;
points_to_evp_pkey_ctx_st ctx_ptr pmeth_ptr pkey_ptr peerkey_ptr EVP_PKEY_OP_DERIVE crucible_null;
key_ptr <- crucible_alloc (llvm_array ec_bytes i8);
out_key_len_ptr <- crucible_alloc i64;
crucible_points_to out_key_len_ptr (crucible_term {{ `ec_bytes : [64] }});
// This spec assumes that the public key check succeeds
crucible_precond {{EC_KEY_check_fips peer_pub_key == 1}};
crucible_execute_func [ctx_ptr, key_ptr, out_key_len_ptr];
global_points_to "OPENSSL_ia32cap_P" {{ ia32cap }};
crucible_points_to_untyped key_ptr (crucible_term {{ ECDH_derive_bv peer_pub_key priv_key }});
crucible_points_to out_key_len_ptr (crucible_term {{ `ec_bytes : [64] }});
crucible_return (crucible_term {{ 1 : [32] }});
};